This is an automated email from the ASF dual-hosted git repository.
junrushao pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/tvm.git
The following commit(s) were added to refs/heads/main by this push:
new 614a7a9e31 [CI][WASM] Update emsdk and nodejs version (#16420)
614a7a9e31 is described below
commit 614a7a9e31e00ddd9442b218a5b7042f3a49e9b1
Author: Tianqi Chen <[email protected]>
AuthorDate: Thu Jan 18 19:36:16 2024 -0500
[CI][WASM] Update emsdk and nodejs version (#16420)
This PR updates the emsdk and nodejs version of docker.
---
docker/install/ubuntu_install_emscripten.sh | 4 ++--
docker/install/ubuntu_install_nodejs.sh | 2 +-
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/docker/install/ubuntu_install_emscripten.sh
b/docker/install/ubuntu_install_emscripten.sh
index 87c95f2936..98331d2cbd 100755
--- a/docker/install/ubuntu_install_emscripten.sh
+++ b/docker/install/ubuntu_install_emscripten.sh
@@ -23,5 +23,5 @@ set -o pipefail
cd /
git clone https://github.com/emscripten-core/emsdk.git
cd emsdk
-./emsdk install 3.1.30
-./emsdk activate 3.1.30
+./emsdk install 3.1.51
+./emsdk activate 3.1.51
diff --git a/docker/install/ubuntu_install_nodejs.sh
b/docker/install/ubuntu_install_nodejs.sh
index b295d9e3e4..6d9ef3f5de 100755
--- a/docker/install/ubuntu_install_nodejs.sh
+++ b/docker/install/ubuntu_install_nodejs.sh
@@ -28,5 +28,5 @@ apt-install-and-clear -y curl
# The node install script fetched and executed here will update the
# apt source list, hence the second apt-get update --fix-missing is necessary.
-curl -s -S -L https://deb.nodesource.com/setup_14.x | bash -
+curl -s -S -L https://deb.nodesource.com/setup_16.x | bash -
apt-install-and-clear -y nodejs