Skip to content

Commit 1e21db8

Browse files
committed
run tests on both amd64 and arm64
1 parent 19dfa17 commit 1e21db8

File tree

2 files changed

+16
-2
lines changed

2 files changed

+16
-2
lines changed

.github/workflows/e2e.yaml

+8-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,14 @@ concurrency:
1414

1515
jobs:
1616
regular-path:
17-
runs-on: ubuntu-latest
17+
strategy:
18+
matrix:
19+
include:
20+
- arch: amd64
21+
runner: ubuntu-latest
22+
- arch: arm64
23+
runner: github-hosted-ubuntu-arm64
24+
runs-on: ${{ matrix.runner }}
1825
steps:
1926
- name: Checkout code
2027
uses: actions/checkout@v4

.github/workflows/test.yml

+8-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,14 @@ jobs:
3737
- name: Check generated files
3838
run: make generate check/unstaged-changes
3939
test:
40-
runs-on: ubuntu-latest
40+
strategy:
41+
matrix:
42+
include:
43+
- arch: amd64
44+
runner: ubuntu-latest
45+
- arch: arm64
46+
runner: github-hosted-ubuntu-arm64
47+
runs-on: ${{ matrix.runner }}
4148
steps:
4249
- name: Checkout code
4350
uses: actions/checkout@v4

0 commit comments

Comments
 (0)