Skip to content

Commit 5777640

Browse files
committed
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 9e09126 commit 5777640

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
@@ -353,6 +353,9 @@ jobs:
353353
TEST_CHANNELS: '-c ${{ env.channel-path }} ${{ env.channels-list }}'
354354
MAMBA_NO_LOW_SPEED_LIMIT: 1
355355

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

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,9 @@ jobs:
103103
run: |
104104
mamba install ${{ env.package-name }}=${{ steps.find_latest_tag.outputs.tag }} ${{ matrix.test-packages }} ${{ env.channels-list }}
105105
106+
- name: Install OCL CPU RT from Intel channel
107+
run: mamba install intel-opencl-rt=*=intel_* ${{ env.channels-list }}
108+
106109
- name: List installed packages
107110
run: mamba list
108111

0 commit comments

Comments
 (0)