Skip to content

Test Build

Test Build #3

Workflow file for this run

name: Test Build
on:
workflow_run:
workflows: clang-format
types: completed
workflow_dispatch:
env:
VCPKG_COMMIT_ID: 5786fcb0cb5eb08d1931a230dad9701e7a6c37f0
jobs:
test-build:
runs-on: windows-latest
if: ${{ github.event.workflow_run.conclusion == 'success' }}
strategy:
matrix:
preset:
- debug
- release
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Get CMake
uses: lukka/get-cmake@latest
- name: Setup vcpkg
uses: lukka/run-vcpkg@v11
with:
vcpkgGitCommitId: ${{ env.VCPKG_COMMIT_ID }}
- name: Run CMake
uses: lukka/run-cmake@v10
with:
configurePreset: build-${{ matrix.preset }}-msvc
buildPreset: ${{ matrix.preset }}-msvc