aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoss Nicoll <[email protected]>2015-07-29 18:21:48 +0100
committerRoss Nicoll <[email protected]>2015-07-29 18:21:48 +0100
commita06da268ff24fa992b91f0c93c7f1d92ac5fffe6 (patch)
treec26de38428903e28cf6d97f47ac82cbd90fc22b2
parentMerge pull request #1210 from rnicoll/1.10-auxpow-fixes (diff)
parentUpdate .travis.yml to make use of the new container based infrastructure. (diff)
downloaddiscoin-a06da268ff24fa992b91f0c93c7f1d92ac5fffe6.tar.xz
discoin-a06da268ff24fa992b91f0c93c7f1d92ac5fffe6.zip
Merge pull request #1212 from langerhans/1.10-dev-travis-caching
Update .travis.yml to make use of the new container based infrastructure
-rw-r--r--.travis.yml56
1 files changed, 47 insertions, 9 deletions
diff --git a/.travis.yml b/.travis.yml
index 1f6eb15c2..f9d1a78ee 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -24,26 +24,64 @@ cache:
- depends/built
- depends/sdk-sources
- $HOME/.ccache
+sudo: false
matrix:
fast_finish: true
include:
- compiler: ": ARM"
- env: HOST=arm-linux-gnueabihf PACKAGES="g++-arm-linux-gnueabihf" DEP_OPTS="NO_QT=1" GOAL="install" BITCOIN_CONFIG="--enable-glibc-back-compat --enable-reduce-exports"
+ env: HOST=arm-linux-gnueabihf DEP_OPTS="NO_QT=1" GOAL="install" BITCOIN_CONFIG="--enable-glibc-back-compat --enable-reduce-exports"
+ addons:
+ apt:
+ packages:
+ - g++-arm-linux-gnueabihf
- compiler: ": Win32"
- 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 --enable-reduce-exports" MAKEJOBS="-j2"
+ env: HOST=i686-w64-mingw32 RUN_TESTS=true GOAL="deploy" BITCOIN_CONFIG="--enable-gui --enable-reduce-exports" MAKEJOBS="-j2"
+ addons:
+ apt:
+ packages:
+ - nsis
+ - gcc-mingw-w64-i686
+ - g++-mingw-w64-i686
+ - binutils-mingw-w64-i686
+ - mingw-w64-dev
+ - wine
+ - bc
- compiler: ": 32-bit + dash"
- env: HOST=i686-pc-linux-gnu PACKAGES="g++-multilib bc" RUN_TESTS=true GOAL="install" BITCOIN_CONFIG="--enable-glibc-back-compat --enable-reduce-exports LDFLAGS=-static-libstdc++" USE_SHELL="/bin/dash"
+ env: HOST=i686-pc-linux-gnu RUN_TESTS=true GOAL="install" BITCOIN_CONFIG="--enable-glibc-back-compat --enable-reduce-exports LDFLAGS=-static-libstdc++" USE_SHELL="/bin/dash"
+ addons:
+ apt:
+ packages:
+ - g++-multilib
+ - bc
- compiler: ": Win64"
- env: HOST=x86_64-w64-mingw32 PACKAGES="nsis gcc-mingw-w64-x86-64 g++-mingw-w64-x86-64 binutils-mingw-w64-x86-64 mingw-w64-dev wine bc" RUN_TESTS=true GOAL="deploy" BITCOIN_CONFIG="--enable-gui --enable-reduce-exports" MAKEJOBS="-j2"
+ env: HOST=x86_64-w64-mingw32 RUN_TESTS=true GOAL="deploy" BITCOIN_CONFIG="--enable-gui --enable-reduce-exports" MAKEJOBS="-j2"
+ addons:
+ apt:
+ packages:
+ - nsis
+ - gcc-mingw-w64-x86-64
+ - g++-mingw-w64-x86-64
+ - binutils-mingw-w64-x86-64
+ - mingw-w64-dev
+ - wine
+ - bc
- compiler: ": bitcoind"
- env: HOST=x86_64-unknown-linux-gnu PACKAGES="bc" DEP_OPTS="NO_QT=1 NO_UPNP=1 DEBUG=1" RUN_TESTS=true GOAL="install" BITCOIN_CONFIG="--enable-glibc-back-compat --enable-reduce-exports CPPFLAGS=-DDEBUG_LOCKORDER"
+ env: HOST=x86_64-unknown-linux-gnu DEP_OPTS="NO_QT=1 NO_UPNP=1 DEBUG=1" RUN_TESTS=true GOAL="install" BITCOIN_CONFIG="--enable-glibc-back-compat --enable-reduce-exports CPPFLAGS=-DDEBUG_LOCKORDER"
+ addons:
+ apt:
+ packages:
+ - bc
- compiler: ": No wallet"
env: HOST=x86_64-unknown-linux-gnu DEP_OPTS="NO_WALLET=1" RUN_TESTS=true GOAL="install" BITCOIN_CONFIG="--enable-glibc-back-compat --enable-reduce-exports"
- compiler: ": Cross-Mac"
- env: HOST=x86_64-apple-darwin11 PACKAGES="cmake libcap-dev libz-dev libbz2-dev" BITCOIN_CONFIG="--enable-reduce-exports" OSX_SDK=10.9 GOAL="deploy"
-install:
- - if [ -n "$PACKAGES" ]; then travis_retry sudo apt-get update; fi
- - if [ -n "$PACKAGES" ]; then travis_retry sudo apt-get install --no-install-recommends --no-upgrade -qq $PACKAGES; fi
+ env: HOST=x86_64-apple-darwin11 BITCOIN_CONFIG="--enable-reduce-exports" OSX_SDK=10.9 GOAL="deploy"
+ addons:
+ apt:
+ packages:
+ - cmake
+ - libcap-dev
+ - zlib1g-dev
+ - libbz2-dev
before_script:
- unset CC; unset CXX
- mkdir -p depends/SDKs depends/sdk-sources