File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
.github/actions/setup-win-arm64 Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 2626 "--add", "Microsoft.VisualStudio.Component.VC.Tools.x86.x64", `
2727 "--add", "Microsoft.VisualStudio.Component.Windows11SDK.22000" `
2828 -NoNewWindow -Wait
29- Remove-Item .\vs_buildtools.exe
29+
3030
3131 - name : Install Git
3232 if : steps.cache-tools.outputs.cache-hit != 'true'
3535 $url = "https://github.com/git-for-windows/git/releases/download/v2.41.0.windows.1/Git-2.41.0-64-bit.exe"
3636 Invoke-WebRequest -Uri $url -OutFile git-installer.exe
3737 Start-Process -FilePath .\git-installer.exe -ArgumentList "/VERYSILENT", "/NORESTART" -Wait
38- Remove-Item .\git-installer.exe
38+
3939
4040 - name : Install Rust
4141 if : steps.cache-tools.outputs.cache-hit != 'true'
4444 $url = "https://static.rust-lang.org/rustup/dist/aarch64-pc-windows-msvc/rustup-init.exe"
4545 Invoke-WebRequest -Uri $url -OutFile rustup-init.exe
4646 .\rustup-init.exe -y --default-host aarch64-pc-windows-msvc
47- Remove-Item .\rustup-init.exe
47+
4848
4949 - name : Install NASM
5050 uses : ./.github/actions/install-nasm
You can’t perform that action at this time.
0 commit comments