Merge branch 'master' into add_more_null_checks #1091
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: VS17-ARM-CI | |
on: [push, pull_request] | |
permissions: | |
contents: read | |
jobs: | |
ci: | |
name: windows-vs17 | |
runs-on: windows-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- {arch: ARM} | |
- {arch: ARM64} | |
steps: | |
- name: checkout | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
- name: Use cmake | |
run: | | |
cmake -A ${{ matrix.arch }} -DCMAKE_CROSSCOMPILING=1 -B build && | |
cmake --build build --verbose |