Skip to content

Commit f5425b2

Browse files
committed
Fix failure of Windows CI when dpctl is built with 2025.0.4 and run with 2025.1.0
Build with 2025.1.0 as a work-around
1 parent c5d18f4 commit f5425b2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: .github/workflows/conda-package.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555
- name: Build conda package
5656
run: |
5757
# use bootstrap channel to pull NumPy linked with OpenBLAS
58-
CHANNELS="-c conda-forge --override-channels"
58+
CHANNELS="-c ${{ env.INTEL_CHANNEL }} -c conda-forge --override-channels"
5959
VERSIONS="--python ${{ matrix.python }} --numpy 2.0"
6060
TEST="--no-test"
6161
conda build \
@@ -124,7 +124,7 @@ jobs:
124124
OVERRIDE_INTEL_IPO: 1 # IPO requires more resources that GH actions VM provides
125125
run: |
126126
conda activate
127-
conda build --no-test --python ${{ matrix.python }} --numpy 2 -c conda-forge --override-channels conda-recipe
127+
conda build --no-test --python ${{ matrix.python }} --numpy 2 -c conda-forge -c ${{ env.INTEL_CHANNEL }} --override-channels conda-recipe
128128
129129
- name: Upload artifact
130130
uses: actions/[email protected]

0 commit comments

Comments
 (0)