Skip to content

Commit 6ea0f01

Browse files
authored
ci : add Ubuntu 22 Vulkan CI run (#5789)
1 parent f105471 commit 6ea0f01

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

.github/workflows/build.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -145,6 +145,28 @@ jobs:
145145
cd build
146146
ctest -L main --verbose
147147
148+
ubuntu-22-cmake-vulkan:
149+
runs-on: ubuntu-22.04
150+
151+
steps:
152+
- name: Clone
153+
id: checkout
154+
uses: actions/checkout@v3
155+
156+
- name: Dependencies
157+
id: depends
158+
run: |
159+
sudo apt-get update
160+
sudo apt-get install build-essential libvulkan-dev
161+
162+
- name: Build
163+
id: cmake_build
164+
run: |
165+
mkdir build
166+
cd build
167+
cmake -DLLAMA_VULKAN=ON ..
168+
cmake --build . --config Release -j $(nproc)
169+
148170
ubuntu-22-cmake-sycl:
149171
runs-on: ubuntu-22.04
150172

0 commit comments

Comments
 (0)