Skip to content

Backfill RenderPass::Verify() method #530

Backfill RenderPass::Verify() method

Backfill RenderPass::Verify() method #530

Workflow file for this run

name: ZEngine Window Build
on:
push:
branches: [ master, develop ]
pull_request:
branches: [ master, develop ]
jobs:
Windows-Build:
runs-on: windows-2022
strategy:
matrix:
buildConfiguration: [Debug, Release]
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Install Vulkan SDK
uses: humbletim/setup-vulkan-sdk@v1.2.0
with:
vulkan-query-version: 1.3.204.0
vulkan-components: Vulkan-Headers, Vulkan-Loader
vulkan-use-cache: true
- name: Install CMake
uses: jwlawson/actions-setup-cmake@v2
with:
cmake-version: '3.21.x'
- name: CMake Build
run: .\Scripts\BuildEngine.ps1 -Configurations ${{matrix.buildConfiguration}}
shell: pwsh
- name: Run Tests
run: .\Scripts\RunTests.ps1 -Configurations ${{matrix.buildConfiguration}}
shell: pwsh