uwp.yml 376 B

123456789101112131415
  1. name: Build (UWP)
  2. on: [push, pull_request]
  3. jobs:
  4. Build:
  5. name: UWP-x64
  6. runs-on: windows-latest
  7. steps:
  8. - uses: actions/checkout@v2
  9. - name: Configure
  10. run: mkdir build; cd build; cmake -Ax64 -DCMAKE_SYSTEM_NAME=WindowsStore -DCMAKE_SYSTEM_VERSION="10.0" -DCMAKE_BUILD_TYPE=Release ..
  11. - name: Build
  12. run: cd build; cmake --build .