mirror of
https://github.com/SOCI/soci.git
synced 2026-02-15 02:38:42 -06:00
Define SOCI_DEFAULT_CMAKE_OPTIONS once and use it in almost all builds instead of repeating the same options many times everywhere. For the remaining build (Valgrind) still reuse a couple of options which it has in common with the other ones.
55 lines
1.6 KiB
Bash
Executable File
55 lines
1.6 KiB
Bash
Executable File
#!/bin/bash -e
|
|
# Builds and tests SOCI backend empty at travis-ci.org
|
|
#
|
|
# Copyright (c) 2013 Mateusz Loskot <mateusz@loskot.net>
|
|
#
|
|
source ${TRAVIS_BUILD_DIR}/scripts/travis/common.sh
|
|
|
|
run_cmake_for_empty()
|
|
{
|
|
cmake ${SOCI_DEFAULT_CMAKE_OPTIONS} \
|
|
-DCMAKE_CXX_STANDARD=${CMAKE_CXX_STANDARD} \
|
|
-DSOCI_EMPTY=ON \
|
|
..
|
|
}
|
|
|
|
run_cmake_for_empty
|
|
run_make
|
|
run_test
|
|
|
|
# Test release branch packaging and building from the package
|
|
if [[ "$TEST_RELEASE_PACKAGE" == "YES" ]] && [[ "$TRAVIS_BRANCH" =~ ^release/[3-9]\.[0-9]$ ]]; then
|
|
ME=`basename "$0"`
|
|
|
|
sudo apt-get update -qq -y
|
|
sudo apt-get install -qq -y python3.4-venv
|
|
|
|
SOCI_VERSION=$(cat "$TRAVIS_BUILD_DIR/include/soci/version.h" | grep -Po "(.*#define\s+SOCI_LIB_VERSION\s+.+)\K([3-9]_[0-9]_[0-9])" | sed "s/_/\./g")
|
|
if [[ ! "$SOCI_VERSION" =~ ^[4-9]\.[0-9]\.[0-9]$ ]]; then
|
|
echo "${ME} ERROR: Invalid format of SOCI version '$SOCI_VERSION'. Aborting."
|
|
exit 1
|
|
else
|
|
echo "${ME} INFO: Creating source package 'soci-${SOCI_VERSION}.tar.gz' from '$TRAVIS_BRANCH' branch"
|
|
fi
|
|
|
|
cd $TRAVIS_BUILD_DIR
|
|
$TRAVIS_BUILD_DIR/scripts/release.sh --use-local-branch $TRAVIS_BRANCH
|
|
|
|
if [[ ! -f "soci-${SOCI_VERSION}.tar.gz" ]]; then
|
|
echo "${ME} ERROR: Archive file 'soci-${SOCI_VERSION}.tar.gz' not found. Aborting."
|
|
exit 1
|
|
fi
|
|
|
|
echo "${ME} INFO: Unpacking source package 'soci-${SOCI_VERSION}.tar.gz'"
|
|
tar -xzf soci-${SOCI_VERSION}.tar.gz
|
|
|
|
echo "${ME} INFO: Building SOCI from source package 'soci-${SOCI_VERSION}.tar.gz'"
|
|
cd soci-${SOCI_VERSION}
|
|
mkdir _build
|
|
echo $PWD
|
|
|
|
run_cmake_for_empty
|
|
run_make
|
|
run_test
|
|
fi
|