1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-21 15:04:11 -05:00

update workflows

This commit is contained in:
David Sherret 2024-08-20 20:37:24 -04:00
parent d889573afc
commit 637c219b38
2 changed files with 45 additions and 32 deletions

View file

@ -1,15 +1,22 @@
name: promote_to_rc name: promote_to_release
on: on:
workflow_dispatch: workflow_dispatch:
inputs: inputs:
releaseKind:
description: 'Kind of release'
type: choice
options:
- rc
- lts
required: true
commitHash: commitHash:
description: Commit to promote to the Release Candidate description: Commit to promote to release
required: true required: true
jobs: jobs:
promote-to-rc: promote-to-release:
name: Promote to Release Candidate name: Promote to Release
runs-on: macOS-latest runs-on: macOS-latest
if: github.repository == 'denoland/deno' if: github.repository == 'denoland/deno'
steps: steps:
@ -42,14 +49,14 @@ jobs:
./tools/install_prebuilt.js rcodesign ./tools/install_prebuilt.js rcodesign
echo $GITHUB_WORKSPACE/third_party/prebuilt/mac >> $GITHUB_PATH echo $GITHUB_WORKSPACE/third_party/prebuilt/mac >> $GITHUB_PATH
- name: Promote to RC - name: Promote to Release
env: env:
APPLE_CODESIGN_KEY: '${{ secrets.APPLE_CODESIGN_KEY }}' APPLE_CODESIGN_KEY: '${{ secrets.APPLE_CODESIGN_KEY }}'
APPLE_CODESIGN_PASSWORD: '${{ secrets.APPLE_CODESIGN_PASSWORD }}' APPLE_CODESIGN_PASSWORD: '${{ secrets.APPLE_CODESIGN_PASSWORD }}'
run: | run: |
deno run -A ./tools/release/promote_to_rc.ts ${{github.event.inputs.commitHash}} deno run -A ./tools/release/promote_to_release.ts ${{github.event.inputs.releaseKind}} ${{github.event.inputs.commitHash}}
- name: Upload archives to dl.deno.land - name: Upload archives to dl.deno.land
run: | run: |
gsutil -h "Cache-Control: public, max-age=3600" cp ./*.zip gs://dl.deno.land/release/$(cat release-rc-latest.txt)/ gsutil -h "Cache-Control: public, max-age=3600" cp ./*.zip gs://dl.deno.land/release/$(cat release-${{github.event.inputs.commitHash}}-latest.txt)/
gsutil -h "Cache-Control: no-cache" cp release-rc-latest.txt gs://dl.deno.land/release-rc-latest.txt gsutil -h "Cache-Control: no-cache" cp release-${{github.event.inputs.commitHash}}-latest.txt gs://dl.deno.land/release-${{github.event.inputs.commitHash}}-latest.txt

View file

@ -20,7 +20,10 @@ const DENO_BINARIES = [
"denort", "denort",
]; ];
const CHANNEL = "rc"; const CHANNEL = Deno.args[0];
if (CHANNEL !== "rc" && CHANNEL !== "lts") {
throw new Error(`Invalid channel: ${CHANNEL}`);
}
const CANARY_URL = "https://dl.deno.land"; const CANARY_URL = "https://dl.deno.land";
@ -40,12 +43,12 @@ function getUnzippedFilename(binary: string, target: string) {
} }
} }
function getRcBinaryName(binary: string, target: string): string { function getBinaryName(binary: string, target: string): string {
let ext = ""; let ext = "";
if (target.includes("windows")) { if (target.includes("windows")) {
ext = ".exe"; ext = ".exe";
} }
return `${binary}-${target}-rc${ext}`; return `${binary}-${target}-${CHANNEL}${ext}`;
} }
function getArchiveName(binary: string, target: string): string { function getArchiveName(binary: string, target: string): string {
@ -92,8 +95,8 @@ async function unzipArchive(archiveName: string, unzippedName: string) {
} }
} }
async function createArchive(rcBinaryName: string, archiveName: string) { async function createArchive(binaryName: string, archiveName: string) {
const output = await $`zip -r ./${archiveName} ./${rcBinaryName}`; const output = await $`zip -r ./${archiveName} ./${binaryName}`;
if (output.code !== 0) { if (output.code !== 0) {
$.logError( $.logError(
@ -106,13 +109,13 @@ async function createArchive(rcBinaryName: string, archiveName: string) {
async function runPatchver( async function runPatchver(
binary: string, binary: string,
target: string, target: string,
rcBinaryName: string, binaryName: string,
) { ) {
const input = await Deno.readFile(binary); const input = await Deno.readFile(binary);
const output = patchver(input, CHANNEL); const output = patchver(input, CHANNEL);
try { try {
await Deno.writeFile(rcBinaryName, output); await Deno.writeFile(binaryName, output);
} catch (e) { } catch (e) {
$.logError( $.logError(
`Failed to promote to RC ${binary} (${target}), error:`, `Failed to promote to RC ${binary} (${target}), error:`,
@ -124,19 +127,19 @@ async function runPatchver(
async function runRcodesign( async function runRcodesign(
target: string, target: string,
rcBinaryName: string, binaryName: string,
commitHash: string, commitHash: string,
) { ) {
if (!target.includes("apple") || rcBinaryName.includes("denort")) { if (!target.includes("apple") || binaryName.includes("denort")) {
return; return;
} }
$.logStep(`Codesign ${rcBinaryName}`); $.logStep(`Codesign ${binaryName}`);
const tempFile = $.path("temp.p12"); const tempFile = $.path("temp.p12");
let output; let output;
try { try {
await $`echo $APPLE_CODESIGN_KEY | base64 -d`.stdout(tempFile); await $`echo $APPLE_CODESIGN_KEY | base64 -d`.stdout(tempFile);
output = output =
await $`rcodesign sign ./${rcBinaryName} --binary-identifier=deno-${commitHash} --code-signature-flags=runtime --code-signature-flags=runtime --p12-password="$APPLE_CODESIGN_PASSWORD" --p12-file=${tempFile} --entitlements-xml-file=cli/entitlements.plist`; await $`rcodesign sign ./${binaryName} --binary-identifier=deno-${commitHash} --code-signature-flags=runtime --code-signature-flags=runtime --p12-password="$APPLE_CODESIGN_PASSWORD" --p12-file=${tempFile} --entitlements-xml-file=cli/entitlements.plist`;
} finally { } finally {
try { try {
tempFile.removeSync(); tempFile.removeSync();
@ -146,7 +149,7 @@ async function runRcodesign(
} }
if (output.code !== 0) { if (output.code !== 0) {
$.logError( $.logError(
`Failed to codesign ${rcBinaryName} (error code ${output.code})`, `Failed to codesign ${binaryName} (error code ${output.code})`,
); );
Deno.exit(1); Deno.exit(1);
} }
@ -159,17 +162,17 @@ async function promoteBinaryToRc(
commitHash: string, commitHash: string,
) { ) {
const unzippedName = getUnzippedFilename(binary, target); const unzippedName = getUnzippedFilename(binary, target);
const rcBinaryName = getRcBinaryName(binary, target); const binaryName = getBinaryName(binary, target);
const archiveName = getArchiveName(binary, target); const archiveName = getArchiveName(binary, target);
await remove(unzippedName); await remove(unzippedName);
await remove(rcBinaryName); await remove(binaryName);
$.logStep( $.logStep(
"Unzip", "Unzip",
archiveName, archiveName,
gray("binary"), gray("binary"),
binary, binary,
gray("rcBinaryName"), gray("binaryName"),
rcBinaryName, binaryName,
); );
await unzipArchive(archiveName, unzippedName); await unzipArchive(archiveName, unzippedName);
@ -180,12 +183,12 @@ async function promoteBinaryToRc(
unzippedName, unzippedName,
`(${target})`, `(${target})`,
gray("output to"), gray("output to"),
rcBinaryName, binaryName,
); );
await runPatchver(unzippedName, target, rcBinaryName); await runPatchver(unzippedName, target, binaryName);
// Remove the unpatched binary and rename patched one. // Remove the unpatched binary and rename patched one.
await remove(unzippedName); await remove(unzippedName);
await Deno.rename(rcBinaryName, unzippedName); await Deno.rename(binaryName, unzippedName);
await runRcodesign(target, unzippedName, commitHash); await runRcodesign(target, unzippedName, commitHash);
// Set executable permission // Set executable permission
if (!target.includes("windows")) { if (!target.includes("windows")) {
@ -209,7 +212,7 @@ async function promoteBinariesToRc(commitHash: string) {
"Promote", "Promote",
binaryName, binaryName,
target, target,
"to RC...", `to ${CHANNEL}...`,
); );
await promoteBinaryToRc(binaryName, target, commitHash); await promoteBinaryToRc(binaryName, target, commitHash);
$.logLight( $.logLight(
@ -217,7 +220,7 @@ async function promoteBinariesToRc(commitHash: string) {
"Promoted", "Promoted",
binaryName, binaryName,
target, target,
"to RC!", `to ${CHANNEL}!`,
); );
} }
} }
@ -229,18 +232,21 @@ async function dumpRcVersion() {
const output = await $`./deno -V`.stdout("piped"); const output = await $`./deno -V`.stdout("piped");
const denoVersion = output.stdout.slice(5).split("+")[0]; const denoVersion = output.stdout.slice(5).split("+")[0];
$.logStep("Computed version", denoVersion); $.logStep("Computed version", denoVersion);
await Deno.writeTextFile("./release-rc-latest.txt", `v${denoVersion}`); await Deno.writeTextFile(
`./release-${CHANNEL}-latest.txt`,
`v${denoVersion}`,
);
} }
async function main() { async function main() {
const commitHash = Deno.args[0]; const commitHash = Deno.args[1];
if (!commitHash) { if (!commitHash) {
throw new Error("Commit hash needs to be provided as an argument"); throw new Error("Commit hash needs to be provided as an argument");
} }
$.logStep("Download canary binaries..."); $.logStep("Download canary binaries...");
await fetchLatestCanaryBinaries(commitHash); await fetchLatestCanaryBinaries(commitHash);
console.log("All canary binaries ready"); console.log("All canary binaries ready");
$.logStep("Promote canary binaries to RC..."); $.logStep(`Promote canary binaries to ${CHANNEL}...`);
await promoteBinariesToRc(commitHash); await promoteBinariesToRc(commitHash);
// Finally dump the version name to a `release.txt` file for uploading to GCP // Finally dump the version name to a `release.txt` file for uploading to GCP