authorgravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2022-08-25 15:23:01-07:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2022-08-25 15:23:01-07:00
log9d231c4991ec1e33c3f4a96e5941848705ef5050
tree25474cbdbcbbdd69f77efa5cfce25d4573dd4af6
parentd5233ee85ce13cba3dd03e4c0c938cee193b9b19

CI: drone: reduce duration of the bottleneck

Empirically, the ReleaseSmall std lib tsets take about 55 minutes on the CI, and is the bottleneck causing timeouts. So this commit disables full coverage in favor of running a smaller set of ReleaseSmall std lib tests.

1 files changed, 7 insertions(+), 1 deletions(-)

ci/drone/test_linux_std_ReleaseSmall+7-1
...@@ -2,4 +2,10 @@...@@ -2,4 +2,10 @@
22
3. ./ci/drone/linux_script_base3. ./ci/drone/linux_script_base
44
5./build/zig build test-std -Dskip-debug -Dskip-release-safe -Dskip-release-fast -Dskip-non-native5# Empirically, this takes about 55 minutes on the CI, and is the bottleneck
6# causing timeouts. So this is disabled in favor of running a smaller set
7# of ReleaseSmall std lib tests.
8# ./build/zig build test-std -Dskip-debug -Dskip-release-safe -Dskip-release-fast -Dskip-non-native
9
10./build/zig test lib/std/std.zig -OReleaseSmall
11./build/zig test lib/std/std.zig -OReleaseSmall -lc