Adding a build test for Windows ARM.

This commit is contained in:
Daniel Lemire 2021-06-07 08:59:23 -04:00
parent e3af106668
commit 87c16bb093

15
.github/workflows/vs16-arm-ci.yml vendored Normal file
View File

@ -0,0 +1,15 @@
name: VS16-ARM-CI
on: [push, pull_request]
jobs:
ci:
name: windows-vs16
runs-on: windows-latest
steps:
- name: checkout
uses: actions/checkout@v2
- name: Use cmake
run: |
cmake -A ARM64 -DCMAKE_CROSSCOMPILING=1 -DFASTFLOAT_TEST=ON -B build &&
cmake --build build --verbose