mirror of
https://github.com/XRPLF/rippled.git
synced 2025-11-20 02:55:50 +00:00
15 lines
366 B
Bash
Executable File
15 lines
366 B
Bash
Executable File
#!/bin/bash -e
|
|
# Run test script actions for SOCI build at travis-ci.org
|
|
#
|
|
# Copyright (c) 2013 Mateusz Loskot <mateusz@loskot.net>
|
|
#
|
|
source ${TRAVIS_BUILD_DIR}/bin/ci/common.sh
|
|
|
|
# prepare build directory
|
|
builddir="${TRAVIS_BUILD_DIR}/src/_build"
|
|
mkdir -p ${builddir}
|
|
cd ${builddir}
|
|
|
|
# build and run tests
|
|
${TRAVIS_BUILD_DIR}/bin/ci/script_${SOCI_TRAVIS_BACKEND}.sh
|