Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion .github/workflows/conda-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -366,9 +366,14 @@ jobs:
} else {
Write-Warning "File $script_path was NOT found!"
}

# Check the variable assisting OpenCL CPU driver to find TBB DLLs which are not located where it expects them by default
$cl_cfg="$env:CONDA_PREFIX\Library\bin\cl.cfg"
Get-Content -Tail 5 -Path $cl_cfg
if (Test-Path $cl_cfg) {
Get-Content -Tail 5 -Path $cl_cfg
} else {
Write-Warning "File $cl_cfg was NOT found!"
}

- name: Smoke test
run: |
Expand Down
7 changes: 6 additions & 1 deletion .github/workflows/cron-run-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -105,9 +105,14 @@ jobs:
} else {
Write-Warning "File $script_path was NOT found!"
}

# Check the variable assisting OpenCL CPU driver to find TBB DLLs which are not located where it expects them by default
$cl_cfg="$env:CONDA_PREFIX\Library\bin\cl.cfg"
Get-Content -Tail 5 -Path $cl_cfg
if (Test-Path $cl_cfg) {
Get-Content -Tail 5 -Path $cl_cfg
} else {
Write-Warning "File $cl_cfg was NOT found!"
}

- name: Smoke test
run: |
Expand Down
Loading