From: Evgeny Vereshchagin Date: Mon, 24 Dec 2018 03:44:47 +0000 (+0100) Subject: travis: pass $TRAVIS when running the tests so that they can be skipped properly X-Git-Tag: v241-rc1~114^2~4 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c47bfb198a6132d5e0a2d90ea7ce8855fd793760;p=thirdparty%2Fsystemd.git travis: pass $TRAVIS when running the tests so that they can be skipped properly --- diff --git a/travis-ci/managers/debian.sh b/travis-ci/managers/debian.sh index 587049bfa7c..dbd12c4759b 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)