Reduce console noise at start of CI session. (#52387)
* Reduce console noise at start of CI session. * Use allowed shebang.
This commit is contained in:
parent
5e9b089ec2
commit
a1fec259c1
11 changed files with 22 additions and 22 deletions
|
@ -1,6 +1,6 @@
|
||||||
#!/bin/bash -eux
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
set -o pipefail
|
set -o pipefail -eux
|
||||||
|
|
||||||
declare -a args
|
declare -a args
|
||||||
IFS='/:' read -ra args <<< "$1"
|
IFS='/:' read -ra args <<< "$1"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
#!/bin/bash -eux
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
set -o pipefail
|
set -o pipefail -eux
|
||||||
|
|
||||||
declare -a args
|
declare -a args
|
||||||
IFS='/:' read -ra args <<< "$1"
|
IFS='/:' read -ra args <<< "$1"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
#!/bin/bash -eux
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
set -o pipefail
|
set -o pipefail -eux
|
||||||
|
|
||||||
declare -a args
|
declare -a args
|
||||||
IFS='/:' read -ra args <<< "$1"
|
IFS='/:' read -ra args <<< "$1"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
#!/bin/bash -eux
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
set -o pipefail
|
set -o pipefail -eux
|
||||||
|
|
||||||
# shellcheck disable=SC2086
|
# shellcheck disable=SC2086
|
||||||
ansible-test network-integration --explain ${CHANGED:+"$CHANGED"} ${UNSTABLE:+"$UNSTABLE"} 2>&1 \
|
ansible-test network-integration --explain ${CHANGED:+"$CHANGED"} ${UNSTABLE:+"$UNSTABLE"} 2>&1 \
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
#!/bin/bash -eux
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
set -o pipefail
|
set -o pipefail -eux
|
||||||
|
|
||||||
declare -a args
|
declare -a args
|
||||||
IFS='/:' read -ra args <<< "$1"
|
IFS='/:' read -ra args <<< "$1"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
#!/bin/bash -eux
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
set -o pipefail
|
set -o pipefail -eux
|
||||||
|
|
||||||
declare -a args
|
declare -a args
|
||||||
IFS='/:' read -ra args <<< "$1"
|
IFS='/:' read -ra args <<< "$1"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
#!/bin/bash -eux
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
set -o pipefail
|
set -o pipefail -eux
|
||||||
|
|
||||||
declare -a args
|
declare -a args
|
||||||
IFS='/:' read -ra args <<< "$1"
|
IFS='/:' read -ra args <<< "$1"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
#!/bin/bash -eux
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
set -o pipefail
|
set -o pipefail -eux
|
||||||
|
|
||||||
declare -a args
|
declare -a args
|
||||||
IFS='/:' read -ra args <<< "$1"
|
IFS='/:' read -ra args <<< "$1"
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
#!/bin/bash -eu
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
set -o pipefail
|
set -o pipefail -eu
|
||||||
|
|
||||||
"$@" 2>&1 | "$(dirname "$0")/timing.py"
|
"$@" 2>&1 | "$(dirname "$0")/timing.py"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
#!/bin/bash -eux
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
set -o pipefail
|
set -o pipefail -eux
|
||||||
|
|
||||||
declare -a args
|
declare -a args
|
||||||
IFS='/:' read -ra args <<< "$1"
|
IFS='/:' read -ra args <<< "$1"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
#!/bin/bash -eux
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
set -o pipefail
|
set -o pipefail -eux
|
||||||
|
|
||||||
declare -a args
|
declare -a args
|
||||||
IFS='/:' read -ra args <<< "$1"
|
IFS='/:' read -ra args <<< "$1"
|
||||||
|
|
Loading…
Reference in a new issue