diff options
| author | Gavin Andresen <[email protected]> | 2013-10-07 13:10:22 +1000 |
|---|---|---|
| committer | Gavin Andresen <[email protected]> | 2013-10-08 10:49:50 +1000 |
| commit | 583484a656071a04974cda6de50cdd627f2dc616 (patch) | |
| tree | a35184585205b66e0c831dcf44b718c2717c13a5 /qa/pull-tester | |
| parent | Merge pull request #3056 from Diapolo/stuck_debug_window (diff) | |
| download | discoin-583484a656071a04974cda6de50cdd627f2dc616.tar.xz discoin-583484a656071a04974cda6de50cdd627f2dc616.zip | |
Re-enable win32 pull-testing
Diffstat (limited to 'qa/pull-tester')
| -rwxr-xr-x | qa/pull-tester/build-tests.sh.in | 23 |
1 files changed, 12 insertions, 11 deletions
diff --git a/qa/pull-tester/build-tests.sh.in b/qa/pull-tester/build-tests.sh.in index b353c5790..85d9d55bb 100755 --- a/qa/pull-tester/build-tests.sh.in +++ b/qa/pull-tester/build-tests.sh.in @@ -17,15 +17,25 @@ fi DISTDIR=@PACKAGE@-@VERSION@ +# Test win32 build first (it breaks the most often) +cd @abs_top_srcdir@ +make distdir +mv $DISTDIR 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 +make -j$JOBS +make check + +# ... then linux build, with blockchain-tester: cd @abs_top_srcdir@ make distdir mv $DISTDIR linux-build cd linux-build -./configure --with-comparison-tool="$JAVA_COMPARISON_TOOL" +./configure --disable-silent-rules --disable-ccache --with-comparison-tool="$JAVA_COMPARISON_TOOL" make -j$JOBS make check -#Test code coverage +# Test code coverage cd @abs_top_srcdir@ make distdir mv $DISTDIR linux-coverage-build @@ -34,12 +44,3 @@ cd linux-coverage-build 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 |