Skip to content

Commit 9f6c358

Browse files
committed
ci: add linux aarch64 test
1 parent c718415 commit 9f6c358

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

.github/workflows/zig-test.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -135,3 +135,27 @@ jobs:
135135

136136
- name: zig build test
137137
run: zig build test -Dengine=v8
138+
139+
zig-test-linux-aarch64:
140+
env:
141+
ARCH: aarch64
142+
OS: linux
143+
144+
# Don't run the CI with draft PR.
145+
if: github.event.pull_request.draft == false
146+
147+
runs-on: ubuntu-24.04-arm
148+
149+
steps:
150+
- uses: actions/checkout@v4
151+
with:
152+
fetch-depth: 0
153+
submodules: true
154+
155+
- uses: ./.github/actions/install
156+
with:
157+
os: ${{env.OS}}
158+
arch: ${{env.ARCH}}
159+
160+
- name: zig build test
161+
run: zig build test -Dengine=v8

0 commit comments

Comments
 (0)