Skip to content

Commit 8a328ba

Browse files
committed
Update node to v12.16.2
1 parent 7cc3ad0 commit 8a328ba

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

ci/emscripten-entry.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@ set -ex
1515
source /emsdk-portable/emsdk_env.sh &> /dev/null
1616

1717
# emsdk-portable provides a node binary, but we need version 8 to run wasm
18-
export PATH="/node-v12.3.1-linux-x64/bin:$PATH"
18+
export PATH="/node-v12.16.2-linux-x64/bin:$PATH"
1919

2020
exec "$@"

ci/emscripten.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,5 +48,5 @@ chmod a+rxw -R /emsdk-portable
4848

4949
# node 8 is required to run wasm
5050
cd /
51-
curl --retry 5 -L https://nodejs.org/dist/v12.3.1/node-v12.3.1-linux-x64.tar.xz | \
51+
curl --retry 5 -L https://nodejs.org/dist/v12.16.2/node-v12.16.2-linux-x64.tar.xz | \
5252
tar -xJ

libc-test/build.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2020,6 +2020,9 @@ fn test_emscripten(target: &str) {
20202020
// FIXME: https://github.com/rust-lang/libc/issues/1272
20212021
"execv" | "execve" | "execvp" | "execvpe" | "fexecve" => true,
20222022

2023+
// FIXME: Investigate why CI is missing it.
2024+
"clearenv" => true,
2025+
20232026
_ => false,
20242027
}
20252028
});

0 commit comments

Comments
 (0)