From db76c8bbf0f02dbd9c8254f9f4c42db48fe01ac3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?F=C3=A1bio=20Mestre?= Date: Tue, 24 Oct 2023 19:02:42 +0100 Subject: [PATCH] OpenCL CI trial and error --- .github/workflows/cmake.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index 9edbd459d7..d1e911773d 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -163,14 +163,15 @@ jobs: strategy: matrix: adapter: [ - {name: CUDA, triplet: nvptx64-nvidia-cuda}, - {name: HIP, triplet: spir64}, # should be amdgcn-amdhsa, but build scripts for device binaries are currently broken for this target. - {name: L0, triplet: spir64} + {name: CUDA, runner: CUDA, triplet: nvptx64-nvidia-cuda}, + {name: HIP, runner: HIP, triplet: spir64}, # should be amdgcn-amdhsa, but build scripts for device binaries are currently broken for this target. + {name: L0, runner: L0, triplet: spir64}, + {name: OPENCL, runner: ubuntu-latest, triplet: spir64} ] build_type: [Debug, Release] compiler: [{c: gcc, cxx: g++}, {c: clang, cxx: clang++}] - runs-on: ${{matrix.adapter.name}} + runs-on: ${{matrix.adapter.runner}} steps: - uses: actions/checkout@v3