Skip to content

Commit de4d83e

Browse files
authored
Update the version of node we use to install jsvu/v8 (#18449)
See GoogleChromeLabs/jsvu@28ab560#r94690556
1 parent ad99d3e commit de4d83e

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.circleci/config.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -376,9 +376,11 @@ jobs:
376376
- run:
377377
name: get v8
378378
command: |
379-
wget https://nodejs.org/dist/v12.13.0/node-v12.13.0-linux-x64.tar.xz
380-
tar -xf node-v12.13.0-linux-x64.tar.xz
381-
export PATH="`pwd`/node-v12.13.0-linux-x64/bin:${PATH}"
379+
# We can't use a more recent version of node here because the linux
380+
# image we are using doesn't have a recent enough glibc.
381+
wget https://nodejs.org/dist/v15.14.0/node-v15.14.0-linux-x64.tar.xz
382+
tar -xf node-v15.14.0-linux-x64.tar.xz
383+
export PATH="`pwd`/node-v15.14.0-linux-x64/bin:${PATH}"
382384
npm install jsvu -g
383385
export PATH="${HOME}/.jsvu:${PATH}"
384386
jsvu --os=default --engines=v8 v8@${V8_VERSION}

0 commit comments

Comments
 (0)