Skip to content
This repository has been archived by the owner on Aug 29, 2023. It is now read-only.

Commit

Permalink
try to install only opencl
Browse files Browse the repository at this point in the history
  • Loading branch information
rllola committed Feb 10, 2023
1 parent 26bf59c commit 83150cc
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 1 deletion.
20 changes: 19 additions & 1 deletion .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ jobs:
with:
submodules: 'true'
- name: Instal deps
run: make install-llvm-ci
run: make install-opencl
- name: Install node
uses: actions/setup-node@v2
with:
Expand Down Expand Up @@ -159,6 +159,8 @@ jobs:
uses: actions/checkout@v2
with:
submodules: 'true'
- name: Instal deps
run: make install-opencl
- name: Install node
uses: actions/setup-node@v2
with:
Expand Down Expand Up @@ -216,6 +218,8 @@ jobs:
uses: actions/checkout@v2
with:
submodules: 'true'
- name: Instal deps
run: make install-opencl
- name: Install node
uses: actions/setup-node@v2
with:
Expand Down Expand Up @@ -271,6 +275,8 @@ jobs:
uses: actions/checkout@v2
with:
submodules: 'true'
- name: Instal deps
run: make install-opencl
- name: Install node
uses: actions/setup-node@v2
with:
Expand Down Expand Up @@ -326,6 +332,8 @@ jobs:
uses: actions/checkout@v2
with:
submodules: 'true'
- name: Instal deps
run: make install-opencl
- name: Install node
uses: actions/setup-node@v2
with:
Expand Down Expand Up @@ -381,6 +389,8 @@ jobs:
uses: actions/checkout@v2
with:
submodules: 'true'
- name: Instal deps
run: make install-opencl
- name: Install node
uses: actions/setup-node@v2
with:
Expand Down Expand Up @@ -436,6 +446,8 @@ jobs:
uses: actions/checkout@v2
with:
submodules: 'true'
- name: Instal deps
run: make install-opencl
- name: Install node
uses: actions/setup-node@v2
with:
Expand Down Expand Up @@ -491,6 +503,8 @@ jobs:
uses: actions/checkout@v2
with:
submodules: 'true'
- name: Instal deps
run: make install-opencl
- name: Install node
uses: actions/setup-node@v2
with:
Expand Down Expand Up @@ -546,6 +560,8 @@ jobs:
uses: actions/checkout@v2
with:
submodules: 'true'
- name: Instal deps
run: make install-opencl
- name: Install node
uses: actions/setup-node@v2
with:
Expand Down Expand Up @@ -601,6 +617,8 @@ jobs:
uses: actions/checkout@v2
with:
submodules: 'true'
- name: Instal deps
run: make install-opencl
- name: Install node
uses: actions/setup-node@v2
with:
Expand Down
4 changes: 4 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -120,3 +120,7 @@ install-llvm-ci:
wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | sudo apt-key add -
sudo apt-get update
sudo apt-get install clang-13 llvm-13-dev lld-13 libclang-13-dev ocl-icd-opencl-dev

install-opencl:
sudo apt-get update
sudo apt-get install ocl-icd-opencl-dev

0 comments on commit 83150cc

Please sign in to comment.