summaryrefslogtreecommitdiff
path: root/travis-ci
diff options
context:
space:
mode:
authorEvgeny Vereshchagin <evvers@ya.ru>2018-12-24 04:44:47 +0100
committerEvgeny Vereshchagin <evvers@ya.ru>2018-12-29 19:14:35 +0100
commitc47bfb198a6132d5e0a2d90ea7ce8855fd793760 (patch)
tree794a2d65b85b6c2921240125575afa52223801ea /travis-ci
parent8934737154a7d8a6f9809ac33f634f5b80443bd9 (diff)
downloadsystemd-c47bfb198a6132d5e0a2d90ea7ce8855fd793760.tar.gz
travis: pass $TRAVIS when running the tests so that they can be skipped properly
Diffstat (limited to 'travis-ci')
-rwxr-xr-xtravis-ci/managers/debian.sh2
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)