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.
This commit is contained in:
Andrew Kelley 2019-12-12 15:11:21 -05:00
parent c759a77aa0
commit 81f1f72197
No known key found for this signature in database
GPG Key ID: 7C5F548F728501A9

View File

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