Skip to content

Ys10

Ys10 #222

Workflow file for this run

# This starter workflow is for a CMake project running on multiple platforms. There is a different starter workflow if you just want a single platform.
# See: https://github.com/actions/starter-workflows/blob/main/ci/cmake-single-platform.yml
name: CMake (Ninja)
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/[email protected]
with:
submodules: recursive
- uses: GuillaumeFalourd/setup-windows10-sdk-action@v2
with:
sdk-version: 22621
- name: Install ninja-build tool
uses: seanmiddleditch/gha-setup-ninja@v5
- name: Setup VS Dev Environment
uses: seanmiddleditch/gha-setup-vsdevenv@v4
- name: Configure CMake (x64)
run: >
cmake
--preset ninja-x64
- name: Build (x64)
run: >
cmake
--build
--preset ninja-x64-release
--verbose