From 778e4c971077e38bf8f7d03b8b299d3dd111ba22 Mon Sep 17 00:00:00 2001 From: Matt Mastracci Date: Thu, 23 Nov 2023 15:30:26 -0700 Subject: chore: start codesigning mac release builds (#21303) - Adds a codesigning step to all mac targets - Adds a new ci-full label to the build to force aarch64 builds on any PR --- tools/util.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'tools/util.js') diff --git a/tools/util.js b/tools/util.js index 20a2f210b..8fab4dfa3 100644 --- a/tools/util.js +++ b/tools/util.js @@ -17,7 +17,7 @@ const versions = { "dlint": "dlint 0.51.0", }; -const compressed = new Set(["ld64.lld"]); +const compressed = new Set(["ld64.lld", "rcodesign"]); export const ROOT_PATH = dirname(dirname(fromFileUrl(import.meta.url))); @@ -175,8 +175,9 @@ export function getPrebuiltToolPath(toolName) { return join(PREBUILT_TOOL_DIR, toolName + executableSuffix); } +const commitId = "c249f61eaed67db26c2934b195dc51e3ab91ae03"; const downloadUrl = - `https://raw.githubusercontent.com/denoland/deno_third_party/1fd66ef78ab40841db833d4a1efd5c5597faf066/prebuilt/${platformDirName}`; + `https://raw.githubusercontent.com/denoland/deno_third_party/${commitId}/prebuilt/${platformDirName}`; export async function downloadPrebuilt(toolName) { // Ensure only one download per tool happens at a time -- cgit v1.2.3