Commit 81f1f72197

Andrew Kelley <andrew@ziglang.org>
2019-12-12 21:11:21
ci: skip non native tests for aarch64
We've been hitting timeouts on this service. Once zig build gains parallel processing support, we can probably enable more tests.
1 parent c759a77
Changed files (1)
ci
ci/drone/linux_script
@@ -20,7 +20,7 @@ cd build
 cmake .. -DCMAKE_BUILD_TYPE=Release "-DCMAKE_INSTALL_PREFIX=$DISTDIR" -DZIG_STATIC=ON -DCMAKE_PREFIX_PATH=/deps/local
 
 make -j$(nproc) install
-./zig build test-fmt test-behavior test-std test-compiler-rt -Dskip-release
+./zig build test-fmt test-behavior test-std test-compiler-rt -Dskip-release -Dskip-non-native
 # TODO test-compare-output is hitting https://github.com/ziglang/zig/issues/3526
 ./zig build test-standalone test-stack-traces
 # TODO test-cli is hitting https://github.com/ziglang/zig/issues/3526