Skip to content

Commit cbc0123

Browse files
authored
Merge branch 'master' into fix-cron-run-gh-workflow
2 parents 3e49cae + e266f26 commit cbc0123

1 file changed

Lines changed: 16 additions & 10 deletions

File tree

.github/workflows/generate_coverage.yaml

Lines changed: 16 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -46,16 +46,18 @@ jobs:
4646
echo "deb [signed-by=/usr/share/keyrings/oneapi-archive-keyring.gpg] https://apt.repos.intel.com/oneapi all main" | sudo tee /etc/apt/sources.list.d/oneAPI.list
4747
sudo apt update
4848
49-
- name: Install latest Intel OneAPI
49+
# Pinned to OneAPI 2025.3 due to known 2026.0 DPC++ compiler issue with Segfault during the sycl-post-link
50+
# TODO: renmove once CMPLRLLVM-75178 is resolved and released
51+
- name: Install Intel OneAPI
5052
if: env.oneapi-pkgs-env == ''
5153
run: |
52-
sudo apt install hwloc \
53-
intel-oneapi-mkl \
54-
intel-oneapi-umf \
55-
intel-oneapi-mkl-devel \
56-
intel-oneapi-tbb-devel \
57-
intel-oneapi-libdpstd-devel \
58-
intel-oneapi-compiler-dpcpp-cpp
54+
sudo apt install hwloc \
55+
intel-oneapi-mkl-2025.3 \
56+
intel-oneapi-umf-1.0 \
57+
intel-oneapi-mkl-devel-2025.3 \
58+
intel-oneapi-tbb-devel-2022.3 \
59+
intel-oneapi-libdpstd-devel-2022.10 \
60+
intel-oneapi-compiler-dpcpp-cpp-2025.3
5961
6062
- name: Checkout repo
6163
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
@@ -107,10 +109,14 @@ jobs:
107109
# with a newer version of the DPC++ compiler).
108110
# Installing dpctl via the pip manager has no such limitation, as the package has no
109111
# run dependency on the DPC++ RT pip package, so this is why the step is necessary here.
112+
# - name: Install dpctl
113+
# if: env.oneapi-pkgs-env == ''
114+
# run: |
115+
# pip install -r ${{ env.dpctl-pkg-txt }}
116+
# TODO: renmove pinning once CMPLRLLVM-75178 is resolved and released
110117
- name: Install dpctl
111-
if: env.oneapi-pkgs-env == ''
112118
run: |
113-
pip install -r ${{ env.dpctl-pkg-txt }}
119+
pip install dpctl>=0.23.0dev0 --index-url https://pypi.anaconda.org/dppy/label/coverage/simple
114120
115121
- name: Conda info
116122
run: |

0 commit comments

Comments
 (0)