Skip to content

Add CMake workflow for Windows ARM64 support #1

Add CMake workflow for Windows ARM64 support

Add CMake workflow for Windows ARM64 support #1

Workflow file for this run

name: CMake Windows ARM64
on:
push:
pull_request:
env:
BUILD_TYPE: Release
jobs:
build-windows-arm64:
runs-on: windows-2022
strategy:
matrix:
cpp_version: [11, 14, 17, 20]
steps:
- uses: actions/checkout@v2
with:
submodules: recursive
- name: Configure CMake
shell: bash
run: cmake -B ${{github.workspace}}/build -A ARM64 -DBUILD_TESTING=ON -DCMAKE_CXX_STANDARD=${{matrix.cpp_version}} -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}}
- name: Build
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}}
- name: Test
working-directory: ${{github.workspace}}/build
run: ctest -C ${{env.BUILD_TYPE}} --verbose