diff options
author | Evgeny Vereshchagin <evvers@ya.ru> | 2018-12-24 04:44:47 +0100 |
---|---|---|
committer | Evgeny Vereshchagin <evvers@ya.ru> | 2018-12-29 19:14:35 +0100 |
commit | c47bfb198a6132d5e0a2d90ea7ce8855fd793760 (patch) | |
tree | 794a2d65b85b6c2921240125575afa52223801ea /travis-ci | |
parent | travis: merge RUN_CLANG into RUN (diff) | |
download | systemd-c47bfb198a6132d5e0a2d90ea7ce8855fd793760.tar.xz systemd-c47bfb198a6132d5e0a2d90ea7ce8855fd793760.zip |
travis: pass $TRAVIS when running the tests so that they can be skipped properly
Diffstat (limited to 'travis-ci')
-rwxr-xr-x | travis-ci/managers/debian.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/travis-ci/managers/debian.sh b/travis-ci/managers/debian.sh index 587049bfa7..dbd12c4759 100755 --- a/travis-ci/managers/debian.sh +++ b/travis-ci/managers/debian.sh @@ -46,7 +46,7 @@ for phase in "${PHASES[@]}"; do fi docker exec $ENV_VARS -it $CONT_NAME meson --werror -Dtests=unsafe -Dslow-tests=true -Dsplit-usr=true build $DOCKER_EXEC ninja -v -C build - $DOCKER_EXEC ninja -C build test + docker exec -e "TRAVIS=$TRAVIS" -it $CONT_NAME ninja -C build test $DOCKER_EXEC tools/check-directives.sh ;; RUN_ASAN|RUN_CLANG_ASAN) |