77# IPv6 support
88
99sudo : required
10- dist : precise
11- group : legacy
10+ dist : trusty
1211
1312os : linux
1413language : cpp
@@ -38,22 +37,25 @@ matrix:
3837 - compiler : " : ARM"
3938 env : HOST=arm-linux-gnueabihf PACKAGES="g++-arm-linux-gnueabihf" DEP_OPTS="NO_QT=1" CHECK_DOC=1 GOAL="install" BITCOIN_CONFIG="--enable-glibc-back-compat --enable-reduce-exports"
4039 - compiler : " : Win32"
41- env : HOST=i686-w64-mingw32 PPA="ppa:ubuntu-wine/ppa" PACKAGES="nsis gcc-mingw-w64-i686 g++-mingw-w64-i686 binutils-mingw-w64-i686 mingw-w64-dev wine1.7 bc" RUN_TESTS=true GOAL="deploy " BITCOIN_CONFIG="--enable-gui --enable- reduce-exports" MAKEJOBS="-j2 "
40+ env : HOST=i686-w64-mingw32 DPKG_ADD_ARCH="i386" DEP_OPTS="NO_QT=1" PACKAGES="python3 nsis g++-mingw-w64-i686 wine1.6 bc" RUN_TESTS=true GOAL="install " BITCOIN_CONFIG="--enable-reduce-exports"
4241 - compiler : " : 32-bit + dash"
43- env : HOST=i686-pc-linux-gnu PACKAGES="g++-multilib bc python -zmq" PPA="ppa:chris-lea/zeromq " RUN_TESTS=true GOAL="install" BITCOIN_CONFIG="--enable-zmq --enable-glibc-back-compat --enable-reduce-exports LDFLAGS=-static-libstdc++" USE_SHELL="/bin/dash"
42+ env : HOST=i686-pc-linux-gnu PACKAGES="g++-multilib bc python3 -zmq" DEP_OPTS="NO_QT=1 " RUN_TESTS=true GOAL="install" BITCOIN_CONFIG="--enable-zmq --enable-glibc-back-compat --enable-reduce-exports LDFLAGS=-static-libstdc++" USE_SHELL="/bin/dash"
4443 - compiler : " : Win64"
45- env : HOST=x86_64-w64-mingw32 PPA="ppa:ubuntu-wine/ppa" PACKAGES="nsis gcc-mingw-w64-x86-64 g++-mingw-w64-x86-64 binutils-mingw-w64-x86-64 mingw-w64-dev wine1.7 bc" RUN_TESTS=true GOAL="deploy " BITCOIN_CONFIG="--enable-gui --enable- reduce-exports" MAKEJOBS="-j2 "
44+ env : HOST=x86_64-w64-mingw32 DPKG_ADD_ARCH="i386" DEP_OPTS="NO_QT=1" PACKAGES="python3 nsis g++-mingw-w64-x86-64 wine1.6 bc" RUN_TESTS=true GOAL="install " BITCOIN_CONFIG="--enable-reduce-exports"
4645 - compiler : " : bitcoind"
47- env : HOST=x86_64-unknown-linux-gnu PACKAGES="bc python -zmq" PPA="ppa:chris-lea/zeromq " DEP_OPTS="NO_QT=1 NO_UPNP=1 DEBUG=1" RUN_TESTS=true GOAL="install" BITCOIN_CONFIG="--enable-zmq --enable-glibc-back-compat --enable-reduce-exports CPPFLAGS=-DDEBUG_LOCKORDER"
46+ env : HOST=x86_64-unknown-linux-gnu PACKAGES="bc python3 -zmq" DEP_OPTS="NO_QT=1 NO_UPNP=1 DEBUG=1" RUN_TESTS=true GOAL="install" BITCOIN_CONFIG="--enable-zmq --enable-glibc-back-compat --enable-reduce-exports CPPFLAGS=-DDEBUG_LOCKORDER"
4847 - compiler : " : No wallet"
49- 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"
48+ env : HOST=x86_64-unknown-linux-gnu PACKAGES="python3" DEP_OPTS="NO_WALLET=1" RUN_TESTS=true GOAL="install" BITCOIN_CONFIG="--enable-glibc-back-compat --enable-reduce-exports"
5049 - compiler : " : Cross-Mac"
5150 env : HOST=x86_64-apple-darwin11 PACKAGES="cmake imagemagick libcap-dev librsvg2-bin libz-dev libbz2-dev libtiff-tools python-dev" BITCOIN_CONFIG="--enable-reduce-exports" OSX_SDK=10.9 GOAL="deploy"
5251 exclude :
5352 - compiler : gcc
53+ before_install :
54+ - export PATH=$(echo $PATH | tr ':' "\n" | sed '/\/opt\/python/d' | tr "\n" ":" | sed "s|::|:|g")
5455install :
55- - if [ -n "$PACKAGES" ]; then sudo rm -f /etc/apt/sources.list.d/travis_ci_zeromq3-source .list; fi
56+ - if [ -n "$PACKAGES" ]; then sudo rm -f /etc/apt/sources.list.d/google-chrome .list; fi
5657 - if [ -n "$PPA" ]; then travis_retry sudo add-apt-repository "$PPA" -y; fi
58+ - if [ -n "$DPKG_ADD_ARCH" ]; then sudo dpkg --add-architecture "$DPKG_ADD_ARCH" ; fi
5759 - if [ -n "$PACKAGES" ]; then travis_retry sudo apt-get update; fi
5860 - if [ -n "$PACKAGES" ]; then travis_retry sudo apt-get install --no-install-recommends --no-upgrade -qq $PACKAGES; fi
5961before_script :
@@ -69,7 +71,6 @@ script:
6971 - OUTDIR=$BASE_OUTDIR/$TRAVIS_PULL_REQUEST/$TRAVIS_JOB_NUMBER-$HOST
7072 - BITCOIN_CONFIG_ALL="--disable-dependency-tracking --prefix=$TRAVIS_BUILD_DIR/depends/$HOST --bindir=$OUTDIR/bin --libdir=$OUTDIR/lib"
7173 - depends/$HOST/native/bin/ccache --max-size=$CCACHE_SIZE
72- - if [ "$TRAVIS_PULL_REQUEST" != "false" ]; then export CCACHE_READONLY=1; fi
7374 - test -n "$USE_SHELL" && eval '"$USE_SHELL" -c "./autogen.sh"' || ./autogen.sh
7475 - ./configure --cache-file=config.cache $BITCOIN_CONFIG_ALL $BITCOIN_CONFIG || ( cat config.log && false)
7576 - make distdir PACKAGE=bitcoin VERSION=$HOST
0 commit comments