[llvm] [libc++] Run macOS jobs after the Stage 2 CI (PR #141816)

Louis Dionne via llvm-commits llvm-commits at lists.llvm.org
Wed May 28 11:32:21 PDT 2025


https://github.com/ldionne updated https://github.com/llvm/llvm-project/pull/141816

>From 4d63d0a3d51fee517ee81e92b6d1fd00ef8ab7eb Mon Sep 17 00:00:00 2001
From: Louis Dionne <ldionne.2 at gmail.com>
Date: Wed, 28 May 2025 14:19:09 -0400
Subject: [PATCH] [libc++] Run macOS jobs after the Stage 2 CI

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.
---
 .github/workflows/libcxx-build-and-test.yaml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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:



More information about the llvm-commits mailing list