File tree Expand file tree Collapse file tree 3 files changed +6
-7
lines changed Expand file tree Collapse file tree 3 files changed +6
-7
lines changed Original file line number Diff line number Diff line change @@ -33,18 +33,19 @@ matrix:
33
33
- compiler : " : Win32"
34
34
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"
35
35
- compiler : " : 32-bit + dash"
36
- 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"
36
+ 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"
37
37
- compiler : " : Win64"
38
38
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"
39
39
- compiler : " : bitcoind"
40
- 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"
40
+ 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"
41
41
- compiler : " : No wallet"
42
42
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"
43
43
- compiler : " : Cross-Mac"
44
44
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"
45
45
exclude :
46
46
- compiler : gcc
47
47
install :
48
+ - if [ -n "$PACKAGES" ]; then sudo rm -f /etc/apt/sources.list.d/travis_ci_zeromq3-source.list; fi
48
49
- if [ -n "$PPA" ]; then travis_retry sudo add-apt-repository "$PPA" -y; fi
49
50
- if [ -n "$PACKAGES" ]; then travis_retry sudo apt-get update; fi
50
51
- if [ -n "$PACKAGES" ]; then travis_retry sudo apt-get install --no-install-recommends --no-upgrade -qq $PACKAGES; fi
Original file line number Diff line number Diff line change @@ -60,9 +60,9 @@ testScriptsExt=(
60
60
' mempool_packages.py'
61
61
);
62
62
63
- # if [ "x$ENABLE_ZMQ" = "x1" ]; then
64
- # testScripts+=('zmq_test.py')
65
- # fi
63
+ if [ " x$ENABLE_ZMQ " = " x1" ]; then
64
+ testScripts+=(' zmq_test.py' )
65
+ fi
66
66
67
67
extArg=" -extended"
68
68
passOn=${@# $extArg }
Original file line number Diff line number Diff line change @@ -32,8 +32,6 @@ def setup_nodes(self):
32
32
self .zmqSubSocket .setsockopt (zmq .SUBSCRIBE , "hashblock" )
33
33
self .zmqSubSocket .setsockopt (zmq .SUBSCRIBE , "hashtx" )
34
34
self .zmqSubSocket .connect ("tcp://127.0.0.1:%i" % self .port )
35
- # Note: proxies are not used to connect to local nodes
36
- # this is because the proxy to use is based on CService.GetNetwork(), which return NET_UNROUTABLE for localhost
37
35
return start_nodes (4 , self .options .tmpdir , extra_args = [
38
36
['-zmqpubhashtx=tcp://127.0.0.1:' + str (self .port ), '-zmqpubhashblock=tcp://127.0.0.1:' + str (self .port )],
39
37
[],
You can’t perform that action at this time.
0 commit comments