We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 78fe528 commit 82fe771Copy full SHA for 82fe771
travis.sh
@@ -35,7 +35,13 @@ function run_tests {
35
run_tests
36
# cross-test 32bit Linux from everywhere
37
MIRI_TEST_TARGET=i686-unknown-linux-gnu run_tests
38
+
39
if [ "$TRAVIS_OS_NAME" == linux ]; then
40
# cross-test 64bit macOS from Linux
41
FOREIGN_TARGET=x86_64-apple-darwin run_tests
42
+ # cross-test 32bit Windows from Linux
43
+ FOREIGN_TARGET=i686-pc-windows-msvc run_tests
44
+elif [ "$TRAVIS_OS_NAME" == osx ]; then
45
+ # cross-test 64bit Windows from macOS
46
+ FOREIGN_TARGET=x86_64-pc-windows-msvc run_tests
47
fi
0 commit comments