blob: bf1c01fd5636bf16a575449905496471f6dbcad9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
#!/bin/bash -e
. "${0%/*}"/lib.sh
# We have to do this by hand rather than use the coverity addon because of
# matrix explosion: https://github.com/travis-ci/travis-ci/issues/1975
# We also do it by hand because when we're throttled, the addon will exit
# the build immediately and skip the main script!
coverity_scan() {
local reason
[[ ${TRAVIS_JOB_NUMBER} != *.1 ]] && reason="not first build job"
[[ -n ${TRAVIS_TAG} ]] && reason="git tag"
[[ ${TRAVIS_PULL_REQUEST} == "true" ]] && reason="pull request"
if [[ -n ${reason} ]] ; then
echo "Skipping coverity scan due to: ${reason}"
return
fi
export COVERITY_SCAN_PROJECT_NAME="${TRAVIS_REPO_SLUG}"
export COVERITY_SCAN_NOTIFICATION_EMAIL="grobian@gentoo.org"
export COVERITY_SCAN_BUILD_COMMAND="make -j${ncpus}"
export COVERITY_SCAN_BUILD_COMMAND_PREPEND="git clean -q -x -d -f; git checkout -f"
export COVERITY_SCAN_BRANCH_PATTERN="master"
curl -s "https://scan.coverity.com/scripts/travisci_build_coverity_scan.sh" | bash || :
}
main() {
# For local deps like iniparser.
export CPPFLAGS="-I${PWD}/../sysroot"
export LDFLAGS="-L${PWD}/../sysroot"
v ./configure
# Standard optimized build.
m
m check
# LSan needs sudo, which we don't use at the moment
# Debug build w/ASAN and such enabled.
#m debug
#m check
# Do scans last as they like to dirty the tree and some tests
# expect a clean tree (like code style checks).
v --fold="coverity_scan" coverity_scan
}
main "$@"
|