Skip to content

Commit d590042

Browse files
committed
.
1 parent e9be960 commit d590042

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

.github/workflows/reusable_basic.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,14 @@ jobs:
154154
- name: Install oneAPI basekit
155155
if: matrix.compiler.cxx == 'icpx'
156156
run: |
157-
echo "${USERPASS}" | sudo -Sk ./.github/scripts/install_oneAPI.sh
157+
echo "${USERPASS}" | sudo -Sk bash -c "
158+
apt-get update
159+
apt-get install -y gpg-agent gnupg
160+
wget -O- https://apt.repos.intel.com/intel-gpg-keys/GPG-PUB-KEY-INTEL-SW-PRODUCTS.PUB | gpg --dearmor -o /usr/share/keyrings/oneapi-archive-keyring.gpg
161+
echo 'deb [signed-by=/usr/share/keyrings/oneapi-archive-keyring.gpg] https://apt.repos.intel.com/oneapi all main' > /etc/apt/sources.list.d/oneAPI.list
162+
apt-get update
163+
apt-get install -y intel-oneapi-ippcp-devel intel-oneapi-ipp-devel intel-oneapi-common-oneapi-vars intel-oneapi-compiler-dpcpp-cpp
164+
"
158165
159166
- name: Get UMF version
160167
run: |

0 commit comments

Comments
 (0)