From 4b8b92fccc110dbc5e0b3e745445e6bc9a3b4345 Mon Sep 17 00:00:00 2001 From: Marco Ippolito Date: Mon, 11 Mar 2024 11:33:57 +0100 Subject: [PATCH] tools: automate gyp-next update PR-URL: https://github.com/nodejs/node/pull/52014 Reviewed-By: Chengzhong Wu Reviewed-By: Luigi Pinca --- .github/workflows/tools.yml | 9 ++++ tools/dep_updaters/update-gyp-next.sh | 66 +++++++++++++++++++++++++++ 2 files changed, 75 insertions(+) create mode 100755 tools/dep_updaters/update-gyp-next.sh diff --git a/.github/workflows/tools.yml b/.github/workflows/tools.yml index 91125e06c7008b..bdd75277b29607 100644 --- a/.github/workflows/tools.yml +++ b/.github/workflows/tools.yml @@ -25,6 +25,7 @@ on: - eslint - github_reporter - googletest + - gyp-next - histogram - icu # - libuv @@ -157,6 +158,14 @@ jobs: cat temp-output tail -n1 temp-output | grep "NEW_VERSION=" >> "$GITHUB_ENV" || true rm temp-output + - id: gyp-next + subsystem: tools + label: tools + run: | + ./tools/dep_updaters/update-gyp-next.sh > temp-output + cat temp-output + tail -n1 temp-output | grep "NEW_VERSION=" >> "$GITHUB_ENV" || true + rm temp-output - id: histogram subsystem: deps label: dependencies diff --git a/tools/dep_updaters/update-gyp-next.sh b/tools/dep_updaters/update-gyp-next.sh new file mode 100755 index 00000000000000..6fdb7d41774bd6 --- /dev/null +++ b/tools/dep_updaters/update-gyp-next.sh @@ -0,0 +1,66 @@ +#!/bin/sh +set -e +# Shell script to update gyp-next in the source tree to specific version + +BASE_DIR=$(cd "$(dirname "$0")/../.." && pwd) + +[ -z "$NODE" ] && NODE="$BASE_DIR/out/Release/node" +[ -x "$NODE" ] || NODE=$(command -v node) + +# shellcheck disable=SC1091 +. "$BASE_DIR/tools/dep_updaters/utils.sh" + +NEW_VERSION="$("$NODE" --input-type=module <<'EOF' +const res = await fetch('https://api.github.com/repos/nodejs/gyp-next/releases/latest'); +if (!res.ok) throw new Error(`FetchError: ${res.status} ${res.statusText}`, { cause: res }); +const { tag_name } = await res.json(); +console.log(tag_name.replace('v', '')); +EOF +)" + +CURRENT_VERSION=$(grep -m 1 version ./tools/gyp/pyproject.toml | tr -s ' ' | tr -d '"' | tr -d "'" | cut -d' ' -f3) + +# This function exit with 0 if new version and current version are the same +compare_dependency_version "gyp-next" "$NEW_VERSION" "$CURRENT_VERSION" + +echo "Making temporary workspace" + +WORKSPACE=$(mktemp -d 2> /dev/null || mktemp -d -t 'tmp') + +cleanup () { + EXIT_CODE=$? + [ -d "$WORKSPACE" ] && rm -rf "$WORKSPACE" + exit $EXIT_CODE +} + +trap cleanup INT TERM EXIT + +GYP_NEXT_TARBALL="$NEW_VERSION.tar.gz" + +cd "$WORKSPACE" + +curl -sL -o "$GYP_NEXT_TARBALL" "https://github.com/nodejs/gyp-next/archive/refs/tags/v$NEW_VERSION.tar.gz" + +log_and_verify_sha256sum "gyp-next" "$GYP_NEXT_TARBALL" + +gzip -dc "$GYP_NEXT_TARBALL" | tar xf - + +rm "$GYP_NEXT_TARBALL" + +mv "gyp-next-$NEW_VERSION" gyp + +rm -rf "$BASE_DIR/tools/gyp" + +mv "$WORKSPACE/gyp" "$BASE_DIR/tools/" + +echo "All done!" +echo "" +echo "Please git add gyp-next and commit the new version:" +echo "" +echo "$ git add -A tools/gyp" +echo "$ git commit -m \"tools: update gyp-next to $NEW_VERSION\"" +echo "" + +# The last line of the script should always print the new version, +# as we need to add it to $GITHUB_ENV variable. +echo "NEW_VERSION=$NEW_VERSION"