Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Install pocl-opencl-icd #147

Closed
wants to merge 4 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 8 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
fail-fast: false
matrix:
include:
- os: ubuntu-20.04
- os: ubuntu-latest
toolchain: stable
- os: [self-hosted, linux, arm64]
rustflags: --cfg=aes_armv8
Expand All @@ -52,8 +52,10 @@ jobs:
- uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ matrix.toolchain }}
- if: matrix.os == 'ubuntu-20.04'
run: sudo apt-get install -y libpocl2 mesa-opencl-icd ocl-icd-opencl-dev
- if: matrix.os == 'ubuntu-latest'
run: lscpu
- if: matrix.os == 'ubuntu-latest'
run: sudo apt-get install -y libpocl2 intel-opencl-icd ocl-icd-opencl-dev
name: Install dependencies for testing openCL
- if: matrix.os == 'windows-2019'
name: Install dependencies for linking openCL
Expand Down Expand Up @@ -127,8 +129,9 @@ jobs:
- uses: arduino/setup-protoc@v2
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
- run: lscpu
- name: Install opencl
run: sudo apt-get install -y libpocl2 mesa-opencl-icd ocl-icd-opencl-dev
run: sudo apt-get install -y libpocl2 intel-opencl-icd ocl-icd-opencl-dev
- uses: actions/checkout@v3
with:
submodules: true
Expand Down Expand Up @@ -189,7 +192,7 @@ jobs:
toolchain: stable
steps:
- if: matrix.os == 'ubuntu-20.04'
run: sudo apt-get install -y mesa-opencl-icd ocl-icd-opencl-dev
run: sudo apt-get install -y ocl-icd-opencl-dev
name: Install opencl
- if: matrix.os == 'windows-2019'
name: Install opencl
Expand Down
Loading