Skip to content

Commit 609203d

Browse files
committed
test: stop signing previous releases >= v28.2
1 parent c6dc2c2 commit 609203d

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

test/get_previous_releases.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -211,8 +211,9 @@ def download_binary(tag, args) -> int:
211211

212212
Path(archive).unlink()
213213

214-
if tag >= "v23" and args.host == "arm64-apple-darwin":
215-
# Starting with v23 there are arm64 binaries for ARM (e.g. M1, M2) macs, but they have to be signed to run
214+
if tag >= "v23" and tag < "v28.2" and args.host == "arm64-apple-darwin":
215+
# Starting with v23 there are arm64 binaries for ARM (e.g. M1, M2) mac.
216+
# Until v28.2 they had to be signed to run.
216217
binary_path = f'{os.getcwd()}/{tag}/bin/'
217218

218219
for arm_binary in os.listdir(binary_path):

0 commit comments

Comments
 (0)