Skip to content

Commit 9118518

Browse files
committed
.github/workflows/ci.yml: test Windows on ARM.
1 parent 35844fe commit 9118518

File tree

1 file changed

+14
-8
lines changed

1 file changed

+14
-8
lines changed

.github/workflows/ci.yml

+14-8
Original file line numberDiff line numberDiff line change
@@ -175,21 +175,27 @@ jobs:
175175
if-no-files-found: ignore
176176

177177
cargo-test-windows-on-arm:
178-
runs-on: ubuntu-latest
178+
runs-on: windows-11-arm
179179
needs: rust-n-go
180180

181181
steps:
182182
- uses: actions/download-artifact@v4
183183
with:
184184
name: blst-arm-test.exe
185185

186-
- name: wine-arm64
187-
uses: addnab/docker-run-action@v3
188-
with:
189-
registry: https://index.docker.io/v1/
190-
image: linaro/wine-arm64
191-
options: --volume ${{ github.workspace }}:/blst --network=none
192-
run: wine-arm64 cmd /c "cd \ && \blst\blst-arm-test.exe"
186+
- name: Environment
187+
shell: bash
188+
run: |
189+
which cargo && cargo version || true
190+
which go && go version || true
191+
which gcc && gcc --version || true
192+
which clang && clang --version || true
193+
uname -a && echo ---
194+
env | sort
195+
196+
- name: Test
197+
shell: bash
198+
run: ./blst-arm-test.exe
193199

194200
misc-ubuntu-latest:
195201
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)