Skip to content

Commit

Permalink
chore: use nushell in ci
Browse files Browse the repository at this point in the history
  • Loading branch information
oberrich committed Jan 9, 2025
1 parent bbf5076 commit bc3b3bf
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,17 +58,17 @@ jobs:
run: |
choco install visualstudio2022buildtools -y --no-progress --package-parameters "--add Microsoft.VisualStudio.Component.VC.Tools.ARM64 --add Microsoft.VisualStudio.Component.Windows11SDK.22621"
echo "Visual Studio 2022 Build Tools (aarch64) installation completed."
run-external $"($env.RUNNER_TEMP)/LLVM-19.1.5-woa64.exe" "/S" e>| split chars
run-external "${{github.workspace}}/LLVM-19.1.5-woa64.exe" "/S" e>| split chars
echo "LLVM 19.1.5 (aarch64) installation completed."
run-external $"($env.RUNNER_TEMP)/Git-2.48.0-rc1-arm64.exe" "/VERYSILENT" e>| split chars
run-external "${{github.workspace}}/Git-2.48.0-rc1-arm64.exe" "/VERYSILENT" e>| split chars
for path in ['C:/Program Files/Git/cmd', 'C:/Program Files/Git/bin'] {
$"{$path}" | save $env.GITHUB_PATH --append
}
echo "Git 2.48.0-rc1 (aarch64) installation completed."
http get "https://win.rustup.rs/aarch64" | save $"($env.RUNNER_TEMP)/rustup-init.exe"
run-external $"($env.RUNNER_TEMP)/rustup-init.exe" "--default-host" "aarch64-pc-windows-msvc" "--default-toolchain" "nightly" "-y" e>| split chars
http get "https://win.rustup.rs/aarch64" | save "${{github.workspace}}/rustup-init.exe"
run-external "${{github.workspace}}/rustup-init.exe" "--default-host" "aarch64-pc-windows-msvc" "--default-toolchain" "nightly" "-y" e>| split chars
echo "Rust (nightly, aarch64) installation completed."
- name: Install Rust
Expand Down

0 comments on commit bc3b3bf

Please sign in to comment.