Update nodejs to v12.18.1 (#529)

It includes an update to v8 7.8
This commit is contained in:
Derek Schuff
2020-06-24 10:41:47 -07:00
committed by GitHub
parent dc74092927
commit c08015164e
3 changed files with 28 additions and 28 deletions

View File

@@ -157,9 +157,9 @@ assert not os.path.exists(LIBC)
# Test the normal tools like node don't re-download on re-install
print('another install must re-download')
checked_call_with_output(emsdk + ' uninstall node-12.9.1-64bit')
checked_call_with_output(emsdk + ' install node-12.9.1-64bit', expected='Downloading:', unexpected='already installed')
checked_call_with_output(emsdk + ' install node-12.9.1-64bit', unexpected='Downloading:', expected='already installed')
checked_call_with_output(emsdk + ' uninstall node-12.18.1-64bit')
checked_call_with_output(emsdk + ' install node-12.18.1-64bit', expected='Downloading:', unexpected='already installed')
checked_call_with_output(emsdk + ' install node-12.18.1-64bit', unexpected='Downloading:', expected='already installed')
print('test tot-upstream')
run_emsdk('install tot-upstream')

View File

@@ -16,7 +16,7 @@ import subprocess
import os
import shutil
version = '12.16.3'
version = '12.18.1'
base = 'https://nodejs.org/dist/latest-v12.x/'
upload_base = 'gs://webassembly/emscripten-releases-builds/deps/'