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