Skip to content

Commit 5eaf603

Browse files
committed
Use ubuntu-latest for macOS result jobs
The result jobs in macOS workflows only check if other jobs failed (just runs `exit 1`). They don't need macOS runners. Using ubuntu-latest instead frees up macOS runner slots and starts faster due to shorter queue times.
1 parent cf77b53 commit 5eaf603

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/macos.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ jobs:
191191
result:
192192
if: ${{ always() }}
193193
name: ${{ github.workflow }} result
194-
runs-on: macos-latest
194+
runs-on: ubuntu-latest
195195
needs: [make]
196196
steps:
197197
- run: exit 1

.github/workflows/yjit-macos.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ jobs:
188188
result:
189189
if: ${{ always() }}
190190
name: ${{ github.workflow }} result
191-
runs-on: macos-14
191+
runs-on: ubuntu-latest
192192
needs: [make]
193193
steps:
194194
- name: ${{ github.workflow }} jobs have failed

.github/workflows/zjit-macos.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ jobs:
164164
result:
165165
if: ${{ always() }}
166166
name: ${{ github.workflow }} result
167-
runs-on: macos-14
167+
runs-on: ubuntu-latest
168168
needs: [make]
169169
steps:
170170
- run: exit 1

0 commit comments

Comments
 (0)