mirror of
https://github.com/SOCI/soci.git
synced 2026-05-01 08:39:15 -05:00
2df1438c3b
No real changes.
13 lines
348 B
Bash
Executable File
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
|