Skip to content

Commit 7bf69d9

Browse files
committed
Fix choco install
1 parent 22aa477 commit 7bf69d9

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

.github/workflows/windows.yml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -36,17 +36,14 @@ jobs:
3636
iex ((New-Object System.Net.WebClient).DownloadString('https://community.chocolatey.org/install.ps1'))
3737
choco install -y --no-progress git
3838
echo "C:\Program Files\Git\cmd" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
39+
choco install -y --no-progress rustup.install
40+
rustup toolchain install nightly-2024-05-18-aarch64-pc-windows-msvc
41+
rustup component add rust-src --toolchain nightly-2024-05-18-aarch64-pc-windows-msvc
3942
4043
- uses: actions/checkout@v3
4144
with:
4245
submodules: true
4346

44-
- name: Install Rust
45-
run: |
46-
choco install -y --no-progress rustup.install
47-
rustup toolchain install nightly-2024-05-18-aarch64-pc-windows-msvc
48-
rustup component add rust-src --toolchain nightly-2024-05-18-aarch64-pc-windows-msvc
49-
5047
- name: Build binaries
5148
run: sh tool/build_windows.sh aarch64
5249

0 commit comments

Comments
 (0)