| ... | @@ -7,10 +7,11 @@ INSTALL_PREFIX="$DRONE_WORKSPACE/stage3-release" | ... | @@ -7,10 +7,11 @@ INSTALL_PREFIX="$DRONE_WORKSPACE/stage3-release" |
| 7 | ZIG="$INSTALL_PREFIX/bin/zig" | 7 | ZIG="$INSTALL_PREFIX/bin/zig" |
| 8 | export ZIG_GLOBAL_CACHE_DIR="$DRONE_WORKSPACE/zig-cache" | 8 | export ZIG_GLOBAL_CACHE_DIR="$DRONE_WORKSPACE/zig-cache" |
| 9 | | 9 | |
| 10 | # Empirically, this takes about 55 minutes on the CI, and is the bottleneck | 10 | $ZIG build test-std \ |
| 11 | # causing timeouts. So this is disabled in favor of running a smaller set | 11 | --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-native | 13 | -Dskip-release-safe \ |
| 14 | | 14 | -Dskip-release-fast \ |
| 15 | $ZIG test lib/std/std.zig -OReleaseSmall --zig-lib-dir lib | 15 | -Dskip-non-native \ |
| 16 | $ZIG test lib/std/std.zig -OReleaseSmall -lc --zig-lib-dir lib | 16 | -Dskip-single-threaded \ |
| | 17 | -Dskip-libc |