We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aa4d2e5 commit 933500aCopy full SHA for 933500a
.github/workflows/release.yml
@@ -557,7 +557,8 @@ jobs:
557
write-host "Downloading AMD HIP SDK Installer"
558
Invoke-WebRequest -Uri "https://download.amd.com/developer/eula/rocm-hub/AMD-Software-PRO-Edition-24.Q3-WinSvr2022-For-HIP.exe" -OutFile "${env:RUNNER_TEMP}\rocm-install.exe"
559
write-host "Installing AMD HIP SDK"
560
- Start-Process "${env:RUNNER_TEMP}\rocm-install.exe" -ArgumentList '-install' -NoNewWindow -Wait
+ $proc = Start-Process "${env:RUNNER_TEMP}\rocm-install.exe" -ArgumentList '-install' -NoNewWindow -PassThru
561
+ $proc.WaitForExit(600000)
562
write-host "Completed AMD HIP SDK installation"
563
564
- name: Verify ROCm
0 commit comments