We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4e8ee62 commit cbf57a2Copy full SHA for cbf57a2
.github/workflows/ci.yml
@@ -19,6 +19,14 @@ jobs:
19
20
steps:
21
- uses: actions/checkout@v3
22
+ - name: Install Rust on Windows ARM
23
+ if: matrix.os == 'windows-11-arm'
24
+ shell: powershell
25
+ run: |
26
+ Invoke-WebRequest -Uri https://win.rustup.rs/aarch64 -OutFile rustup-init.exe
27
+ ./rustup-init.exe -y
28
+ $env:Path += ";$env:USERPROFILE\.cargo\bin"
29
+ echo "$env:USERPROFILE\.cargo\bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
30
- name: Install uniffi-bindgen-cs
31
if: matrix.os == 'ubuntu-latest'
32
run: cargo install uniffi-bindgen-cs --git https://github.com/NordSecurity/uniffi-bindgen-cs --tag v0.9.1+v0.28.3
0 commit comments