From 3ecd089e88726ab640e2c6a88bd5f7b5a01541e7 Mon Sep 17 00:00:00 2001
From: Anonymous Maarten <[EMAIL REDACTED]>
Date: Mon, 27 Oct 2025 01:59:20 +0100
Subject: [PATCH] release: don't test (non-available) arm64 archives
---
.github/workflows/release.yml | 34 +++++++++++++++++-----------------
1 file changed, 17 insertions(+), 17 deletions(-)
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index a92c550..1482454 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -472,23 +472,23 @@ jobs:
-DCMAKE_PREFIX_PATH="${{ steps.bin.outputs.path }};${{ steps.deps-extract.outputs.path }}"
Start-Sleep -Seconds 2
cmake --build build_x64 --config Release --verbose
- - name: 'Configure vcvars arm64'
- uses: ilammy/msvc-dev-cmd@v1
- with:
- arch: x64_arm64
- - name: 'CMake (configure + build + tests) arm64'
- run: |
- cmake -S "${{ steps.src.outputs.path }}/cmake/test" `
- -B build_arm64 `
- -GNinja `
- -DCMAKE_BUILD_TYPE=Debug `
- -Werror=dev `
- -DTEST_SHARED=TRUE `
- -DTEST_STATIC=FALSE `
- -DCMAKE_SUPPRESS_REGENERATION=TRUE `
- -DCMAKE_PREFIX_PATH="${{ steps.bin.outputs.path }};${{ steps.deps-extract.outputs.path }}"
- Start-Sleep -Seconds 2
- cmake --build build_arm64 --config Release --verbose
+# - name: 'Configure vcvars arm64'
+# uses: ilammy/msvc-dev-cmd@v1
+# with:
+# arch: x64_arm64
+# - name: 'CMake (configure + build + tests) arm64'
+# run: |
+# cmake -S "${{ steps.src.outputs.path }}/cmake/test" `
+# -B build_arm64 `
+# -GNinja `
+# -DCMAKE_BUILD_TYPE=Debug `
+# -Werror=dev `
+# -DTEST_SHARED=TRUE `
+# -DTEST_STATIC=FALSE `
+# -DCMAKE_SUPPRESS_REGENERATION=TRUE `
+# -DCMAKE_PREFIX_PATH="${{ steps.bin.outputs.path }};${{ steps.deps-extract.outputs.path }}"
+# Start-Sleep -Seconds 2
+# cmake --build build_arm64 --config Release --verbose
# mingw:
# needs: [src]