We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 901061c commit 772c6feCopy full SHA for 772c6fe
1 file changed
.github/workflows/test.yml
@@ -37,17 +37,16 @@ jobs:
37
run: npm ci
38
39
- name: Install OpenCL - Ubuntu
40
- if: matrix.os == 'ubuntu-22.04'
+ if: matrix.os == 'ubuntu-22.04' || matrix.os == 'ubuntu-22.04-arm'
41
run: |
42
sudo apt update -qq
43
- sudo apt install -qq opencl-headers ocl-icd-opencl-dev pocl-opencl-icd
+ sudo apt install -qq ocl-icd-opencl-dev pocl-opencl-icd
44
45
- name: Build Current Binary
46
- if: matrix.os != 'ubuntu-22.04-arm'
47
run: npm run build
48
49
- name: Run Unit Tests
50
- if: matrix.os != 'macos-14' && matrix.os != 'ubuntu-22.04-arm'
+ if: matrix.os != 'macos-14'
51
run: npm run test-ci
52
53
- name: Run Index Tests - MacOS
0 commit comments