Skip to content

Commit 3447aa7

Browse files
Quiet tests on PR tests
1 parent 98dc118 commit 3447aa7

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

src/ci/docker/run.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,7 @@ exec docker \
7979
--env DEPLOY_ALT=$DEPLOY_ALT \
8080
--env LOCAL_USER_ID=`id -u` \
8181
--env TRAVIS=${TRAVIS-false} \
82+
--env TRAVIS_BRANCH \
8283
--volume "$HOME/.cargo:/cargo" \
8384
--volume "$HOME/rustsrc:$HOME/rustsrc" \
8485
--privileged \

src/ci/run.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,10 @@ fi
2323
ci_dir=`cd $(dirname $0) && pwd`
2424
source "$ci_dir/shared.sh"
2525

26+
if [ "$TRAVIS" == "true" ] && [ "$TRAVIS_BRANCH" != "auto" ]; then
27+
RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --enable-quiet-tests"
28+
fi
29+
2630
RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --enable-sccache"
2731
RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --disable-manage-submodules"
2832
RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --enable-locked-deps"

0 commit comments

Comments
 (0)