diff options
author | Evgeny Vereshchagin <evvers@ya.ru> | 2018-12-01 00:45:35 +0100 |
---|---|---|
committer | Evgeny Vereshchagin <evvers@ya.ru> | 2018-12-01 04:53:11 +0100 |
commit | 37cbcd4642a8f38e89a3a80c4b8b91cb39400aaa (patch) | |
tree | 6318a089d3ad03ba02d58107d152aa1401ee077a /travis-ci/managers/fedora.sh | |
parent | f5e75e08b04485ed2db4af89fd5f2a707780bbf3 (diff) | |
download | systemd-37cbcd4642a8f38e89a3a80c4b8b91cb39400aaa.tar.gz |
travis: also build systemd with clang
Diffstat (limited to 'travis-ci/managers/fedora.sh')
-rwxr-xr-x | travis-ci/managers/fedora.sh | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/travis-ci/managers/fedora.sh b/travis-ci/managers/fedora.sh index b3ee0281a6..1faf5b9225 100755 --- a/travis-ci/managers/fedora.sh +++ b/travis-ci/managers/fedora.sh @@ -15,7 +15,7 @@ CONT_NAME="${CONT_NAME:-fedora-$FEDORA_RELEASE-$RANDOM}" DOCKER_EXEC="${DOCKER_EXEC:-docker exec -it $CONT_NAME}" DOCKER_RUN="${DOCKER_RUN:-docker run}" REPO_ROOT="${REPO_ROOT:-$PWD}" -ADDITIONAL_DEPS=(dnf-plugins-core python2 iputils hostname libasan python3-pyparsing python3-evdev libubsan) +ADDITIONAL_DEPS=(dnf-plugins-core python2 iputils hostname libasan python3-pyparsing python3-evdev libubsan clang) function info() { echo -e "\033[33;1m$1\033[0m" @@ -52,6 +52,11 @@ for phase in "${PHASES[@]}"; do $DOCKER_EXEC ninja -C build test $DOCKER_EXEC tools/check-directives.sh ;; + RUN_CLANG) + docker exec -e CC=clang -e CXX=clang++ -it $CONT_NAME meson --werror -Dtests=unsafe -Dslow-tests=true build + $DOCKER_EXEC ninja -v -C build + $DOCKER_EXEC ninja -C build test + ;; RUN_ASAN) $DOCKER_EXEC git clean -dxff $DOCKER_EXEC meson --werror -Dtests=unsafe -Db_sanitize=address,undefined build |