a0546dbc86
Also in this commit: * Sync CI scripts with other projects * Modernize docs/conf.py * Cleanup README.md * Use the official markdown version of the GPLv3 Refs: #5095 Change-Id: Ie607fcde1f6e41fa5efbbb41b21cb08583017442
33 lines
902 B
Bash
Executable File
33 lines
902 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -e
|
|
source .jenkins.d/util.sh
|
|
|
|
export CACHE_DIR=${CACHE_DIR:-/tmp}
|
|
export WAF_JOBS=${WAF_JOBS:-1}
|
|
[[ $JOB_NAME == *"code-coverage" ]] && export DISABLE_ASAN=yes
|
|
|
|
nanos() {
|
|
# Cannot use date(1) because macOS does not support %N format specifier
|
|
python3 -c 'import time; print(int(time.time() * 1e9))'
|
|
}
|
|
|
|
for file in .jenkins.d/*; do
|
|
[[ -f $file && -x $file ]] || continue
|
|
|
|
if [[ -n $TRAVIS ]]; then
|
|
label=$(basename "$file" | sed -E 's/[[:digit:]]+-(.*)\..*/\1/')
|
|
echo -ne "travis_fold:start:${label}\r"
|
|
echo -ne "travis_time:start:${label}\r"
|
|
start=$(nanos)
|
|
fi
|
|
|
|
echo "\$ $file"
|
|
"$file"
|
|
|
|
if [[ -n $TRAVIS ]]; then
|
|
finish=$(nanos)
|
|
echo -ne "travis_time:end:${label}:start=${start},finish=${finish},duration=$((finish-start)),event=${label}\r"
|
|
echo -ne "travis_fold:end:${label}\r"
|
|
fi
|
|
done
|