File tree Expand file tree Collapse file tree 1 file changed +7
-5
lines changed Expand file tree Collapse file tree 1 file changed +7
-5
lines changed Original file line number Diff line number Diff line change 66
77export LC_ALL=C.UTF-8
88
9+ BITCOIN_CONFIG_ALL=" --enable-suppress-external-warnings --disable-dependency-tracking --prefix=$DEPENDS_DIR /$HOST "
10+ if [ -z " $NO_WERROR " ]; then
11+ BITCOIN_CONFIG_ALL=" ${BITCOIN_CONFIG_ALL} --enable-werror"
12+ fi
13+
914if [ -n " $ANDROID_TOOLS_URL " ]; then
1015 CI_EXEC make distclean || true
1116 CI_EXEC ./autogen.sh
12- CI_EXEC ./configure " $BITCOIN_CONFIG " --prefix= " ${DEPENDS_DIR} /aarch64-linux-android " || ( (CI_EXEC cat config.log) && false)
17+ CI_EXEC ./configure " $BITCOIN_CONFIG_ALL " " $BITCOIN_CONFIG " || ( (CI_EXEC cat config.log) && false)
1318 CI_EXEC " make $MAKEJOBS && cd src/qt && ANDROID_HOME=${ANDROID_HOME} ANDROID_NDK_HOME=${ANDROID_NDK_HOME} make apk"
1419 exit 0
1520fi
1621
17- BITCOIN_CONFIG_ALL=" --enable-external-signer --enable-suppress-external-warnings --disable-dependency-tracking --prefix=$DEPENDS_DIR /$HOST --bindir=$BASE_OUTDIR /bin --libdir=$BASE_OUTDIR /lib"
18- if [ -z " $NO_WERROR " ]; then
19- BITCOIN_CONFIG_ALL=" ${BITCOIN_CONFIG_ALL} --enable-werror"
20- fi
22+ BITCOIN_CONFIG_ALL=" ${BITCOIN_CONFIG_ALL} --enable-external-signer --bindir=$BASE_OUTDIR /bin --libdir=$BASE_OUTDIR /lib"
2123CI_EXEC " ccache --zero-stats --max-size=$CCACHE_SIZE "
2224
2325if [ -n " $CONFIG_SHELL " ]; then
You can’t perform that action at this time.
0 commit comments