From 72dcad6f020363237bdcd05b3f26f7b67fa9f162 Mon Sep 17 00:00:00 2001 From: Andrew Kelley Date: Sun, 16 Apr 2023 23:48:42 -0700 Subject: [PATCH] Revert "ci: let's not skip non native tests on macos!" This reverts commit a34752c941c81e600c56670abb612fc86d0a2b73. With #15277 merged, the macOS CI will still run the self-hosted x86_64 tests even with -Dskip-non-native. This was the main motivation for the commit. It would be nice to keep this flag enabled, however, we don't have enough CI computing power, and the macOS CI lags behind with these extra tests enabled. --- ci/x86_64-macos-debug.sh | 1 + ci/x86_64-macos-release.sh | 1 + 2 files changed, 2 insertions(+) diff --git a/ci/x86_64-macos-debug.sh b/ci/x86_64-macos-debug.sh index cbfece9dd9..d1e86123ed 100755 --- a/ci/x86_64-macos-debug.sh +++ b/ci/x86_64-macos-debug.sh @@ -51,6 +51,7 @@ stage3/bin/zig build test docs \ --zig-lib-dir "$(pwd)/../lib" \ -Denable-macos-sdk \ -Dstatic-llvm \ + -Dskip-non-native \ --search-prefix "$PREFIX" # Produce the experimental std lib documentation. diff --git a/ci/x86_64-macos-release.sh b/ci/x86_64-macos-release.sh index 17a5e43bb0..1dd17943c3 100755 --- a/ci/x86_64-macos-release.sh +++ b/ci/x86_64-macos-release.sh @@ -51,6 +51,7 @@ stage3/bin/zig build test docs \ --zig-lib-dir "$(pwd)/../lib" \ -Denable-macos-sdk \ -Dstatic-llvm \ + -Dskip-non-native \ --search-prefix "$PREFIX" # Produce the experimental std lib documentation.