diff options
| author | Andre Weissflog <floooh@gmail.com> | 2026-01-19 18:16:59 +0100 |
|---|---|---|
| committer | Andre Weissflog <floooh@gmail.com> | 2026-01-19 18:16:59 +0100 |
| commit | 84f50a635db329a9202df70e9dc6955f2858a18e (patch) | |
| tree | 7b31652738d42b769837f8ea3f21af7bf8d33e9f | |
| parent | 1f2f9479807a841389254325abdca0dae04c524c (diff) | |
github ci: setup vulkan sdk on windows
| -rw-r--r-- | .github/workflows/gen_bindings.yml | 6 | ||||
| -rw-r--r-- | .github/workflows/main.yml | 6 |
2 files changed, 12 insertions, 0 deletions
diff --git a/.github/workflows/gen_bindings.yml b/.github/workflows/gen_bindings.yml index ffe6de65..f53cbaa1 100644 --- a/.github/workflows/gen_bindings.yml +++ b/.github/workflows/gen_bindings.yml @@ -7,6 +7,12 @@ jobs: runs-on: windows-latest steps: - uses: actions/checkout@main + - name: prepare vulkan sdk + uses: humbletim/setup-vulkan-sdk@main + with: + vulkan-query-version: 1.4.335.0 + vulkan-components: Vulkan-Headers + vulkan-use-cache: true - name: test_win run: | cd tests diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 7da3c027..1d38f51c 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -7,6 +7,12 @@ jobs: runs-on: windows-latest steps: - uses: actions/checkout@main + - name: prepare vulkan sdk + uses: humbletim/setup-vulkan-sdk@main + with: + vulkan-query-version: 1.4.335.0 + vulkan-components: Vulkan-Headers + vulkan-use-cache: true - name: test_win run: | cd tests |