We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ad99d3e commit de4d83eCopy full SHA for de4d83e
.circleci/config.yml
@@ -376,9 +376,11 @@ jobs:
376
- run:
377
name: get v8
378
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}"
+ # We can't use a more recent version of node here because the linux
+ # image we are using doesn't have a recent enough glibc.
+ 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}"
384
npm install jsvu -g
385
export PATH="${HOME}/.jsvu:${PATH}"
386
jsvu --os=default --engines=v8 v8@${V8_VERSION}
0 commit comments