From e31f9f244ba38162078ceb59138ccf52b88eaf23 Mon Sep 17 00:00:00 2001 From: CJ Pais Date: Wed, 25 Jun 2025 17:33:58 -0700 Subject: [PATCH] linux libs, install vulkan on windows/linux --- .github/workflows/main.yml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 2903dae..64fe18e 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -36,7 +36,15 @@ jobs: if: matrix.platform == 'ubuntu-22.04' # This must match the platform value defined above. run: | sudo apt-get update - sudo apt-get install -y libwebkit2gtk-4.1-dev libappindicator3-dev librsvg2-dev patchelf + sudo apt-get install -y libwebkit2gtk-4.1-dev libappindicator3-dev librsvg2-dev patchelf libasound2-dev libopenblas-dev libx11-dev libxtst-dev libxrandr-dev + + - name: Prepare Vulkan SDK (windows and ubuntu) + if: matrix.platform != 'macos-latest' + uses: humbletim/setup-vulkan-sdk@v1.2.1 + with: + vulkan-query-version: 1.4.304.1 + vulkan-components: Vulkan-Headers, Vulkan-Loader + vulkan-use-cache: true - name: install frontend dependencies run: bun install # change this to npm, pnpm or bun depending on which one you use.