Warning, file /sdk/codevis/thirdparty/soci/scripts/ci/before_build.sh was not indexed or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).
0001 #!/usr/bin/env bash 0002 # Run before_script actions for SOCI build in CI builds 0003 # 0004 # Copyright (c) 2013 Mateusz Loskot <mateusz@loskot.net> 0005 # 0006 source ${SOCI_SOURCE_DIR}/scripts/ci/common.sh 0007 0008 before_script="${SOCI_SOURCE_DIR}/scripts/ci/before_build_${SOCI_CI_BACKEND}.sh" 0009 if [ -x ${before_script} ]; then 0010 echo "Running ${before_script}" 0011 ${before_script} 0012 fi