Bump deps/unicorn from 0d86010
to 270d471
#356
Workflow file for this run
This file contains 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 | |
on: | |
push: | |
branches: | |
- "**" | |
pull_request: | |
branches: | |
- "**" | |
types: [opened, synchronize, reopened] | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build-windows: | |
name: Build Windows | |
runs-on: windows-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
configuration: | |
- Debug | |
- Release | |
include: | |
- configuration: Debug | |
preset: debug | |
- configuration: Release | |
preset: release | |
steps: | |
- name: Checkout Source | |
uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: Enable Developer Command Prompt | |
uses: ilammy/[email protected] | |
- name: CMake Build | |
run: cmake --workflow --preset=${{matrix.preset}} | |
- name: Upload Artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: Windows ${{matrix.configuration}} Artifacts | |
path: | | |
build/${{matrix.preset}}/artifacts/* | |
- name: Dump Registry | |
run: cd build/${{matrix.preset}}/artifacts && ../../../src/grab-registry.bat | |
- name: CMake Test | |
run: cd build/${{matrix.preset}} && ctest --verbose |