File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -234,8 +234,9 @@ jobs:
234234 Start-Process "${env:RUNNER_TEMP}\rocm-install.exe" -ArgumentList '-install' -NoNewWindow -Wait
235235 write-host "Completed AMD HIP SDK installation"
236236 & 'C:\Program Files\AMD\ROCm\*\bin\clang.exe' --version
237- "HIP_PATH=$(Resolve-Path 'C:\Program Files\AMD\ROCm\*\bin\clang.exe' | split-path | split-path)" | Out-File -FilePath $env:GITHUB_ENV -Append
238- "CMAKE_PREFIX_PATH=$(Resolve-Path 'C:\Program Files\AMD\ROCm\*\bin\clang.exe' | split-path | split-path)" | Out-File -FilePath $env:GITHUB_ENV -Append
237+ $HIP_PWSH = "$(Resolve-Path 'C:\Program Files\AMD\ROCm\*\bin\clang.exe' | split-path | split-path)"
238+ "HIP_PATH=$($HIP_PWSH.Path.Replace('\', '/'))" | Out-File -FilePath $env:GITHUB_ENV -Append
239+ "CMAKE_PREFIX_PATH=$($HIP_PWSH.Path.Replace('\', '/'))" | Out-File -FilePath $env:GITHUB_ENV -Append
239240 shell : pwsh
240241
241242 - name : windows build sqlite-ai
You can’t perform that action at this time.
0 commit comments