Commit 2cb00857 authored by Mark Banner's avatar Mark Banner
Browse files

Bug 1806497 - Update node to v16.19.0. r=firefox-build-system-reviewers,glandium

parent 41bb7a59
Loading
Loading
Loading
Loading
+15 −15
Original line number Diff line number Diff line
@@ -494,9 +494,9 @@ nodejs-16-linux64:
    description: nodejs 16 for x64 linux
    fetch:
        type: static-url
        url: https://nodejs.org/dist/v16.17.1/node-v16.17.1-linux-x64.tar.xz
        sha256: 06ba2eb34aa385967f5f58c87a44753f83212f6cccea892b33f80a2e7fda8384
        size: 22423816
        url: https://nodejs.org/dist/v16.19.0/node-v16.19.0-linux-x64.tar.xz
        sha256: c88b52497ab38a3ddf526e5b46a41270320409109c3f74171b241132984fd08f
        size: 22492000
        artifact-name: nodejs.tar.zst
        strip-components: 1
        add-prefix: node/
@@ -516,9 +516,9 @@ nodejs-16-macosx64:
    description: nodejs 16 for x64 macOS
    fetch:
        type: static-url
        url: https://nodejs.org/dist/v16.17.1/node-v16.17.1-darwin-x64.tar.xz
        sha256: 8e7089956fa01cf7d0045945c0863d282dc6818fb0476237c1396497e29a4254
        size: 20887472
        url: https://nodejs.org/dist/v16.19.0/node-v16.19.0-darwin-x64.tar.xz
        sha256: 601d1d632b9815dbb647f5cd440a95fa651110b5b4bcaf07ed3aa7886525716b
        size: 20975524
        artifact-name: nodejs.tar.zst
        strip-components: 1
        add-prefix: node/
@@ -527,9 +527,9 @@ nodejs-16-macosx64-arm64:
    description: nodejs 16 for arm64 macOS
    fetch:
        type: static-url
        url: https://nodejs.org/dist/v16.17.1/node-v16.17.1-darwin-arm64.tar.xz
        sha256: 09a45f60bfb9dfbea4f69044dc733ef983945acd92ca89ccccac267f3d71bd44
        size: 19291192
        url: https://nodejs.org/dist/v16.19.0/node-v16.19.0-darwin-arm64.tar.xz
        sha256: 7313c9db5f5140ece847a97f366032a10bddb6d87fa28a361ada918addcd5c73
        size: 19363804
        artifact-name: nodejs.tar.zst
        strip-components: 1
        add-prefix: node/
@@ -549,9 +549,9 @@ nodejs-16-win32:
    description: nodejs 16 for x86 Windows
    fetch:
        type: static-url
        url: https://nodejs.org/dist/v16.17.1/node-v16.17.1-win-x86.zip
        sha256: 189b5e8b23226403e7b07a46614de19b444d369e694901e3668e2f549799cbcd
        size: 25312816
        url: https://nodejs.org/dist/v16.19.0/node-v16.19.0-win-x86.zip
        sha256: 17e2bf8ed00b3d15321743104104c8b6ef55677dfc18ee2ed44de64fbf2c4def
        size: 25424808
        artifact-name: nodejs.tar.zst
        strip-components: 1
        add-prefix: node/
@@ -571,9 +571,9 @@ nodejs-16-win64:
    description: nodejs 16 for x64 Windows
    fetch:
        type: static-url
        url: https://nodejs.org/dist/v16.17.1/node-v16.17.1-win-x64.zip
        sha256: ed290151efb417262b9808a70738d4ab79e9d53653a6a9f4b8dd97912e279dce
        size: 26956744
        url: https://nodejs.org/dist/v16.19.0/node-v16.19.0-win-x64.zip
        sha256: 534ca7a24e999c81cec847a498cc43d47e2bb158f6edf639e5297f2718350e96
        size: 27072850
        artifact-name: nodejs.tar.zst
        strip-components: 1
        add-prefix: node/
+2 −2
Original line number Diff line number Diff line
@@ -8,8 +8,8 @@
# taskcluster/scripts/misc/repack-node.sh. Later we'll get the ESLint builder
# to use the linux64-node toolchain directly.

wget -O node.xz --progress=dot:mega https://nodejs.org/dist/v16.17.1/node-v16.17.1-linux-x64.tar.xz
echo '06ba2eb34aa385967f5f58c87a44753f83212f6cccea892b33f80a2e7fda8384' node.xz | sha256sum -c
wget -O node.xz --progress=dot:mega https://nodejs.org/dist/v16.19.0/node-v16.19.0-linux-x64.tar.xz
echo 'c88b52497ab38a3ddf526e5b46a41270320409109c3f74171b241132984fd08f' node.xz | sha256sum -c
tar -C /usr/local -xJ --strip-components 1 < node.xz
node -v  # verify
npm -v