mirror of
https://github.com/bitcoin/bitcoin.git
synced 2026-01-18 22:35:39 +01:00
autotools: switch to autotools buildsystem
This commit is contained in:
45
qa/pull-tester/build-tests.sh.in
Executable file
45
qa/pull-tester/build-tests.sh.in
Executable file
@@ -0,0 +1,45 @@
|
||||
#!/bin/bash
|
||||
# Param1: The prefix to mingw staging
|
||||
# Param2: Path to java comparison tool
|
||||
# Param3: Number of make jobs. Defaults to 1.
|
||||
|
||||
set -e
|
||||
set -o xtrace
|
||||
|
||||
MINGWPREFIX=$1
|
||||
JAVA_COMPARISON_TOOL=$2
|
||||
JOBS=${3-1}
|
||||
|
||||
if [ $# -lt 2 ]; then
|
||||
echo "Usage: $0 [mingw-prefix] [java-comparison-tool] <make jobs>"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
DISTDIR=@PACKAGE@-@VERSION@
|
||||
|
||||
cd @abs_top_srcdir@
|
||||
make distdir
|
||||
mv $DISTDIR linux-build
|
||||
cd linux-build
|
||||
./configure --with-comparison-tool="$JAVA_COMPARISON_TOOL"
|
||||
make -j$JOBS
|
||||
make check
|
||||
|
||||
#Test code coverage
|
||||
cd @abs_top_srcdir@
|
||||
make distdir
|
||||
mv $DISTDIR linux-coverage-build
|
||||
cd linux-coverage-build
|
||||
./configure --enable-lcov --with-comparison-tool="$JAVA_COMPARISON_TOOL"
|
||||
make -j$JOBS
|
||||
make cov
|
||||
|
||||
# win32 build disabled until pull-tester has updated dependencies
|
||||
##Test win32 build
|
||||
#cd @abs_top_srcdir@
|
||||
#make distdir
|
||||
#mv $DISTDIR win32-build
|
||||
#cd win32-build
|
||||
#./configure --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 --with-comparison-tool="$JAVA_COMPARISON_TOOL" CPPFLAGS=-I$MINGWPREFIX/include LDFLAGS=-L$MINGWPREFIX/lib
|
||||
#make -j$JOBS
|
||||
#make check
|
||||
Reference in New Issue
Block a user