diff options
author | Eve <139727413+netrunnereve@users.noreply.github.com> | 2024-03-01 08:54:53 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-01 10:54:53 +0200 |
commit | 6ea0f010ff6967034528d9e0b8330b9b0f0b7c13 (patch) | |
tree | 2b824ad7b673f63b9bfa69815074db765c83ef0b | |
parent | f105471ef6aa4727afac8240da398590d7277f45 (diff) |
ci : add Ubuntu 22 Vulkan CI run (#5789)
-rw-r--r-- | .github/workflows/build.yml | 22 |
1 files changed, 22 insertions, 0 deletions
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 |