From 609203d5075c5083c0922174e1acfe6bf3279600 Mon Sep 17 00:00:00 2001 From: Sjors Provoost Date: Tue, 8 Jul 2025 13:57:23 +0200 Subject: [PATCH] test: stop signing previous releases >= v28.2 --- test/get_previous_releases.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/test/get_previous_releases.py b/test/get_previous_releases.py index 104ba584ffc..5658cf252de 100755 --- a/test/get_previous_releases.py +++ b/test/get_previous_releases.py @@ -211,8 +211,9 @@ def download_binary(tag, args) -> int: Path(archive).unlink() - if tag >= "v23" and args.host == "arm64-apple-darwin": - # Starting with v23 there are arm64 binaries for ARM (e.g. M1, M2) macs, but they have to be signed to run + if tag >= "v23" and tag < "v28.2" and args.host == "arm64-apple-darwin": + # Starting with v23 there are arm64 binaries for ARM (e.g. M1, M2) mac. + # Until v28.2 they had to be signed to run. binary_path = f'{os.getcwd()}/{tag}/bin/' for arm_binary in os.listdir(binary_path):