Skip to content

Commit e0c82a5

Browse files
authored
Add w/a to missing script in intel-opencl-rt package from conda-forge (#2689)
There are missing `set-intel-ocl-icd-registry.ps1` and `unset-intel-ocl-icd-registry.ps1` scripts when installing `intel-opencl-rt` package from the conda-forge ([intel-compiler-repack-feedstock/#72](conda-forge/intel-compiler-repack-feedstock#72)). This PR implements a temporary w/a until the issue is resolved. The w/a assumes to force `intel-opencl-rt` installation from Intel channel.
1 parent d99fa65 commit e0c82a5

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

.github/workflows/conda-package.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -354,6 +354,9 @@ jobs:
354354
TEST_CHANNELS: '-c ${{ env.channel-path }} ${{ env.channels-list }}'
355355
MAMBA_NO_LOW_SPEED_LIMIT: 1
356356

357+
- name: Install OCL CPU RT from Intel channel
358+
run: mamba install intel-opencl-rt=*=intel_* ${{ env.channels-list }}
359+
357360
- name: List installed packages
358361
run: mamba list
359362

.github/workflows/cron-run-tests.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,9 @@ jobs:
9292
run: |
9393
mamba install ${{ env.package-name }}=${{ steps.find_latest_tag.outputs.tag }} ${{ env.test-packages }} ${{ env.channels-list }}
9494
95+
- name: Install OCL CPU RT from Intel channel
96+
run: mamba install intel-opencl-rt=*=intel_* ${{ env.channels-list }}
97+
9598
- name: List installed packages
9699
run: mamba list
97100

0 commit comments

Comments
 (0)