We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9118518 commit 3e980beCopy full SHA for 3e980be
.github/workflows/ci.yml
@@ -41,6 +41,8 @@ jobs:
41
lscpu 2>/dev/null && echo --- || true
42
sysctl hw 2>/dev/null && echo --- || true
43
env | sort
44
+ echo ---
45
+ set
46
47
- name: Rust
48
shell: bash
@@ -192,6 +194,19 @@ jobs:
192
194
which clang && clang --version || true
193
195
uname -a && echo ---
196
197
198
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
210
211
- name: Test
212
0 commit comments