From fda0de4c781b31e9bf53d1dc7c11232a52d6f0fc Mon Sep 17 00:00:00 2001 From: Filip Skokan Date: Wed, 22 Feb 2023 08:45:27 +0100 Subject: [PATCH] tools: cleanup WPT refs in daily-wpt-fyi.yml PR-URL: https://github.com/nodejs/node/pull/46740 Reviewed-By: Yagiz Nizipli Reviewed-By: James M Snell Reviewed-By: Luigi Pinca --- .github/workflows/daily-wpt-fyi.yml | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/.github/workflows/daily-wpt-fyi.yml b/.github/workflows/daily-wpt-fyi.yml index ffde97c61ca835..8572fb816564d6 100644 --- a/.github/workflows/daily-wpt-fyi.yml +++ b/.github/workflows/daily-wpt-fyi.yml @@ -62,10 +62,10 @@ jobs: ref: ${{ env.NIGHTLY_REF || steps.setup-node.outputs.node-version }} - name: Set env.NODE run: echo "NODE=$(which node)" >> $GITHUB_ENV - - name: Set env.WPT_DAILY_REF + - name: Set env.WPT_REVISION env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - run: echo "WPT_DAILY_REF=$(gh api /repos/web-platform-tests/wpt/branches/epochs/daily --jq '.commit.sha')" >> $GITHUB_ENV + run: echo "WPT_REVISION=$(gh api /repos/web-platform-tests/wpt/branches/epochs/daily --jq '.commit.sha')" >> $GITHUB_ENV # replace checked out WPT with the synchronized branch - name: Remove stale WPT @@ -78,10 +78,7 @@ jobs: persist-credentials: false path: test/fixtures/wpt clean: false - ref: ${{ env.WPT_DAILY_REF }} - - name: Set env.WPT_REVISION - run: echo "WPT_REVISION=$(git rev-parse HEAD)" >> $GITHUB_ENV - working-directory: test/fixtures/wpt + ref: ${{ env.WPT_REVISION }} - name: Run WPT and generate report run: make test-wpt-report || true