Skip to content

Commit 0956bc2

Browse files
Update icx.yml
1 parent 450775b commit 0956bc2

1 file changed

Lines changed: 9 additions & 3 deletions

File tree

.github/workflows/icx.yml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,10 +36,16 @@ jobs:
3636
# ------------------------
3737
- name: Install Intel oneAPI (ICX)
3838
run: |
39-
wget https://apt.repos.intel.com/intel-gpg-keys/Intel-GPG-KEY-public.asc
40-
sudo apt-key add Intel-GPG-KEY-public.asc
41-
sudo add-apt-repository "deb https://apt.repos.intel.com/oneapi all main"
39+
# Add Intel GPG key (new correct URL)
40+
wget https://apt.repos.intel.com/intel-gpg-keys/GPG-PUB-KEY-INTEL-SW-PRODUCTS.PUB
41+
sudo apt-key add GPG-PUB-KEY-INTEL-SW-PRODUCTS.PUB
42+
43+
# Add Intel oneAPI repository
44+
echo "deb https://apt.repos.intel.com/oneapi all main" | sudo tee /etc/apt/sources.list.d/oneAPI.list
45+
4246
sudo apt-get update
47+
48+
# Install LLVM-based Intel compilers (ICX/ICPX)
4349
sudo apt-get install -y intel-oneapi-compiler-dpcpp-cpp intel-oneapi-compiler-classic
4450
4551
# ------------------------

0 commit comments

Comments
 (0)