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 65349f2 commit aa4d2e5Copy full SHA for aa4d2e5
.github/workflows/build.yml
@@ -1070,7 +1070,8 @@ jobs:
1070
write-host "Downloading AMD HIP SDK Installer"
1071
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"
1072
write-host "Installing AMD HIP SDK"
1073
- 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
1074
+ $proc.WaitForExit(600000)
1075
write-host "Completed AMD HIP SDK installation"
1076
1077
- name: Verify ROCm
0 commit comments