Skip to content

Commit 4d9d164

Browse files
committed
Investigate ubuntu cl 6
1 parent 8579d1f commit 4d9d164

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/test.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,13 @@ jobs:
3939
- name: Install OpenCL - Ubuntu
4040
if: matrix.os == 'ubuntu-22.04' || matrix.os == 'ubuntu-22.04-arm'
4141
run: |
42+
# download the key to system keyring
43+
wget -O- https://apt.repos.intel.com/intel-gpg-keys/GPG-PUB-KEY-INTEL-SW-PRODUCTS.PUB \
44+
| gpg --dearmor | sudo tee /usr/share/keyrings/oneapi-archive-keyring.gpg > /dev/null
45+
# add signed entry to apt sources and configure the APT client to use Intel repository:
46+
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
4247
sudo apt update -qq
43-
sudo apt install -qq ocl-icd-opencl-dev intel-oneapi-runtime-libs
48+
sudo apt install -qq ocl-icd-opencl-dev intel-oneapi-runtime-opencl
4449
4550
- name: Build Current Binary
4651
run: npm run build

0 commit comments

Comments
 (0)