Files
SpaghettiKart/.github/workflows/windows-compile-debug.yml
T
Thomas Rohloff 425d6cdffb Add debug workflows
Signed-off-by: Thomas Rohloff <v10lator@myway.de>
2025-07-19 13:01:27 +02:00

26 lines
634 B
YAML

name: Windows Validation
on:
pull_request:
branches: [ "*" ]
jobs:
build:
runs-on: windows-2022
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
fetch-tags: true
submodules: recursive
- name: Build
run: |
cmake -S . -B "build/x64" -G "Visual Studio 17 2022" -T v143 -A x64 -DCMAKE_BUILD_TYPE=Debug
cmake --build ./build/x64 --config Debug --parallel 10
- name: Upload build
uses: actions/upload-artifact@v4
with:
name: spaghetti-windows
path: ./build/x64/Debug
retention-days: 1