Skip to content

Commit

Permalink
Work on vulkan CI
Browse files Browse the repository at this point in the history
  • Loading branch information
pthom committed Dec 24, 2023
1 parent 7338b4f commit 0fd060a
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/Vulkan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ jobs:
fail-fast: false
matrix:
window_backend: [Glfw, Sdl, Both]
# platform: [windows-latest, macos-latest, ubuntu-latest]
platform: [windows-latest, ubuntu-latest]
platform: [windows-latest, macos-latest, ubuntu-latest]
# platform: [windows-latest, ubuntu-latest]

steps:
- uses: actions/checkout@v3
Expand All @@ -36,6 +36,14 @@ jobs:
Expand-Archive -Path vulkan-sdk-1.1.121.2.zip
echo "VULKAN_SDK=$(pwd)\vulkan-sdk-1.1.121.2\" >>${env:GITHUB_ENV}
- name: Install Vulkan Sdk macOS
if: ${{ matrix.platform == 'macos-latest' }}
shell: bash
run: |
wget -q https://github.com/pthom/hello_imgui/releases/download/v1.0.0/VulkanSDK_1.3.268.1_macos.tgz
tar xfz VulkanSDK_1.3.268.1_macos.tgz
echo "VULKAN_SDK=$(pwd)/VulkanSDK/1.3.268.1/macOS" >> $GITHUB_ENV
- name: Build and install
shell: bash
run: |
Expand Down

0 comments on commit 0fd060a

Please sign in to comment.