diff --git a/.github/workflows/Vulkan.yml b/.github/workflows/Vulkan.yml index c0714e4d..08f72c25 100644 --- a/.github/workflows/Vulkan.yml +++ b/.github/workflows/Vulkan.yml @@ -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 @@ -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: |