From d2213169a449bb5f13de5fbf0eac88c3f1382bd4 Mon Sep 17 00:00:00 2001 From: Pierrick HYMBERT Date: Fri, 23 Feb 2024 13:32:39 +0100 Subject: [PATCH] server: test: ci give up with nvidia as it requires the nvidia docker runtime --- .github/workflows/server-test.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/server-test.yml b/.github/workflows/server-test.yml index 6aec537f83837a..5c07ec2f352f51 100644 --- a/.github/workflows/server-test.yml +++ b/.github/workflows/server-test.yml @@ -38,6 +38,7 @@ jobs: - build: 'cublas' defines: '-DLLAMA_NATIVE=OFF -DLLAMA_BUILD_SERVER=ON -DLLAMA_CUBLAS=ON' image: nvidia/cuda:12.3.1-devel-ubuntu22.04 + arch_not_available: true # require nvidia docker engine - build: 'clblast' defines: '-DLLAMA_NATIVE=OFF -DLLAMA_BUILD_SERVER=ON -DLLAMA_CLBLAST=ON' image: ubuntu:latest @@ -58,7 +59,7 @@ jobs: image: ${{ matrix.image }} ports: - 8888 - options: --cpus 4 + options: --cpus 4 ${{ matrix.build == 'cublas' && '--gpu all' || '' }} steps: - name: Clone