[Renderer] descriptor set update safety #64
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Build Debug | |
| on: | |
| push: | |
| branches: | |
| - '**' | |
| jobs: | |
| debug: | |
| runs-on: windows-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v2 | |
| with: | |
| submodules: recursive # This initializes and updates submodules | |
| - name: Set up Vulkan SDK | |
| uses: humbletim/install-vulkan-sdk@c2aa128094d42ba02959a660f03e0a4e012192f9 | |
| with: | |
| version: 1.3.296.0 | |
| cache: true | |
| - name: Set environment variable for Vulkan SDK | |
| run: | | |
| echo "VULKAN_SDK=C:/vulkan-sdk" >> $GITHUB_ENV | |
| echo "PATH=$VULKAN_SDK/bin:$PATH" >> $GITHUB_ENV | |
| - name: Build Debug | |
| run: | | |
| mkdir build-debug | |
| cd build-debug | |
| cmake -G "Visual Studio 17 2022" -DVULKAN_SDK=$VULKAN_SDK -DCMAKE_BUILD_TYPE=Debug .. | |
| cmake --build . --config Debug |