build: disable sauce connect logging (#17947)
this change is expected to mitigate the flakes on CI that occur when we cat the log in the print-logs.sh
This commit is contained in:
parent
105e920b69
commit
6fc5174a13
|
@ -23,8 +23,12 @@ CONNECT_DIR="/tmp/sauce-connect-$RANDOM"
|
||||||
CONNECT_DOWNLOAD="sc-latest-linux.tar.gz"
|
CONNECT_DOWNLOAD="sc-latest-linux.tar.gz"
|
||||||
|
|
||||||
CONNECT_LOG="$LOGS_DIR/sauce-connect"
|
CONNECT_LOG="$LOGS_DIR/sauce-connect"
|
||||||
CONNECT_STDOUT="$LOGS_DIR/sauce-connect.stdout"
|
# logging disabled because it's seems to be overwhelming travis and causing flakes
|
||||||
CONNECT_STDERR="$LOGS_DIR/sauce-connect.stderr"
|
# when we are cat-ing the log in print-logs.sh
|
||||||
|
# CONNECT_STDOUT="$LOGS_DIR/sauce-connect.stdout"
|
||||||
|
# CONNECT_STDERR="$LOGS_DIR/sauce-connect.stderr"
|
||||||
|
CONNECT_STDOUT="/dev/null"
|
||||||
|
CONNECT_STDERR="/dev/null"
|
||||||
|
|
||||||
# Get Connect and start it
|
# Get Connect and start it
|
||||||
mkdir -p $CONNECT_DIR
|
mkdir -p $CONNECT_DIR
|
||||||
|
|
Loading…
Reference in New Issue