* Add UWP-x64 action

* Fix formatting

* Fix missing -
This commit is contained in:
Ravbug 2022-02-02 17:06:52 -05:00 committed by GitHub
parent 2cfc83eab7
commit 2005dd9595
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 15 additions and 0 deletions

15
.github/workflows/uwp.yml vendored Normal file
View File

@ -0,0 +1,15 @@
name: Build (UWP)
on: [push, pull_request]
jobs:
Build:
name: UWP-x64
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- name: Configure
run: mkdir build; cd build; cmake -Ax64 -DCMAKE_SYSTEM_NAME=WindowsStore -DCMAKE_SYSTEM_VERSION="10.0" -DCMAKE_BUILD_TYPE=Release ..
- name: Build
run: cd build; cmake --build .