make sure CI fails when we do not recognize the platform

This commit is contained in:
Ralf Jung 2020-05-21 11:30:37 +02:00
parent b71fea710c
commit c4c7463aa5

3
ci.sh
View File

@ -48,4 +48,7 @@ elif [ "${TRAVIS_OS_NAME:-}" == osx ]; then
elif [ "${CI_WINDOWS:-}" == True ]; then
MIRI_TEST_TARGET=x86_64-unknown-linux-gnu run_tests
MIRI_TEST_TARGET=x86_64-apple-darwin run_tests
else
echo "FATAL: unknown CI platform"
exit 1
fi