mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -06:00
To get the after_failure line work, I had to move the inline build script to a separate script (util/travis-script.sh) The second script (util/travis-after-failure.sh) will output LastTest.log for cmake based builds and all files named test*.log for an autotools based build. Note: this commit also comes with a delibarate test failure to illustrate the Travis behaviour. It will be removed in the next commit.
31 lines
788 B
Bash
Executable File
31 lines
788 B
Bash
Executable File
#! /bin/bash -ev
|
|
# The -e above says that if any line below fails, the whole script fails
|
|
|
|
# Run tests in different build configurations depending on the
|
|
# value of the BUILDTYPE environment variable
|
|
# 1. cmake build using the default Makefile generator
|
|
if [[ "$BUILDTYPE" == "cmake-make" ]]; then
|
|
mkdir /tmp/gnucash-build-cmake-make
|
|
cd /tmp/gnucash-build-cmake-make
|
|
cmake $TRAVIS_BUILD_DIR
|
|
make -j 4
|
|
make check
|
|
|
|
# 2. cmake build using the Ninja generator
|
|
elif [[ "$BUILDTYPE" == "cmake-ninja" ]]; then
|
|
mkdir /tmp/gnucash-build-cmake-ninja
|
|
cd /tmp/gnucash-build-cmake-ninja
|
|
cmake -G Ninja $TRAVIS_BUILD_DIR
|
|
ninja
|
|
ninja check
|
|
|
|
# 3. autotools build
|
|
elif [[ "$BUILDTYPE" == "autotools" ]]; then
|
|
cd $TRAVIS_BUILD_DIR
|
|
./autogen.sh
|
|
./configure
|
|
make
|
|
make check
|
|
fi
|
|
|