Skip to content

Commit 0cf9fc0

Browse files
committed
ci: run tests on arm64
1 parent 66c057b commit 0cf9fc0

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

.github/workflows/test.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,10 @@ defaults:
2121
jobs:
2222
unit-test:
2323
if: github.repository_owner == 'getsentry'
24-
runs-on: ubuntu-22.04
24+
runs-on: ${{ matrix.os }}
25+
strategy:
26+
matrix:
27+
os: [ubuntu-24.04, ubuntu-24.04-arm64]
2528
name: "unit tests"
2629
steps:
2730
- name: Checkout
@@ -35,7 +38,10 @@ jobs:
3538

3639
integration-test:
3740
if: github.repository_owner == 'getsentry'
38-
runs-on: ubuntu-22.04
41+
runs-on: ${{ matrix.os }}
42+
strategy:
43+
matrix:
44+
os: [ubuntu-24.04, ubuntu-24.04-arm64]
3945
name: integration test
4046
env:
4147
REPORT_SELF_HOSTED_ISSUES: 0

0 commit comments

Comments
 (0)