/
redgpu
/
ispc
Обзор
Документация
Войти
/
redgpu
/
ispc
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
.github/workflows/scripts/install-test-deps.ps1
30 строк
1 KB
Zwolski, Antoni
CI: remove trunk from install scripts
28 янв 2026, 20:50
28 янв 2026, 20:50
9884589
Код
Авторство
О чём код?
# Install-ChocoPackage is GH Actions wrappers around choco, which does retries Install-ChocoPackage wget # Source the init-env.ps1 script from the same directory as this script $SCRIPT_DIR = Split-Path -Parent $MyInvocation.MyCommand.Path . (Join-Path $SCRIPT_DIR "init-env.ps1") # Install nanobind for examples build pip install nanobind if ($LASTEXITCODE -ne 0) { exit $LASTEXITCODE } # Install ISPC package $zip = Get-ChildItem -Filter "ispc-*-windows.zip" | Select-Object -First 1 Expand-Archive $zip.FullName -DestinationPath $pwd ls $ispcDir = Get-ChildItem -Directory -Filter "ispc-*-windows" | Select-Object -First 1 echo "$pwd\$($ispcDir.Name)\bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append # Download and unpack SDE if (-not $env:USER_AGENT -or -not $env:SDE_MIRROR_ID) { Write-Error "SDE_MIRROR_ID and/or USER_AGENT are not defined, exiting." exit 1 } wget -q -U "${env:USER_AGENT}" --retry-connrefused --waitretry=5 --read-timeout=20 --timeout=15 -t 5 https://downloadmirror.intel.com/${env:SDE_MIRROR_ID}/${env:SDE_TAR_NAME}-win.tar.xz if ($LASTEXITCODE -ne 0) { exit $LASTEXITCODE } 7z.exe x -txz ${env:SDE_TAR_NAME}-win.tar.xz if ($LASTEXITCODE -ne 0) { exit $LASTEXITCODE } 7z.exe x -ttar ${env:SDE_TAR_NAME}-win.tar if ($LASTEXITCODE -ne 0) { exit $LASTEXITCODE } echo "$pwd\${env:SDE_TAR_NAME}-win" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append