travis: pass $TRAVIS when running the tests so that they can be skipped properly

This commit is contained in:
Evgeny Vereshchagin 2018-12-24 04:44:47 +01:00
parent 8934737154
commit c47bfb198a

View File

@ -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)