mirror of
https://github.com/dashpay/dash.git
synced 2024-12-26 12:32:48 +01:00
Merge pull request #3174 from TheBlueMatt/master
Re-enable Jenkins and run more tests on Jenkins than pull-tester gets
This commit is contained in:
commit
d3fd96b2a4
@ -119,7 +119,7 @@ test_bitcoin_filtered.info: test_bitcoin.info
|
|||||||
|
|
||||||
block_test.info: test_bitcoin_filtered.info
|
block_test.info: test_bitcoin_filtered.info
|
||||||
$(MKDIR_P) qa/tmp
|
$(MKDIR_P) qa/tmp
|
||||||
-@TIMEOUT=15 qa/pull-tester/run-bitcoind-for-test.sh $(JAVA) -jar $(JAVA_COMPARISON_TOOL) qa/tmp/compTool 0 18444
|
-@TIMEOUT=15 qa/pull-tester/run-bitcoind-for-test.sh $(JAVA) -jar $(JAVA_COMPARISON_TOOL) qa/tmp/compTool 0
|
||||||
$(LCOV) -c -d $(abs_builddir)/src --t BitcoinJBlockTest -o $@
|
$(LCOV) -c -d $(abs_builddir)/src --t BitcoinJBlockTest -o $@
|
||||||
$(LCOV) -z -d $(abs_builddir)/src
|
$(LCOV) -z -d $(abs_builddir)/src
|
||||||
$(LCOV) -z -d $(abs_builddir)/src/leveldb
|
$(LCOV) -z -d $(abs_builddir)/src/leveldb
|
||||||
@ -148,7 +148,7 @@ endif
|
|||||||
if USE_COMPARISON_TOOL
|
if USE_COMPARISON_TOOL
|
||||||
check-local:
|
check-local:
|
||||||
$(MKDIR_P) qa/tmp
|
$(MKDIR_P) qa/tmp
|
||||||
@qa/pull-tester/run-bitcoind-for-test.sh $(JAVA) -jar $(JAVA_COMPARISON_TOOL) qa/tmp/compTool $(COMPARISON_TOOL_REORG_TESTS) 18444
|
@qa/pull-tester/run-bitcoind-for-test.sh $(JAVA) -jar $(JAVA_COMPARISON_TOOL) qa/tmp/compTool $(COMPARISON_TOOL_REORG_TESTS)
|
||||||
endif
|
endif
|
||||||
|
|
||||||
EXTRA_DIST = $(top_srcdir)/share/genbuild.sh qa/pull-tester/pull-tester.sh $(WINDOWS_PACKAGING) $(OSX_PACKAGING)
|
EXTRA_DIST = $(top_srcdir)/share/genbuild.sh qa/pull-tester/pull-tester.sh $(WINDOWS_PACKAGING) $(OSX_PACKAGING)
|
||||||
|
@ -9,7 +9,7 @@ set -o xtrace
|
|||||||
|
|
||||||
MINGWPREFIX=$1
|
MINGWPREFIX=$1
|
||||||
JAVA_COMPARISON_TOOL=$2
|
JAVA_COMPARISON_TOOL=$2
|
||||||
RUN_LARGE_REORGS=$3
|
RUN_EXPENSIVE_TESTS=$3
|
||||||
JOBS=${4-1}
|
JOBS=${4-1}
|
||||||
OUT_DIR=${5-}
|
OUT_DIR=${5-}
|
||||||
|
|
||||||
@ -23,17 +23,26 @@ DISTDIR=@PACKAGE@-@VERSION@
|
|||||||
# Cross-compile for windows first (breaking the mingw/windows build is most common)
|
# Cross-compile for windows first (breaking the mingw/windows build is most common)
|
||||||
cd @abs_top_srcdir@
|
cd @abs_top_srcdir@
|
||||||
make distdir
|
make distdir
|
||||||
mv $DISTDIR win32-build
|
mkdir -p win32-build
|
||||||
|
rsync -av $DISTDIR/ win32-build/
|
||||||
|
rm -r $DISTDIR
|
||||||
cd win32-build
|
cd win32-build
|
||||||
./configure --disable-silent-rules --disable-ccache --prefix=$MINGWPREFIX --host=i586-mingw32msvc --with-qt-bindir=$MINGWPREFIX/host/bin --with-qt-plugindir=$MINGWPREFIX/plugins --with-qt-incdir=$MINGWPREFIX/include --with-boost=$MINGWPREFIX --with-protoc-bindir=$MINGWPREFIX/host/bin CPPFLAGS=-I$MINGWPREFIX/include LDFLAGS=-L$MINGWPREFIX/lib
|
|
||||||
|
if [ $RUN_EXPENSIVE_TESTS = 1 ]; then
|
||||||
|
./configure --disable-silent-rules --disable-ccache --prefix=$MINGWPREFIX --host=i586-mingw32msvc --with-qt-bindir=$MINGWPREFIX/host/bin --with-qt-plugindir=$MINGWPREFIX/plugins --with-qt-incdir=$MINGWPREFIX/include --with-boost=$MINGWPREFIX --with-protoc-bindir=$MINGWPREFIX/host/bin CPPFLAGS=-I$MINGWPREFIX/include LDFLAGS=-L$MINGWPREFIX/lib --with-comparison-tool="$JAVA_COMPARISON_TOOL" --enable-comparison-tool-reorg-tests
|
||||||
|
else
|
||||||
|
./configure --disable-silent-rules --disable-ccache --prefix=$MINGWPREFIX --host=i586-mingw32msvc --with-qt-bindir=$MINGWPREFIX/host/bin --with-qt-plugindir=$MINGWPREFIX/plugins --with-qt-incdir=$MINGWPREFIX/include --with-boost=$MINGWPREFIX --with-protoc-bindir=$MINGWPREFIX/host/bin CPPFLAGS=-I$MINGWPREFIX/include LDFLAGS=-L$MINGWPREFIX/lib
|
||||||
|
fi
|
||||||
make -j$JOBS
|
make -j$JOBS
|
||||||
|
|
||||||
# And compile for Linux:
|
# And compile for Linux:
|
||||||
cd @abs_top_srcdir@
|
cd @abs_top_srcdir@
|
||||||
make distdir
|
make distdir
|
||||||
mv $DISTDIR linux-build
|
mkdir -p linux-build
|
||||||
|
rsync -av $DISTDIR/ linux-build/
|
||||||
|
rm -r $DISTDIR
|
||||||
cd linux-build
|
cd linux-build
|
||||||
if [ $RUN_LARGE_REORGS = 1 ]; then
|
if [ $RUN_EXPENSIVE_TESTS = 1 ]; then
|
||||||
./configure --disable-silent-rules --disable-ccache --with-comparison-tool="$JAVA_COMPARISON_TOOL" --enable-comparison-tool-reorg-tests
|
./configure --disable-silent-rules --disable-ccache --with-comparison-tool="$JAVA_COMPARISON_TOOL" --enable-comparison-tool-reorg-tests
|
||||||
else
|
else
|
||||||
./configure --disable-silent-rules --disable-ccache --with-comparison-tool="$JAVA_COMPARISON_TOOL"
|
./configure --disable-silent-rules --disable-ccache --with-comparison-tool="$JAVA_COMPARISON_TOOL"
|
||||||
@ -59,6 +68,12 @@ fi
|
|||||||
cd @abs_top_srcdir@/linux-build
|
cd @abs_top_srcdir@/linux-build
|
||||||
make check
|
make check
|
||||||
|
|
||||||
|
if [ $RUN_EXPENSIVE_TESTS = 1 ]; then
|
||||||
|
# Run unit tests and blockchain-tester on Windows:
|
||||||
|
cd @abs_top_srcdir@/win32-build
|
||||||
|
make check
|
||||||
|
fi
|
||||||
|
|
||||||
# Clean up builds (pull-tester machine doesn't have infinite disk space)
|
# Clean up builds (pull-tester machine doesn't have infinite disk space)
|
||||||
cd @abs_top_srcdir@/linux-build
|
cd @abs_top_srcdir@/linux-build
|
||||||
make clean
|
make clean
|
||||||
|
@ -5,7 +5,8 @@ mkdir -p "$DATADIR"/regtest
|
|||||||
touch "$DATADIR/regtest/debug.log"
|
touch "$DATADIR/regtest/debug.log"
|
||||||
tail -q -n 1 -F "$DATADIR/regtest/debug.log" | grep -m 1 -q "Done loading" &
|
tail -q -n 1 -F "$DATADIR/regtest/debug.log" | grep -m 1 -q "Done loading" &
|
||||||
WAITER=$!
|
WAITER=$!
|
||||||
"@abs_top_builddir@/src/bitcoind@EXEEXT@" -connect=0.0.0.0 -datadir="$DATADIR" -rpcuser=user -rpcpassword=pass -listen -keypool=3 -debug -debug=net -logtimestamps -port=18444 -regtest &
|
PORT=`expr $BASHPID + 10000`
|
||||||
|
"@abs_top_builddir@/src/bitcoind@EXEEXT@" -connect=0.0.0.0 -datadir="$DATADIR" -rpcuser=user -rpcpassword=pass -listen -keypool=3 -debug -debug=net -logtimestamps -port=$PORT -regtest &
|
||||||
BITCOIND=$!
|
BITCOIND=$!
|
||||||
|
|
||||||
#Install a watchdog.
|
#Install a watchdog.
|
||||||
@ -13,10 +14,10 @@ BITCOIND=$!
|
|||||||
wait $WAITER
|
wait $WAITER
|
||||||
|
|
||||||
if [ -n "$TIMEOUT" ]; then
|
if [ -n "$TIMEOUT" ]; then
|
||||||
timeout "$TIMEOUT"s "$@"
|
timeout "$TIMEOUT"s "$@" $PORT
|
||||||
RETURN=$?
|
RETURN=$?
|
||||||
else
|
else
|
||||||
"$@"
|
"$@" $PORT
|
||||||
RETURN=$?
|
RETURN=$?
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user