File tree Expand file tree Collapse file tree 9 files changed +16
-16
lines changed Expand file tree Collapse file tree 9 files changed +16
-16
lines changed Original file line number Diff line number Diff line change @@ -64,9 +64,9 @@ matrix:
6464 os: osx
6565 osx_image: xcode8.2
6666 install: &osx_install_sccache >
67- travis_retry curl -o /usr/local/bin/sccache https://s3.amazonaws.com/rust-lang-ci/rust-ci-mirror/2017-05-12-sccache-x86_64-apple-darwin &&
67+ travis_retry curl -fo /usr/local/bin/sccache https://s3.amazonaws.com/rust-lang-ci/rust-ci-mirror/2017-05-12-sccache-x86_64-apple-darwin &&
6868 chmod +x /usr/local/bin/sccache &&
69- travis_retry curl -o /usr/local/bin/stamp https://s3.amazonaws.com/rust-lang-ci/rust-ci-mirror/2017-03-17-stamp-x86_64-apple-darwin &&
69+ travis_retry curl -fo /usr/local/bin/stamp https://s3.amazonaws.com/rust-lang-ci/rust-ci-mirror/2017-03-17-stamp-x86_64-apple-darwin &&
7070 chmod +x /usr/local/bin/stamp
7171 - env : >
7272 RUST_CHECK_TARGET=check
144144
145145# Note that this is overridden on OSX builders
146146install : >
147- 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 &&
147+ travis_retry curl -fo $HOME/stamp https://s3.amazonaws.com/rust-lang-ci/rust-ci-mirror/2017-03-17-stamp-x86_64-unknown-linux-musl &&
148148 chmod +x $HOME/stamp &&
149149 export PATH=$PATH:$HOME
150150
@@ -183,10 +183,10 @@ before_script:
183183# clock drift. Timezones don't matter since relative deltas give all the necessary info.
184184script :
185185 - >
186- date && curl -s --head https://google.com | grep ^Date: | sed 's/Date: //g'
186+ date && ( curl -fs --head https://google.com | grep ^Date: | sed 's/Date: //g' || true)
187187 - stamp sh -x -c "$RUN_SCRIPT"
188188 - >
189- date && curl -s --head https://google.com | grep ^Date: | sed 's/Date: //g'
189+ date && ( curl -fs --head https://google.com | grep ^Date: | sed 's/Date: //g' || true)
190190
191191after_success :
192192 - >
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ URL=https://dl.google.com/android/repository
1515download_ndk () {
1616 mkdir -p /android/ndk
1717 cd /android/ndk
18- curl -O $URL /$1
18+ curl -sO $URL /$1
1919 unzip -q $1
2020 rm $1
2121 mv android-ndk-* ndk
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ URL=https://dl.google.com/android/repository
1515download_sdk () {
1616 mkdir -p /android/sdk
1717 cd /android/sdk
18- curl -O $URL /$1
18+ curl -sO $URL /$1
1919 unzip -q $1
2020 rm -rf $1
2121}
Original file line number Diff line number Diff line change 1111set -ex
1212
1313url=" http://crosstool-ng.org/download/crosstool-ng/crosstool-ng-1.22.0.tar.bz2"
14- curl $url | tar xjf -
14+ curl -s $url | tar xjf -
1515cd crosstool-ng
1616./configure --prefix=/usr/local
1717make -j$( nproc)
Original file line number Diff line number Diff line change 1010
1111set -ex
1212
13- curl -OL https://github.com/Yelp/dumb-init/releases/download/v1.2.0/dumb-init_1.2.0_amd64.deb
13+ curl -sOL https://github.com/Yelp/dumb-init/releases/download/v1.2.0/dumb-init_1.2.0_amd64.deb
1414dpkg -i dumb-init_* .deb
1515rm dumb-init_* .deb
Original file line number Diff line number Diff line change @@ -28,14 +28,14 @@ exit 1
2828}
2929
3030# Download last known good emscripten from WebAssembly waterfall
31- BUILD=$( curl -L https://storage.googleapis.com/wasm-llvm/builds/linux/lkgr.json | \
31+ BUILD=$( curl -sL https://storage.googleapis.com/wasm-llvm/builds/linux/lkgr.json | \
3232 jq ' .build | tonumber' )
33- curl -L https://storage.googleapis.com/wasm-llvm/builds/linux/$BUILD /wasm-binaries.tbz2 | \
33+ curl -sL https://storage.googleapis.com/wasm-llvm/builds/linux/$BUILD /wasm-binaries.tbz2 | \
3434 hide_output tar xvkj
3535
3636# node 8 is required to run wasm
3737cd /
38- curl -L https://nodejs.org/dist/v8.0.0/node-v8.0.0-linux-x64.tar.xz | \
38+ curl -sL https://nodejs.org/dist/v8.0.0/node-v8.0.0-linux-x64.tar.xz | \
3939 tar -xJ
4040
4141# Make emscripten use wasm-ready node and LLVM tools
Original file line number Diff line number Diff line change 2828}
2929
3030cd /
31- curl -L https://s3.amazonaws.com/mozilla-games/emscripten/releases/emsdk-portable.tar.gz | \
31+ curl -sL https://s3.amazonaws.com/mozilla-games/emscripten/releases/emsdk-portable.tar.gz | \
3232 tar -xz
3333
3434cd /emsdk-portable
@@ -49,5 +49,5 @@ chmod a+rxw -R /emsdk-portable
4949
5050# node 8 is required to run wasm
5151cd /
52- curl -L https://nodejs.org/dist/v8.0.0/node-v8.0.0-linux-x64.tar.xz | \
52+ curl -sL https://nodejs.org/dist/v8.0.0/node-v8.0.0-linux-x64.tar.xz | \
5353 tar -xJ
Original file line number Diff line number Diff line change 1010
1111set -ex
1212
13- curl https://ftp.gnu.org/gnu/make/make-3.81.tar.gz | tar xzf -
13+ curl -s https://ftp.gnu.org/gnu/make/make-3.81.tar.gz | tar xzf -
1414cd make-3.81
1515./configure --prefix=/usr
1616make
Original file line number Diff line number Diff line change 1010
1111set -ex
1212
13- curl -o /usr/local/bin/sccache \
13+ curl -so /usr/local/bin/sccache \
1414 https://s3.amazonaws.com/rust-lang-ci/rust-ci-mirror/2017-05-12-sccache-x86_64-unknown-linux-musl
1515
1616chmod +x /usr/local/bin/sccache
You can’t perform that action at this time.
0 commit comments