File tree Expand file tree Collapse file tree 1 file changed +8
-1
lines changed
Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Original file line number Diff line number Diff 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 : |
You can’t perform that action at this time.
0 commit comments