From 10b8c4d8f02c085090b07f3709de2d70d3b85cf0 Mon Sep 17 00:00:00 2001 From: Andrew Kelley Date: Sat, 22 Oct 2022 09:19:05 -0700 Subject: [PATCH] CI: drone: skip some ReleaseFast and ReleaseSmall std lib tests Follow-up commit to b9103bd514e46a43ab0f3dce397af2ea8a789fda. --- ci/drone/test_linux_std_ReleaseFast | 3 ++- ci/drone/test_linux_std_ReleaseSmall | 15 ++++++++------- 2 files changed, 10 insertions(+), 8 deletions(-) diff --git a/ci/drone/test_linux_std_ReleaseFast b/ci/drone/test_linux_std_ReleaseFast index e42f4b6247..2c6952eb36 100755 --- a/ci/drone/test_linux_std_ReleaseFast +++ b/ci/drone/test_linux_std_ReleaseFast @@ -13,4 +13,5 @@ $ZIG build test-std \ -Dskip-release-safe \ -Dskip-release-small \ -Dskip-non-native \ - -Dskip-single-threaded + -Dskip-single-threaded \ + -Dskip-libc diff --git a/ci/drone/test_linux_std_ReleaseSmall b/ci/drone/test_linux_std_ReleaseSmall index 5b7821b4d9..a913f69ed2 100755 --- a/ci/drone/test_linux_std_ReleaseSmall +++ b/ci/drone/test_linux_std_ReleaseSmall @@ -7,10 +7,11 @@ INSTALL_PREFIX="$DRONE_WORKSPACE/stage3-release" ZIG="$INSTALL_PREFIX/bin/zig" export ZIG_GLOBAL_CACHE_DIR="$DRONE_WORKSPACE/zig-cache" -# Empirically, this takes about 55 minutes on the CI, and is the bottleneck -# causing timeouts. So this is disabled in favor of running a smaller set -# of ReleaseSmall std lib tests. -# $ZIG build test-std -Dskip-debug -Dskip-release-safe -Dskip-release-fast -Dskip-non-native - -$ZIG test lib/std/std.zig -OReleaseSmall --zig-lib-dir lib -$ZIG test lib/std/std.zig -OReleaseSmall -lc --zig-lib-dir lib +$ZIG build test-std \ + --zig-lib-dir lib \ + -Dskip-debug \ + -Dskip-release-safe \ + -Dskip-release-fast \ + -Dskip-non-native \ + -Dskip-single-threaded \ + -Dskip-libc