mirror of
https://github.com/SOCI/soci.git
synced 2026-02-15 02:38:42 -06:00
17 lines
417 B
Bash
Executable File
17 lines
417 B
Bash
Executable File
#!/bin/bash
|
|
# Run test script actions for SOCI build at travis-ci.org
|
|
#
|
|
# Copyright (c) 2013 Mateusz Loskot <mateusz@loskot.net>
|
|
#
|
|
source ${TRAVIS_BUILD_DIR}/scripts/travis/common.sh
|
|
|
|
# prepare build directory
|
|
builddir="${TRAVIS_BUILD_DIR}/_build"
|
|
mkdir -p ${builddir}
|
|
cd ${builddir}
|
|
|
|
# build and run tests
|
|
SCRIPT=${TRAVIS_BUILD_DIR}/scripts/travis/script_${SOCI_TRAVIS_BACKEND}.sh
|
|
echo "Running ${SCRIPT}"
|
|
${SCRIPT}
|