authorgravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2022-10-22 09:19:05-07:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2022-10-22 09:19:05-07:00
log10b8c4d8f02c085090b07f3709de2d70d3b85cf0
tree0adaa9eb19fc6983e2679be7c9e25ce0ce04bc57
parentcdf7e7dba9cbe80d71cc094b257447e5a9f70767

CI: drone: skip some ReleaseFast and ReleaseSmall std lib tests

Follow-up commit to b9103bd514e46a43ab0f3dce397af2ea8a789fda.

2 files changed, 10 insertions(+), 8 deletions(-)

ci/drone/test_linux_std_ReleaseFast+2-1
...@@ -13,4 +13,5 @@ $ZIG build test-std \...@@ -13,4 +13,5 @@ $ZIG build test-std \
13 -Dskip-release-safe \13 -Dskip-release-safe \
14 -Dskip-release-small \14 -Dskip-release-small \
15 -Dskip-non-native \15 -Dskip-non-native \
16 -Dskip-single-threaded16 -Dskip-single-threaded \
17 -Dskip-libc
ci/drone/test_linux_std_ReleaseSmall+8-7
...@@ -7,10 +7,11 @@ INSTALL_PREFIX="$DRONE_WORKSPACE/stage3-release"...@@ -7,10 +7,11 @@ INSTALL_PREFIX="$DRONE_WORKSPACE/stage3-release"
7ZIG="$INSTALL_PREFIX/bin/zig"7ZIG="$INSTALL_PREFIX/bin/zig"
8export ZIG_GLOBAL_CACHE_DIR="$DRONE_WORKSPACE/zig-cache"8export ZIG_GLOBAL_CACHE_DIR="$DRONE_WORKSPACE/zig-cache"
99
10# Empirically, this takes about 55 minutes on the CI, and is the bottleneck10$ZIG build test-std \
11# causing timeouts. So this is disabled in favor of running a smaller set11 --zig-lib-dir lib \
12# of ReleaseSmall std lib tests.12 -Dskip-debug \
13# $ZIG build test-std -Dskip-debug -Dskip-release-safe -Dskip-release-fast -Dskip-non-native13 -Dskip-release-safe \
1414 -Dskip-release-fast \
15$ZIG test lib/std/std.zig -OReleaseSmall --zig-lib-dir lib15 -Dskip-non-native \
16$ZIG test lib/std/std.zig -OReleaseSmall -lc --zig-lib-dir lib16 -Dskip-single-threaded \
17 -Dskip-libc