We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c718415 commit 9f6c358Copy full SHA for 9f6c358
.github/workflows/zig-test.yml
@@ -135,3 +135,27 @@ jobs:
135
136
- name: zig build test
137
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
157
+ os: ${{env.OS}}
158
+ arch: ${{env.ARCH}}
159
160
+ - name: zig build test
161
+ run: zig build test -Dengine=v8
0 commit comments