Skip to content

Added installation of vulkan sdk. Moved scripts location. #16

Added installation of vulkan sdk. Moved scripts location.

Added installation of vulkan sdk. Moved scripts location. #16

Workflow file for this run

name: CI
on: [push]
jobs:
build:
name: Build
runs-on: windows-2022
steps:
- name: Sync
uses: actions/checkout@v4
with:
submodules: 'recursive'
- name: Install Dependencies
shell: pwsh
run: ./scripts/install_build_dependencies.ps1
- name: Configure
shell: pwsh
run: ./scripts/configure.ps1
- name: Build Debug
shell: pwsh
run: ./scripts/build.ps1 Debug
- name: Build Release
shell: pwsh
run: ./scripts/build.ps1 Release
- name: Archive Debug artifacts
uses: actions/upload-artifact@v4
with:
name: D3d12infoGUI - Debug
path: ./build/bin/Debug/GUI.exe
- name: Archive Release artifacts
uses: actions/upload-artifact@v4
with:
name: D3d12infoGUI - Release
path: ./build/bin/Release/GUI.exe