diff options
author | Cory Fields <theuni-nospam-@xbmc.org> | 2013-05-27 19:55:01 -0400 |
---|---|---|
committer | Cory Fields <theuni-nospam-@xbmc.org> | 2013-09-05 21:31:03 -0400 |
commit | 35b8af92265ed74de63c3818e5290c27b3f35df2 (patch) | |
tree | 7cd074e2ba31ca9346d69922e312ebd3e7298711 /qa/pull-tester/build-tests.sh.in | |
parent | 2fee100f036626866e5dca3f27b7562da25e43f3 (diff) |
autotools: switch to autotools buildsystem
Diffstat (limited to 'qa/pull-tester/build-tests.sh.in')
-rwxr-xr-x | qa/pull-tester/build-tests.sh.in | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/qa/pull-tester/build-tests.sh.in b/qa/pull-tester/build-tests.sh.in new file mode 100755 index 0000000000..b353c57909 --- /dev/null +++ b/qa/pull-tester/build-tests.sh.in @@ -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 |