Skip to content

Commit c86afc4

Browse files
committed
[libc++][WIP] Try to target a runner group directly
1 parent 44adc24 commit c86afc4

File tree

1 file changed

+12
-9
lines changed

1 file changed

+12
-9
lines changed

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

Lines changed: 12 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,8 @@ env:
4949
jobs:
5050
stage1:
5151
if: github.repository_owner == 'llvm'
52-
runs-on: libcxx-runners-set
52+
runs-on:
53+
group: fozzie-runners-1
5354
container: ghcr.io/libcxx/actions-builder:testing-2024-09-21
5455
continue-on-error: false
5556
strategy:
@@ -86,7 +87,8 @@ jobs:
8687
**/crash_diagnostics/*
8788
stage2:
8889
if: github.repository_owner == 'llvm'
89-
runs-on: libcxx-runners-set
90+
runs-on:
91+
group: fozzie-runners-1
9092
container: ghcr.io/libcxx/actions-builder:testing-2024-09-21
9193
needs: [ stage1 ]
9294
continue-on-error: false
@@ -161,20 +163,21 @@ jobs:
161163
'generic-static',
162164
'bootstrapping-build'
163165
]
164-
machine: [ 'libcxx-runners-set' ]
166+
machine: [ 'fozzie-runners-1' ]
165167
include:
166168
- config: 'generic-cxx26'
167-
machine: libcxx-runners-set
169+
machine: fozzie-runners-1
168170
- config: 'generic-asan'
169-
machine: libcxx-runners-set
171+
machine: fozzie-runners-1
170172
- config: 'generic-tsan'
171-
machine: libcxx-runners-set
173+
machine: fozzie-runners-1
172174
- config: 'generic-ubsan'
173-
machine: libcxx-runners-set
175+
machine: fozzie-runners-1
174176
# Use a larger machine for MSAN to avoid timeout and memory allocation issues.
175177
- config: 'generic-msan'
176-
machine: libcxx-runners-set
177-
runs-on: ${{ matrix.machine }}
178+
machine: fozzie-runners-1
179+
runs-on:
180+
group: ${{ matrix.machine }}
178181
container: ghcr.io/libcxx/actions-builder:testing-2024-09-21
179182
steps:
180183
- uses: actions/checkout@v4

0 commit comments

Comments
 (0)