Skip to content

Commit 933500a

Browse files
authored
apply fix to release as well
1 parent aa4d2e5 commit 933500a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -557,7 +557,8 @@ jobs:
557557
write-host "Downloading AMD HIP SDK Installer"
558558
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"
559559
write-host "Installing AMD HIP SDK"
560-
Start-Process "${env:RUNNER_TEMP}\rocm-install.exe" -ArgumentList '-install' -NoNewWindow -Wait
560+
$proc = Start-Process "${env:RUNNER_TEMP}\rocm-install.exe" -ArgumentList '-install' -NoNewWindow -PassThru
561+
$proc.WaitForExit(600000)
561562
write-host "Completed AMD HIP SDK installation"
562563
563564
- name: Verify ROCm

0 commit comments

Comments
 (0)