2015-07-05 00:52:36 -07:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
set -e
|
|
|
|
set -o pipefail
|
|
|
|
|
|
|
|
CI_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
|
|
source "${CI_DIR}/common/build.sh"
|
|
|
|
|
2015-07-05 11:37:29 -07:00
|
|
|
# Test some of the configuration variables.
|
|
|
|
if [[ -n "${GCOV}" ]] && [[ ! $(type -P "${GCOV}") ]]; then
|
|
|
|
echo "\$GCOV: '${GCOV}' is not executable."
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
if [[ -n "${LLVM_SYMBOLIZER}" ]] && [[ ! $(type -P "${LLVM_SYMBOLIZER}") ]]; then
|
|
|
|
echo "\$LLVM_SYMBOLIZER: '${LLVM_SYMBOLIZER}' is not executable."
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2019-07-30 14:21:12 -07:00
|
|
|
echo "before_script.sh: ccache stats (will be cleared)"
|
|
|
|
ccache -s
|
2019-06-14 10:18:19 -07:00
|
|
|
# Reset ccache stats for real results in before_cache.
|
|
|
|
ccache --zero-stats
|
2018-05-01 04:02:11 -07:00
|
|
|
|
2016-07-17 02:40:28 -07:00
|
|
|
# Compile dependencies.
|
|
|
|
build_deps
|
|
|
|
|
2019-10-07 04:01:14 -07:00
|
|
|
# Install cluacov for Lua coverage.
|
2019-10-04 07:09:42 -07:00
|
|
|
if [[ "$USE_LUACOV" == 1 ]]; then
|
2019-10-07 04:01:14 -07:00
|
|
|
"${DEPS_BUILD_DIR}/usr/bin/luarocks" install cluacov
|
2019-10-04 07:09:42 -07:00
|
|
|
fi
|
|
|
|
|
2015-07-05 00:52:36 -07:00
|
|
|
rm -rf "${LOG_DIR}"
|
|
|
|
mkdir -p "${LOG_DIR}"
|