This repository has been archived by the owner on Sep 16, 2024. It is now read-only.
Test #211
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 Windows | |
on: [push,pull_request] | |
jobs: | |
build-and-deploy: | |
runs-on: windows-2019 | |
steps: | |
- name: Checkout | |
uses: actions/[email protected] | |
- name: Get latest CMake and ninja | |
uses: lukka/get-cmake@latest | |
- name: Build | |
run: | | |
cmake -G "Visual Studio 16 2019" -A x64 -DCMAKE_SYSTEM_VERSION=10.0.19041.0 -B build | |
cmake --build build --config Release | |
- name: Release | |
uses: actions/upload-artifact@v2 | |
with: | |
name: WindowsRelease | |
path: build/ |