7
7
# IPv6 support
8
8
9
9
sudo : required
10
- dist : precise
11
- group : legacy
10
+ dist : trusty
12
11
13
12
os : linux
14
13
language : cpp
@@ -38,22 +37,25 @@ matrix:
38
37
- compiler : " : ARM"
39
38
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"
40
39
- 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"
42
41
- 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"
44
43
- 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"
46
45
- 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"
48
47
- 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"
50
49
- compiler : " : Cross-Mac"
51
50
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"
52
51
exclude :
53
52
- compiler : gcc
53
+ before_install :
54
+ - export PATH=$(echo $PATH | tr ':' "\n" | sed '/\/opt\/python/d' | tr "\n" ":" | sed "s|::|:|g")
54
55
install :
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
56
57
- 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
57
59
- if [ -n "$PACKAGES" ]; then travis_retry sudo apt-get update; fi
58
60
- if [ -n "$PACKAGES" ]; then travis_retry sudo apt-get install --no-install-recommends --no-upgrade -qq $PACKAGES; fi
59
61
before_script :
@@ -69,7 +71,6 @@ script:
69
71
- OUTDIR=$BASE_OUTDIR/$TRAVIS_PULL_REQUEST/$TRAVIS_JOB_NUMBER-$HOST
70
72
- BITCOIN_CONFIG_ALL="--disable-dependency-tracking --prefix=$TRAVIS_BUILD_DIR/depends/$HOST --bindir=$OUTDIR/bin --libdir=$OUTDIR/lib"
71
73
- depends/$HOST/native/bin/ccache --max-size=$CCACHE_SIZE
72
- - if [ "$TRAVIS_PULL_REQUEST" != "false" ]; then export CCACHE_READONLY=1; fi
73
74
- test -n "$USE_SHELL" && eval '"$USE_SHELL" -c "./autogen.sh"' || ./autogen.sh
74
75
- ./configure --cache-file=config.cache $BITCOIN_CONFIG_ALL $BITCOIN_CONFIG || ( cat config.log && false)
75
76
- make distdir PACKAGE=bitcoin VERSION=$HOST
0 commit comments