Make sure to output verbose tests to help pinpointing problems
[lttng-ci.git] / scripts / babeltrace / build.sh
index 3af49df6d56e93c616d2bab7493db3ad06bbc576..29f470f4ebd4576fd20d89ab238aaed264431948 100755 (executable)
@@ -1,4 +1,4 @@
-#!/bin/sh -exu
+#!/bin/bash -exu
 #
 # Copyright (C) 2015 - Jonathan Rajotte-Julien <jonathan.rajotte-julien@efficios.com>
 #
 # You should have received a copy of the GNU General Public License
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
+
 # Create build directory
 rm -rf $WORKSPACE/build
 mkdir -p $WORKSPACE/build
 
 PREFIX="$WORKSPACE/build"
 
-./bootstrap
+# Set platform variables
+case "$arch" in
+solaris10)
+    MAKE=gmake
+    TAR=gtar
+    NPROC=gnproc
+    BISON=bison
+    YACC="$BISON -y"
+    ;;
+solaris11)
+    MAKE=gmake
+    TAR=gtar
+    NPROC=nproc
+    BISON="/opt/csw/bin/bison"
+    YACC="$BISON -y"
+    export PATH="$PATH:/usr/perl5/bin"
+    ;;
+*)
+    MAKE=make
+    TAR=tar
+    NPROC=nproc
+    BISON=bison
+    YACC="$BISON -y"
+    ;;
+esac
 
+# Set configure options for each build configuration
 CONF_OPTS=""
-
 case "$conf" in
 static)
     echo "Static build"
@@ -43,6 +68,11 @@ python-bindings)
     ;;
 esac
 
+
+# Run bootstrap prior to configure
+./bootstrap
+
+
 # Build type
 # oot : out-of-tree build
 # dist: build via make dist
@@ -50,73 +80,67 @@ esac
 #
 # Make sure to move to the build_path and configure
 # before continuing
-
 BUILD_PATH=$WORKSPACE
 TEST_PLAN_PATH=$WORKSPACE
-
 case "$build" in
-       oot)
-               echo "Out of tree build"
-               BUILD_PATH=$WORKSPACE/oot
-               mkdir -p $BUILD_PATH
-               cd $BUILD_PATH
-               $WORKSPACE/configure --prefix=$PREFIX $CONF_OPTS
-               ;;
-       dist)
-               echo "Distribution out of tree build"
-               BUILD_PATH=`mktemp -d`
-
-               # Initial configure and generate tarball
-               ./configure
-               make dist
-
-               mkdir -p $BUILD_PATH
-               cp *.tar.* $BUILD_PATH/
-               cd $BUILD_PATH
-
-               # Ignore level 1 of tar
-               tar xvf *.tar.* --strip 1
-
-               $BUILD_PATH/configure --prefix=$PREFIX $CONF_OPTS
-
-               # Set test plan to dist tar
-               TEST_PLAN_PATH=$BUILD_PATH
-               ;;
-       *)
-               echo "Standard tree build"
-               $WORKSPACE/configure --prefix=$PREFIX $CONF_OPTS
-               ;;
-esac
+    oot)
+        echo "Out of tree build"
+        BUILD_PATH=$WORKSPACE/oot
+        mkdir -p $BUILD_PATH
+        cd $BUILD_PATH
+        MAKE=$MAKE BISON="$BISON" YACC="$YACC" $WORKSPACE/configure --prefix=$PREFIX $CONF_OPTS
+        ;;
 
-make
-make install
+    dist)
+        echo "Distribution out of tree build"
+       BUILD_PATH=`mktemp -d`
 
-rm -rf $WORKSPACE/tap
-mkdir -p $WORKSPACE/tap
+        # Initial configure and generate tarball
+        MAKE=$MAKE BISON="$BISON" YACC="$YACC" ./configure
+        $MAKE dist
 
-cd $BUILD_PATH/tests
+        mkdir -p $BUILD_PATH
+        cp *.tar.* $BUILD_PATH/
+        cd $BUILD_PATH
 
-# Run make check tests
-if [ -e $TEST_PLAN_PATH/tests/tests ]; then
-       prove --merge --exec '' - < $TEST_PLAN_PATH/tests/tests --archive $WORKSPACE/tap/ || true
-else
-       echo "Missing test plan"
-       exit 1
-fi
+        # Ignore level 1 of tar
+        $TAR xvf *.tar.* --strip 1
+
+        MAKE=$MAKE BISON="$BISON" YACC="$YACC" $BUILD_PATH/configure --prefix=$PREFIX $CONF_OPTS
+
+        # Set test plan to dist tar
+        TEST_PLAN_PATH=$BUILD_PATH
+        ;;
 
-# TAP plugin is having a hard time with .yml files.
-rm -f $WORKSPACE/tap/meta.yml
+*)
+        echo "Standard tree build"
+        MAKE=$MAKE BISON="$BISON" YACC="$YACC" $WORKSPACE/configure --prefix=$PREFIX $CONF_OPTS
+        ;;
+esac
+
+# BUILD!
+$MAKE -j `$NPROC` V=1
+$MAKE install
 
-# And also with files without extension, so rename all result to *.tap
-find $WORKSPACE/tap/ -type f -exec mv {} {}.tap \;
+# Run tests
+cd ./tests
+# Run make check tests
+prove --merge -v --exec '' - < $WORKSPACE/tests/tests
+cd ..
 
-make clean
+$MAKE clean
 
-# Cleanup rpath and libtool .la files
-find $WORKSPACE/build/bin -executable -type f -exec chrpath --delete {} \;
+# Cleanup rpath in executables and shared libraries
+find $WORKSPACE/build/bin -type f -perm -0500 -exec chrpath --delete {} \;
 find $WORKSPACE/build/lib -name "*.so" -exec chrpath --delete {} \;
+
+# Remove libtool .la files
 find $WORKSPACE/build/lib -name "*.la" -exec rm -f {} \;
 
-if [ $build = "dist" ]; then
-       rm -rf $BUILD_PATH
+# Clean temp dir for dist build
+if [ "$build" = "dist" ]; then
+    cd $WORKSPACE
+    rm -rf $BUILD_PATH
 fi
+
+# EOF
This page took 0.023835 seconds and 4 git commands to generate.