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 242f03d commit f43d6b8Copy full SHA for f43d6b8
.github/workflows/conda-package.yml
@@ -364,7 +364,11 @@ jobs:
364
shell: pwsh
365
run: |
366
$script_path="$env:CONDA_PREFIX\Scripts\set-intel-ocl-icd-registry.ps1"
367
- &$script_path
+ if (Test-Path $script_path) {
368
+ &$script_path
369
+ } else {
370
+ Write-Warning "File $script_path was NOT found!"
371
+ }
372
# Check the variable assisting OpenCL CPU driver to find TBB DLLs which are not located where it expects them by default
373
$cl_cfg="$env:CONDA_PREFIX\Library\lib\cl.cfg"
374
Get-Content -Tail 5 -Path $cl_cfg
0 commit comments