File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change 17
17
global :
18
18
- MAKEJOBS=-j3
19
19
- RUN_TESTS=false
20
+ - CHECK_DOC=0
20
21
- BOOST_TEST_RANDOM=1$TRAVIS_BUILD_ID
21
22
- CCACHE_SIZE=100M
22
23
- CCACHE_TEMPDIR=/tmp/.ccache-temp
@@ -35,7 +36,7 @@ matrix:
35
36
fast_finish : true
36
37
include :
37
38
- compiler : " : ARM"
38
- 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"
39
+ 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"
39
40
- compiler : " : Win32"
40
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"
41
42
- compiler : " : 32-bit + dash"
@@ -67,10 +68,10 @@ script:
67
68
- BITCOIN_CONFIG_ALL="--disable-dependency-tracking --prefix=$TRAVIS_BUILD_DIR/depends/$HOST --bindir=$OUTDIR/bin --libdir=$OUTDIR/lib"
68
69
- depends/$HOST/native/bin/ccache --max-size=$CCACHE_SIZE
69
70
- if [ "$TRAVIS_PULL_REQUEST" != "false" ]; then export CCACHE_READONLY=1; fi
71
+ - if [ "$CHECK_DOC" = 1 ]; then contrib/devtools/check-doc.py; fi
70
72
- test -n "$USE_SHELL" && eval '"$USE_SHELL" -c "./autogen.sh"' || ./autogen.sh
71
73
- ./configure --cache-file=config.cache $BITCOIN_CONFIG_ALL $BITCOIN_CONFIG || ( cat config.log && false)
72
74
- make distdir PACKAGE=bitcoin VERSION=$HOST
73
- - if [ "$RUN_TESTS" = "true" ]; then contrib/devtools/check-doc.py; fi
74
75
- cd bitcoin-$HOST
75
76
- ./configure --cache-file=../config.cache $BITCOIN_CONFIG_ALL $BITCOIN_CONFIG || ( cat config.log && false)
76
77
- make $MAKEJOBS $GOAL || ( echo "Build failure. Verbose build follows." && make $GOAL V=1 ; false )
You can’t perform that action at this time.
0 commit comments