diff options
author | Pieter Wuille <pieter.wuille@gmail.com> | 2014-11-18 14:21:04 +0100 |
---|---|---|
committer | Pieter Wuille <pieter.wuille@gmail.com> | 2014-11-18 14:21:15 +0100 |
commit | 3c1e10b1612a4dcd775aeb4301c9f9cd14be4697 (patch) | |
tree | 377f28ef03f5d8e1944e97888a2d74c4c806e22b /.travis.yml | |
parent | 8adf457047677df1d58da070bae5629526bb5b74 (diff) | |
parent | 096efc5812f09f2d858707c6573acd6dbf4eadc3 (diff) |
Merge pull request #5297
096efc5 travis: install less packages from apt-get (Cory Fields)
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index f6b011ee1c..567428daf9 100644 --- a/.travis.yml +++ b/.travis.yml @@ -40,7 +40,7 @@ matrix: env: HOST=i686-w64-mingw32 PACKAGES="nsis gcc-mingw-w64-i686 g++-mingw-w64-i686 binutils-mingw-w64-i686 mingw-w64-dev wine bc" RUN_TESTS=true GOAL="deploy" BITCOIN_CONFIG="--enable-gui" MAKEJOBS="-j2" install: - if [ -n "$PACKAGES" ]; then travis_retry sudo apt-get update; fi - - if [ -n "$PACKAGES" ]; then travis_retry sudo apt-get install --no-upgrade -qq $PACKAGES; fi + - if [ -n "$PACKAGES" ]; then travis_retry sudo apt-get install --no-install-recommends --no-upgrade -qq $PACKAGES; fi before_script: - unset CC; unset CXX - mkdir -p depends/SDKs depends/sdk-sources |