File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -1070,7 +1070,8 @@ jobs:
1070
1070
write-host "Downloading AMD HIP SDK Installer"
1071
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
1072
write-host "Installing AMD HIP SDK"
1073
- Start-Process "${env:RUNNER_TEMP}\rocm-install.exe" -ArgumentList '-install' -NoNewWindow -Wait
1073
+ $proc = Start-Process "${env:RUNNER_TEMP}\rocm-install.exe" -ArgumentList '-install' -NoNewWindow -PassThru
1074
+ $proc.WaitForExit(600000)
1074
1075
write-host "Completed AMD HIP SDK installation"
1075
1076
1076
1077
- name : Verify ROCm
Original file line number Diff line number Diff line change @@ -557,7 +557,8 @@ jobs:
557
557
write-host "Downloading AMD HIP SDK Installer"
558
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
559
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)
561
562
write-host "Completed AMD HIP SDK installation"
562
563
563
564
- name : Verify ROCm
You can’t perform that action at this time.
0 commit comments