mirror of
https://github.com/SOCI/soci.git
synced 2026-05-03 17:59:18 -05:00
bce5f9febb
While this doesn't matter for Travis CI, it makes sense to separate them for the other CI systems using more structured approach to the build steps. Add a few test_*.sh scripts for the backends that need to do something special when running the tests and just use run_test function for all the others.
19 lines
370 B
Bash
Executable File
19 lines
370 B
Bash
Executable File
#!/bin/bash -e
|
|
# Builds SOCI ODBC backend in CI builds
|
|
#
|
|
# Copyright (c) 2013 Mateusz Loskot <mateusz@loskot.net>
|
|
#
|
|
source ${SOCI_SOURCE_DIR}/scripts/ci/common.sh
|
|
|
|
ODBC_TEST=${PWD}/../tests/odbc
|
|
if test ! -d ${ODBC_TEST}; then
|
|
echo "ERROR: '${ODBC_TEST}' directory not found"
|
|
exit 1
|
|
fi
|
|
|
|
cmake ${SOCI_DEFAULT_CMAKE_OPTIONS} \
|
|
-DSOCI_ODBC=ON \
|
|
..
|
|
|
|
run_make
|