File tree 4 files changed +20
-8
lines changed
4 files changed +20
-8
lines changed Original file line number Diff line number Diff line change @@ -21,10 +21,12 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
21
21
mingw-w64 \
22
22
&& rm -rf /var/lib/apt/lists/*
23
23
24
- RUN curl -sL https://nodejs.org/dist/v16.9.0/node-v16.9.0-linux-x64.tar.xz | tar -xJ
25
- ENV PATH="/node-v16.9.0-linux-x64/bin:${PATH}"
26
24
ENV RUST_CONFIGURE_ARGS="--set rust.validate-mir-opts=3"
27
25
26
+ COPY scripts/nodejs.sh /scripts/
27
+ RUN sh /scripts/nodejs.sh /node
28
+ ENV PATH="/node/bin:${PATH}"
29
+
28
30
# Install es-check
29
31
# Pin its version to prevent unrelated CI failures due to future es-check versions.
30
32
RUN npm install es-check@6.1.1 eslint@8.6.0 -g
Original file line number Diff line number Diff line change @@ -28,8 +28,9 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
28
28
qemu-system-x86 \
29
29
&& rm -rf /var/lib/apt/lists/*
30
30
31
- RUN curl -sL https://nodejs.org/dist/v18.12.0/node-v18.12.0-linux-x64.tar.xz | \
32
- tar -xJ
31
+ COPY scripts/nodejs.sh /scripts/
32
+ RUN sh /scripts/nodejs.sh /node
33
+ ENV PATH="/node/bin:${PATH}"
33
34
34
35
WORKDIR /build/
35
36
COPY scripts/musl-toolchain.sh /build/
@@ -45,7 +46,6 @@ ENV WASI_SDK_PATH=/wasi-sdk-22.0
45
46
46
47
ENV RUST_CONFIGURE_ARGS \
47
48
--musl-root-x86_64=/usr/local/x86_64-linux-musl \
48
- --set build.nodejs=/node-v18.12.0-linux-x64/bin/node \
49
49
--set rust.lld
50
50
51
51
# Some run-make tests have assertions about code size, and enabling debug
Original file line number Diff line number Diff line change @@ -72,9 +72,9 @@ ENV GCC_EXEC_PREFIX="/usr/lib/gcc/"
72
72
73
73
COPY host-x86_64/x86_64-gnu-tools/checktools.sh /tmp/
74
74
75
- RUN curl -sL https:// nodejs.org/dist/v14.20.0/node-v14.20.0-linux-x64.tar.xz | tar -xJ
76
- ENV NODE_FOLDER=/node-v14.20.0-linux-x64/bin
77
- ENV PATH="$NODE_FOLDER :${PATH}"
75
+ COPY scripts/ nodejs.sh /scripts/
76
+ RUN sh /scripts/nodejs.sh /node
77
+ ENV PATH="/node/bin :${PATH}"
78
78
79
79
COPY host-x86_64/x86_64-gnu-tools/browser-ui-test.version /tmp/
80
80
Original file line number Diff line number Diff line change
1
+ #! /bin/sh
2
+
3
+ set -ex
4
+
5
+ NODEJS_VERSION=v20.12.2
6
+ INSTALL_PATH=${1:-/ node}
7
+
8
+ url=" https://nodejs.org/dist/${NODEJS_VERSION} /node-${NODEJS_VERSION} -linux-x64.tar.xz"
9
+ curl -sL " $url " | tar -xJ
10
+ mv node-${NODEJS_VERSION} -linux-x64 " ${INSTALL_PATH} "
You can’t perform that action at this time.
0 commit comments