File tree 9 files changed +16
-16
lines changed
9 files changed +16
-16
lines changed Original file line number Diff line number Diff line change @@ -64,9 +64,9 @@ matrix:
64
64
os: osx
65
65
osx_image: xcode8.2
66
66
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 &&
68
68
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 &&
70
70
chmod +x /usr/local/bin/stamp
71
71
- env : >
72
72
RUST_CHECK_TARGET=check
144
144
145
145
# Note that this is overridden on OSX builders
146
146
install : >
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 &&
148
148
chmod +x $HOME/stamp &&
149
149
export PATH=$PATH:$HOME
150
150
@@ -183,10 +183,10 @@ before_script:
183
183
# clock drift. Timezones don't matter since relative deltas give all the necessary info.
184
184
script :
185
185
- >
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)
187
187
- stamp sh -x -c "$RUN_SCRIPT"
188
188
- >
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)
190
190
191
191
after_success :
192
192
- >
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ URL=https://dl.google.com/android/repository
15
15
download_ndk () {
16
16
mkdir -p /android/ndk
17
17
cd /android/ndk
18
- curl -O $URL /$1
18
+ curl -sO $URL /$1
19
19
unzip -q $1
20
20
rm $1
21
21
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
15
15
download_sdk () {
16
16
mkdir -p /android/sdk
17
17
cd /android/sdk
18
- curl -O $URL /$1
18
+ curl -sO $URL /$1
19
19
unzip -q $1
20
20
rm -rf $1
21
21
}
Original file line number Diff line number Diff line change 11
11
set -ex
12
12
13
13
url=" 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 -
15
15
cd crosstool-ng
16
16
./configure --prefix=/usr/local
17
17
make -j$( nproc)
Original file line number Diff line number Diff line change 10
10
11
11
set -ex
12
12
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
14
14
dpkg -i dumb-init_* .deb
15
15
rm dumb-init_* .deb
Original file line number Diff line number Diff line change @@ -28,14 +28,14 @@ exit 1
28
28
}
29
29
30
30
# 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 | \
32
32
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 | \
34
34
hide_output tar xvkj
35
35
36
36
# node 8 is required to run wasm
37
37
cd /
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 | \
39
39
tar -xJ
40
40
41
41
# Make emscripten use wasm-ready node and LLVM tools
Original file line number Diff line number Diff line change 28
28
}
29
29
30
30
cd /
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 | \
32
32
tar -xz
33
33
34
34
cd /emsdk-portable
@@ -49,5 +49,5 @@ chmod a+rxw -R /emsdk-portable
49
49
50
50
# node 8 is required to run wasm
51
51
cd /
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 | \
53
53
tar -xJ
Original file line number Diff line number Diff line change 10
10
11
11
set -ex
12
12
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 -
14
14
cd make-3.81
15
15
./configure --prefix=/usr
16
16
make
Original file line number Diff line number Diff line change 10
10
11
11
set -ex
12
12
13
- curl -o /usr/local/bin/sccache \
13
+ curl -so /usr/local/bin/sccache \
14
14
https://s3.amazonaws.com/rust-lang-ci/rust-ci-mirror/2017-05-12-sccache-x86_64-unknown-linux-musl
15
15
16
16
chmod +x /usr/local/bin/sccache
You can’t perform that action at this time.
0 commit comments