Skip to content

Commit 3e980be

Browse files
committed
fixup! .github/workflows/ci.yml: test Windows on ARM.
1 parent 9118518 commit 3e980be

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

.github/workflows/ci.yml

+15
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,8 @@ jobs:
4141
lscpu 2>/dev/null && echo --- || true
4242
sysctl hw 2>/dev/null && echo --- || true
4343
env | sort
44+
echo ---
45+
set
4446
4547
- name: Rust
4648
shell: bash
@@ -192,6 +194,19 @@ jobs:
192194
which clang && clang --version || true
193195
uname -a && echo ---
194196
env | sort
197+
echo ---
198+
set
199+
200+
- name: Rust
201+
shell: bash
202+
run: |
203+
if ! which cargo > /dev/null 2>&1; then
204+
curl -sSf -o rustup-init.exe https://static.rust-lang.org/rustup/dist/aarch64-pc-windows-msvc/rustup-init.exe
205+
./rustup-init.exe --profile minimal --no-modify-path -y
206+
export PATH=$HOME/.cargo/bin:$PATH
207+
which cargo
208+
cargo version
209+
fi
195210
196211
- name: Test
197212
shell: bash

0 commit comments

Comments
 (0)