[Renderer] [Engine] [ECS] Runtime deleting of mesh #75
Workflow file for this run
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 Release | |
| on: | |
| push: | |
| branches: | |
| - '**' | |
| jobs: | |
| release: | |
| 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 Release | |
| run: | | |
| mkdir build-release | |
| cd build-release | |
| cmake -G "Visual Studio 17 2022" -DVULKAN_SDK=$VULKAN_SDK .. | |
| cmake --build . --config Release |