ci : add Ubuntu 22 Vulkan CI run (#5789)

This commit is contained in:
Eve 2024-03-01 08:54:53 +00:00 committed by GitHub
parent f105471ef6
commit 6ea0f010ff
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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