[llvm] [libc++] Run macOS jobs after the Stage 2 CI (PR #141816)
via llvm-commits
llvm-commits at lists.llvm.org
Wed May 28 11:22:34 PDT 2025
llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-libcxx
Author: Louis Dionne (ldionne)
<details>
<summary>Changes</summary>
Our CI is currently having major difficulties, which causes the Stage 3 CI to basically never succeed. As a result, our macOS CI jobs have not been running recently. This patch gates the macOS CI jobs on Stage 2 instead of Stage 3 so that they actually run sometimes.
---
Full diff: https://github.com/llvm/llvm-project/pull/141816.diff
1 Files Affected:
- (modified) .github/workflows/libcxx-build-and-test.yaml (+1-1)
``````````diff
diff --git a/.github/workflows/libcxx-build-and-test.yaml b/.github/workflows/libcxx-build-and-test.yaml
index d05e6a559e28d..80f2432b78dea 100644
--- a/.github/workflows/libcxx-build-and-test.yaml
+++ b/.github/workflows/libcxx-build-and-test.yaml
@@ -184,7 +184,7 @@ jobs:
**/crash_diagnostics/*
macos:
- needs: [ stage3 ]
+ needs: [ stage2 ]
strategy:
fail-fast: false
matrix:
``````````
</details>
https://github.com/llvm/llvm-project/pull/141816
More information about the llvm-commits
mailing list