Skip to content

Commit f8df86e

Browse files
committed
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.
1 parent 6da4ecd commit f8df86e

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

.github/workflows/libcxx-build-and-test.yaml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,8 @@ env:
4343

4444
jobs:
4545
stage1:
46-
runs-on: libcxx-runners-16
46+
runs-on:
47+
group: libcxx-runners-16
4748
continue-on-error: false
4849
strategy:
4950
fail-fast: true
@@ -80,7 +81,8 @@ jobs:
8081
**/CMakeOutput.log
8182
**/crash_diagnostics/*
8283
stage2:
83-
runs-on: libcxx-runners-8
84+
runs-on:
85+
group: libcxx-runners-8
8486
needs: [ stage1 ]
8587
continue-on-error: false
8688
strategy:
@@ -171,9 +173,10 @@ jobs:
171173
std_modules: 'OFF'
172174
# Use a larger machine for MSAN to avoid timeout and memory allocation issues.
173175
- config: 'generic-msan'
174-
machine: libcxx-runners-30
176+
machine: libcxx-runners-32
175177
std_modules: 'OFF'
176-
runs-on: ${{ matrix.machine }}
178+
runs-on:
179+
group: ${{ matrix.machine }}
177180
steps:
178181
- uses: actions/checkout@v4
179182
- name: ${{ matrix.config }}

0 commit comments

Comments
 (0)