release: create arm64 Visual Studio binaries

[skip ci]
This commit is contained in:
Anonymous Maarten
2024-05-22 22:44:16 +02:00
parent be5d4e5857
commit 86b2f441c0
5 changed files with 108 additions and 15 deletions

View File

@@ -330,7 +330,17 @@ jobs:
-B build_x64 -A x64
cmake --build build_x64 --config Release --verbose
ctest --test-dir build_x64 --no-tests=error -C Release --output-on-failure
- name: 'CMake (configure + build + tests) arm64'
run: |
$env:PATH += ";${{ steps.bin.outputs.path }}/x86"
cmake -S "${{ steps.src.outputs.path }}/cmake/test" `
-DTEST_FULL=TRUE `
-DTEST_STATIC=FALSE `
-DTEST_TEST=TRUE `
-DCMAKE_PREFIX_PATH="${{ steps.bin.outputs.path }}" `
-Werror=dev `
-B build_arm64 -A ARM64
cmake --build build_x64 --config Release --verbose
mingw:
needs: [src]