Files
soci/scripts/ci/before_build.sh
T
2021-03-16 17:34:14 +01:00

13 lines
348 B
Bash
Executable File

#!/bin/bash
# Run before_script actions for SOCI build in CI builds
#
# Copyright (c) 2013 Mateusz Loskot <mateusz@loskot.net>
#
source ${SOCI_SOURCE_DIR}/scripts/ci/common.sh
before_script="${SOCI_SOURCE_DIR}/scripts/ci/before_build_${SOCI_CI_BACKEND}.sh"
if [ -x ${before_script} ]; then
echo "Running ${before_script}"
${before_script}
fi