2016-02-18 15:40:13 +01:00
|
|
|
#! /bin/bash
|
|
|
|
|
|
|
|
# enabled VALUE
|
|
|
|
# - if VALUE is empty or falsy, returns 1 (false)
|
|
|
|
# - otherwise returns 0 (true)
|
|
|
|
# enabled VALUE COMMAND ...
|
|
|
|
# - if VALUE is empty or falsy, returns 0 (true)
|
|
|
|
# - otherwise runs COMMAND and returns its result
|
|
|
|
enabled () {
|
|
|
|
local value="$1"; shift
|
|
|
|
case $value in
|
|
|
|
''|'0'|[Ff]alse|[Nn]o) test $# -ne 0;;
|
|
|
|
*) test $# -eq 0 || "$@";;
|
|
|
|
esac
|
|
|
|
}
|
|
|
|
|
|
|
|
# on NAME
|
|
|
|
# - if NAME == $TRAVIS_OS_NAME, returns 0 (true)
|
|
|
|
# - otherwise returns 1 (false)
|
|
|
|
# on NAME COMMAND ...
|
|
|
|
# - if NAME == $TRAVIS_OS_NAME, runs COMMAND and returns its result
|
|
|
|
# - otherwise returns 0 (true)
|
|
|
|
on () {
|
|
|
|
local name="$1"; shift
|
|
|
|
case $name in
|
|
|
|
$TRAVIS_OS_NAME) test $# -eq 0 || "$@";;
|
|
|
|
*) test $# -ne 0;;
|
|
|
|
esac
|
|
|
|
}
|
|
|
|
|
2018-08-01 17:59:09 +02:00
|
|
|
test_ok () {
|
|
|
|
return $TRAVIS_TEST_RESULT
|
|
|
|
}
|
|
|
|
|
2016-02-18 15:40:13 +01:00
|
|
|
git_submodule_update () {
|
|
|
|
git submodule update "$@" && return
|
2016-10-05 20:03:45 +02:00
|
|
|
# failed, search branch and pull request heads for matching commit
|
2016-02-18 15:40:13 +01:00
|
|
|
git submodule foreach \
|
|
|
|
'
|
|
|
|
test "$sha1" = "`git rev-parse HEAD`" ||
|
2016-10-05 20:03:45 +02:00
|
|
|
git ls-remote origin "refs/heads/*" "refs/pull/*/head" |
|
2016-02-18 15:40:13 +01:00
|
|
|
while read hash ref; do
|
|
|
|
if test "$hash" = "$sha1"; then
|
2016-10-05 20:03:45 +02:00
|
|
|
git config --add remote.origin.fetch "+$ref:$ref"
|
|
|
|
break
|
2016-02-18 15:40:13 +01:00
|
|
|
fi
|
|
|
|
done
|
|
|
|
'
|
|
|
|
# try again with added fetch refs
|
|
|
|
git submodule update "$@"
|
|
|
|
}
|
|
|
|
|
|
|
|
# commit_message_contains TEXT
|
|
|
|
# - returns 0 (true) if TEXT is found in commit message
|
|
|
|
# - case-insensitive, plain-text search, not regex
|
|
|
|
commit_message_contains () {
|
|
|
|
git log -1 --pretty='%B' "$TRAVIS_COMMIT" | grep -qiFe "$*"
|
|
|
|
}
|
|
|
|
|
|
|
|
commit_message_parse () {
|
2016-05-09 23:04:55 +02:00
|
|
|
if commit_message_contains '[skip tests]'; then
|
2016-02-18 15:40:13 +01:00
|
|
|
config_override "CPP_TESTS = False"
|
|
|
|
fi
|
|
|
|
if commit_message_contains '[skip utils]'; then
|
|
|
|
config_override "MAPNIK_INDEX = False"
|
|
|
|
config_override "MAPNIK_RENDER = False"
|
|
|
|
config_override "PGSQL2SQLITE = False"
|
|
|
|
config_override "SHAPEINDEX = False"
|
|
|
|
config_override "SVG2PNG = False"
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
config_override () {
|
|
|
|
echo "Appending to config.py:" "$@"
|
|
|
|
echo "$@" >> ./config.py
|
|
|
|
}
|
|
|
|
|
|
|
|
configure () {
|
|
|
|
if enabled ${COVERAGE}; then
|
2018-08-25 22:56:31 +02:00
|
|
|
./configure "PREFIX=$PREFIX" "CUSTOM_LDFLAGS=$LINKFLAGS" "$@" \
|
|
|
|
COVERAGE=True DEBUG=True \
|
|
|
|
PGSQL2SQLITE=False SVG2PNG=False SVG_RENDERER=False
|
2016-02-18 15:40:13 +01:00
|
|
|
else
|
2018-08-25 22:56:31 +02:00
|
|
|
./configure "PREFIX=$PREFIX" "CUSTOM_LDFLAGS=$LINKFLAGS" "$@"
|
2016-02-18 15:40:13 +01:00
|
|
|
fi
|
|
|
|
# print final config values, sorted and indented
|
|
|
|
sort -sk1,1 ./config.py | sed -e 's/^/ /'
|
|
|
|
}
|
|
|
|
|
|
|
|
coverage () {
|
2018-08-25 22:56:31 +02:00
|
|
|
./codecov -x "${LLVM_COV:-llvm-cov} gcov" -Z
|
2016-02-18 15:40:13 +01:00
|
|
|
}
|