X-Git-Url: http://git.lttng.org./?a=blobdiff_plain;f=scripts%2Flttng-ust%2Fbuild.sh;h=7341b0c63347581246859a193141babebb0f37be;hb=1794bc79e85035db21907bd9cf5c40f895258788;hp=5f960b4847e5c736ad5194899cabd90e605ef6ca;hpb=2356937a72ca2d68102e7aab17465c1a9b66b06d;p=lttng-ci.git diff --git a/scripts/lttng-ust/build.sh b/scripts/lttng-ust/build.sh index 5f960b4..7341b0c 100755 --- a/scripts/lttng-ust/build.sh +++ b/scripts/lttng-ust/build.sh @@ -182,6 +182,15 @@ cd "$SRCDIR" eval "$(grep '^PACKAGE_VERSION=' ./configure)" PACKAGE_VERSION=${PACKAGE_VERSION//\-pre*/} +# Gerrit will trigger build on FreeBSD regardless of the branch, exit +# successfuly when the version is < 2.13. +if [[ $arch == freebsd* ]] && verlt "$PACKAGE_VERSION" "2.13"; then + mkdir -p "$WORKSPACE/tap/no-log" + echo "1..1" > "$WORKSPACE/tap/no-log/tests.log" + echo "ok 1 - FreeBSD build unsupported in < 2.13" >> "$WORKSPACE/tap/no-log/tests.log" + exit 0 +fi + # Set configure options and environment variables for each build # configuration. CONF_OPTS=("--prefix=$PREFIX") @@ -240,7 +249,7 @@ dist) # Run configure and generate the tar file # in the source directory - ./configure || failed_configure + ./configure --enable-jni-interface || failed_configure $MAKE dist # Create and enter a temporary build directory @@ -263,7 +272,7 @@ oot-dist) cd "$builddir" # Run configure out of tree and generate the tar file - "$SRCDIR/configure" || failed_configure + "$SRCDIR/configure" --enable-jni-interface || failed_configure $MAKE dist dist_srcdir="$(mktemp -d)"