Skip to content

Commit 633c258

Browse files
committedMar 5, 2017
[travis] Less noise when downloading deps
1 parent ee984c5 commit 633c258

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed
 

‎ci/travis/linux/before_install.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,19 +22,19 @@
2222
pushd ${HOME}
2323

2424
# fetching data from github should be just as fast as S3
25-
curl -L https://github.com/opengisch/osgeo4travis/archive/qt5bin.tar.gz | tar --strip-components=1 -xz -C /home/travis &
25+
curl -s -S -L https://github.com/opengisch/osgeo4travis/archive/qt5bin.tar.gz | tar --strip-components=1 -xz -C /home/travis &
2626
SETUP_OSGEO4W_PID=$!
2727

2828
mkdir /home/travis/osgeo4travis
2929

3030
# other dependencies live in a cached folder
3131
pushd depcache
3232
# Download newer version of cmake than in the repository
33-
[[ -f cmake-3.5.0-Linux-x86_64.tar.gz ]] || curl -O https://cmake.org/files/v3.5/cmake-3.5.0-Linux-x86_64.tar.gz
33+
[[ -f cmake-3.5.0-Linux-x86_64.tar.gz ]] || curl -s -S -O https://cmake.org/files/v3.5/cmake-3.5.0-Linux-x86_64.tar.gz
3434
tar --strip-components=1 -zx -f cmake-3.5.0-Linux-x86_64.tar.gz -C /home/travis/osgeo4travis
3535

3636
# Download OTB package for Processing tests
37-
[[ -f OTB-5.6.0-Linux64.run ]] || curl -O https://www.orfeo-toolbox.org/packages/archives/OTB/OTB-5.6.0-Linux64.run
37+
[[ -f OTB-5.6.0-Linux64.run ]] || curl -s -S -O https://www.orfeo-toolbox.org/packages/archives/OTB/OTB-5.6.0-Linux64.run
3838
sh ./OTB-5.6.0-Linux64.run
3939

4040
wait $SETUP_OSGEO4W_PID

0 commit comments

Comments
 (0)
Please sign in to comment.