Skip to content

Commit 2727866

Browse files
alexcrichtonretep998
authored andcommitted
travis: Don't enable quiet tests
This makes travis problems more difficult to debug, so let's just enable more verbose logging.
1 parent b5c35c5 commit 2727866

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

.travis.yml

+4-5
Original file line numberDiff line numberDiff line change
@@ -79,9 +79,7 @@ matrix:
7979
MACOSX_STD_DEPLOYMENT_TARGET=10.7
8080
os: osx
8181
osx_image: xcode8.2
82-
install: >
83-
travis_retry curl -o /usr/local/bin/sccache https://s3.amazonaws.com/rust-lang-ci/rust-ci-mirror/2017-03-16-sccache-x86_64-apple-darwin &&
84-
chmod +x /usr/local/bin/sccache
82+
install: *osx_install_sccache
8583
- env: >
8684
RUST_CHECK_TARGET=dist
8785
RUST_CONFIGURE_ARGS="--target=aarch64-apple-ios,armv7-apple-ios,armv7s-apple-ios,i386-apple-ios,x86_64-apple-ios --enable-extended"
@@ -122,8 +120,9 @@ env:
122120

123121
# Note that this is overridden on OSX builders
124122
install: >
125-
travis_retry curl -o /usr/local/bin/stamp https://s3.amazonaws.com/rust-lang-ci/rust-ci-mirror/2017-03-17-stamp-x86_64-unknown-linux-musl &&
126-
chmod +x /usr/local/bin/stamp
123+
travis_retry curl -o $HOME/stamp https://s3.amazonaws.com/rust-lang-ci/rust-ci-mirror/2017-03-17-stamp-x86_64-unknown-linux-musl &&
124+
chmod +x $HOME/stamp &&
125+
export PATH=$PATH:$HOME
127126
128127
before_script:
129128
- >

src/ci/run.sh

-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ ci_dir=`cd $(dirname $0) && pwd`
2424
source "$ci_dir/shared.sh"
2525

2626
RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --enable-sccache"
27-
RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --enable-quiet-tests"
2827
RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --disable-manage-submodules"
2928
RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --enable-locked-deps"
3029
RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --enable-cargo-openssl-static"

0 commit comments

Comments
 (0)