Skip to content

Commit

Permalink
Update rust.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
oberrich authored Jan 3, 2025
1 parent fd1b41e commit ce127e4
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,14 @@ jobs:
Invoke-WebRequest -Uri "https://aka.ms/vs/17/release/vs_community.exe" -OutFile "$env:RUNNER_TEMP\vs_community.exe"
Start-Process -FilePath "$env:RUNNER_TEMP\vs_community.exe" -ArgumentList "--quiet --wait --add Microsoft.VisualStudio.Workload.UniversalBuildTools --includeRecommended --norestart" -NoNewWindow -Wait
Write-Host "Visual Studio installation complete."
- name: Download and Install LLVM
run: |
$LLVMInstallerUrl = "https://github.com/llvm/llvm-project/releases/download/llvmorg-18.1.8/LLVM-18.1.8-woa64.exe"
$InstallerPath = "$env:RUNNER_TEMP\LLVM-18.1.8-woa64.exe"
Invoke-WebRequest -Uri $LLVMInstallerUrl -OutFile $InstallerPath
Start-Process -Wait -FilePath $InstallerPath -ArgumentList "/quiet"
- name: Verify LLVM installation
run: llvm --version
- name: Install Rust (nightly, aarch64)
if: matrix.os == 'windows-11-preview_aarch64'
run: |
Expand Down

0 comments on commit ce127e4

Please sign in to comment.