summaryrefslogtreecommitdiff
path: root/tools/util.js
diff options
context:
space:
mode:
authorMatt Mastracci <matthew@mastracci.com>2023-11-23 15:30:26 -0700
committerGitHub <noreply@github.com>2023-11-23 15:30:26 -0700
commit778e4c971077e38bf8f7d03b8b299d3dd111ba22 (patch)
treecaea4ddf5233e616f17df0ee19d4016ce300a8b0 /tools/util.js
parent6f22d2424a30eebaaa1a2d518d4c79d7e0c21a47 (diff)
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
Diffstat (limited to 'tools/util.js')
-rw-r--r--tools/util.js5
1 files changed, 3 insertions, 2 deletions
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