summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoreric <eric@efcs.ca>2023-11-18 03:40:13 -0500
committereric <eric@efcs.ca>2023-11-18 03:42:14 -0500
commitf8df86e34555b5947208d597013ba73e5757f335 (patch)
tree54ec8c8a2462665ca3950d285a5fe13a6f331d65
parent6da4ecdf9285225ccc8fa4441b7e9f65e8f4f49c (diff)
Change libc++ builder group name to match what I am using in the infra
Also change over to using group names instead of specific runner names. This will prevent future downtime.
-rw-r--r--.github/workflows/libcxx-build-and-test.yaml11
1 files changed, 7 insertions, 4 deletions
diff --git a/.github/workflows/libcxx-build-and-test.yaml b/.github/workflows/libcxx-build-and-test.yaml
index a649993c65dc..1245dfc09411 100644
--- a/.github/workflows/libcxx-build-and-test.yaml
+++ b/.github/workflows/libcxx-build-and-test.yaml
@@ -43,7 +43,8 @@ env:
jobs:
stage1:
- runs-on: libcxx-runners-16
+ runs-on:
+ group: libcxx-runners-16
continue-on-error: false
strategy:
fail-fast: true
@@ -80,7 +81,8 @@ jobs:
**/CMakeOutput.log
**/crash_diagnostics/*
stage2:
- runs-on: libcxx-runners-8
+ runs-on:
+ group: libcxx-runners-8
needs: [ stage1 ]
continue-on-error: false
strategy:
@@ -171,9 +173,10 @@ jobs:
std_modules: 'OFF'
# Use a larger machine for MSAN to avoid timeout and memory allocation issues.
- config: 'generic-msan'
- machine: libcxx-runners-30
+ machine: libcxx-runners-32
std_modules: 'OFF'
- runs-on: ${{ matrix.machine }}
+ runs-on:
+ group: ${{ matrix.machine }}
steps:
- uses: actions/checkout@v4
- name: ${{ matrix.config }}