Skip to content

Commit 71265d3

Browse files
committed
Add Ubuntu 24.04 ARM runner to test matrix
1 parent ae3551f commit 71265d3

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/tests.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
test-bot:
99
strategy:
1010
matrix:
11-
os: [ubuntu-22.04, ubuntu-24.04, macos-14, macos-15]
11+
os: [ubuntu-24.04, ubuntu-24.04-arm, macos-14, macos-15]
1212
runs-on: ${{ matrix.os }}
1313
permissions:
1414
actions: read
@@ -18,6 +18,9 @@ jobs:
1818
env:
1919
HOMEBREW_GITHUB_API_TOKEN: ${{ secrets.HOMEBREW_API_TOKEN }}
2020
steps:
21+
- if: ${{ matrix.os == 'ubuntu-24.04-arm' }}
22+
run: /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
23+
2124
- name: Set up Homebrew
2225
id: set-up-homebrew
2326
uses: Homebrew/actions/setup-homebrew@main
@@ -34,7 +37,8 @@ jobs:
3437

3538
- run: brew test-bot --only-cleanup-before
3639

37-
- run: brew test-bot --only-setup
40+
- if: ${{ matrix.os != 'ubuntu-24.04-arm' }}
41+
run: brew test-bot --only-setup
3842

3943
- run: brew test-bot --only-tap-syntax
4044

0 commit comments

Comments
 (0)