2015-07-05 00:52:36 -07:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
set -e
|
|
|
|
set -o pipefail
|
|
|
|
|
2017-03-31 07:39:18 -07:00
|
|
|
if [[ "${CI_TARGET}" == lint ]]; then
|
2015-07-05 00:52:36 -07:00
|
|
|
exit
|
|
|
|
fi
|
|
|
|
|
|
|
|
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
|
|
|
|
2015-07-05 00:52:36 -07:00
|
|
|
if [[ "${TRAVIS_OS_NAME}" == osx ]]; then
|
|
|
|
# Adds user to a dummy group.
|
|
|
|
# That allows to test changing the group of the file by `os_fchown`.
|
|
|
|
sudo dscl . -create /Groups/chown_test
|
|
|
|
sudo dscl . -append /Groups/chown_test GroupMembership "${USER}"
|
|
|
|
fi
|
|
|
|
|
2016-07-17 02:40:28 -07:00
|
|
|
# Compile dependencies.
|
|
|
|
build_deps
|
|
|
|
|
2015-07-05 00:52:36 -07:00
|
|
|
rm -rf "${LOG_DIR}"
|
|
|
|
mkdir -p "${LOG_DIR}"
|