From 00b76808fb07f03d36a897facce1ff5174affa0c Mon Sep 17 00:00:00 2001 From: tqchen Date: Wed, 17 Jan 2024 09:39:01 -0500 Subject: [PATCH] [CI][WASM] Update emsdk and nodejs version 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 87c95f2936bf..98331d2cbdc2 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 b295d9e3e41d..6d9ef3f5ded8 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