Skip to content

Commit 622e6f5

Browse files
committed
Update node to v12.16.2
1 parent 991678c commit 622e6f5

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
@@ -6,6 +6,6 @@ set -ex
66
source /emsdk-portable/emsdk_env.sh &> /dev/null
77

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

1111
exec "$@"

ci/emscripten.sh

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

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

libc-test/build.rs

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

2028+
// FIXME: Investigate why CI is missing it.
2029+
"clearenv" => true,
2030+
20282031
_ => false,
20292032
}
20302033
});

0 commit comments

Comments
 (0)