From 41f3557db9387e648d61a15027aadc4cc8242781 Mon Sep 17 00:00:00 2001 From: Joost VandeVondele Date: Mon, 25 May 2026 11:20:01 +0200 Subject: [PATCH] Further binary releases fixes * .tar -> .tar.gz: save a few more MB in distribution. * drop android armv7 without NEON support: there should be almost no devices around that do not support this. closes https://github.com/official-stockfish/Stockfish/pull/6850 No functional change --- .github/ci/arm_matrix.json | 15 ++++++--------- .github/ci/macos_matrix.json | 6 +++--- 2 files changed, 9 insertions(+), 12 deletions(-) diff --git a/.github/ci/arm_matrix.json b/.github/ci/arm_matrix.json index 0661e1b29..5e0b289e3 100644 --- a/.github/ci/arm_matrix.json +++ b/.github/ci/arm_matrix.json @@ -8,7 +8,7 @@ "emu": "qemu-aarch64", "comp": "ndk", "shell": "bash", - "archive_ext": "tar" + "archive_ext": "tar.gz" }, { "name": "Android NDK arm", @@ -18,10 +18,13 @@ "emu": "qemu-arm", "comp": "ndk", "shell": "bash", - "archive_ext": "tar" + "archive_ext": "tar.gz" } ], - "binaries": ["armv8-universal", "armv7", "armv7-neon"], + "binaries": [ + "armv8-universal", + "armv7-neon" + ], "exclude": [ { "binaries": "armv8-universal", @@ -29,12 +32,6 @@ "compiler": "armv7a-linux-androideabi29-clang++" } }, - { - "binaries": "armv7", - "config": { - "compiler": "aarch64-linux-android29-clang++" - } - }, { "binaries": "armv7-neon", "config": { diff --git a/.github/ci/macos_matrix.json b/.github/ci/macos_matrix.json index b859bcb9d..7d6d89d62 100644 --- a/.github/ci/macos_matrix.json +++ b/.github/ci/macos_matrix.json @@ -8,7 +8,7 @@ "compiler": "clang++", "comp": "clang", "shell": "bash", - "archive_ext": "tar" + "archive_ext": "tar.gz" }, "binaries": "x86-64-bmi2" }, @@ -20,9 +20,9 @@ "compiler": "clang++", "comp": "clang", "shell": "bash", - "archive_ext": "tar" + "archive_ext": "tar.gz" }, "binaries": "apple-silicon" } ] -} \ No newline at end of file +}