CI: Install vulkan SDK

Required to build whisper.cpp with GPU acceleration support
This commit is contained in:
WarmUpTill 2026-08-04 16:28:40 +02:00 committed by WarmUpTill
parent 88fc412900
commit ad03b92d2d

View File

@ -213,6 +213,17 @@ jobs:
- name: Set up Homebrew 🍺
uses: Homebrew/actions/setup-homebrew@main
- name: Install Vulkan SDK 🌋
shell: bash
run: |
wget -qO- https://packages.lunarg.com/lunarg-signing-key-pub.asc \
| sudo tee /etc/apt/trusted.gpg.d/lunarg.asc
sudo wget -qO /etc/apt/sources.list.d/lunarg-vulkan-noble.list \
https://packages.lunarg.com/vulkan/lunarg-vulkan-noble.list
sudo apt-get update -qq
sudo apt-get install -y vulkan-sdk
echo "VULKAN_SDK=/usr" >> "$GITHUB_ENV"
- name: Build Plugin 🧱
uses: ./.github/actions/build-plugin
with:
@ -358,6 +369,12 @@ jobs:
target: x64
config: ${{ needs.check-event.outputs.config }}
- name: Install Vulkan SDK 🌋
uses: jakoch/install-vulkan-sdk-action@v1
with:
install_runtime: false
cache: true
- name: Build Plugin 🧱
uses: ./.github/actions/build-plugin
with: