From: Eve Date: Fri, 1 Mar 2024 08:54:53 +0000 (+0000) Subject: ci : add Ubuntu 22 Vulkan CI run (#5789) X-Git-Tag: upstream/0.0.4488~2187 X-Git-Url: https://git.djapps.eu/?a=commitdiff_plain;h=6ea0f010ff6967034528d9e0b8330b9b0f0b7c13;p=pkg%2Fggml%2Fsources%2Fllama.cpp ci : add Ubuntu 22 Vulkan CI run (#5789) --- diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 66ad8593..9144f926 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -145,6 +145,28 @@ jobs: cd build ctest -L main --verbose + ubuntu-22-cmake-vulkan: + runs-on: ubuntu-22.04 + + steps: + - name: Clone + id: checkout + uses: actions/checkout@v3 + + - name: Dependencies + id: depends + run: | + sudo apt-get update + sudo apt-get install build-essential libvulkan-dev + + - name: Build + id: cmake_build + run: | + mkdir build + cd build + cmake -DLLAMA_VULKAN=ON .. + cmake --build . --config Release -j $(nproc) + ubuntu-22-cmake-sycl: runs-on: ubuntu-22.04