Skip to content

Commit 45b3c28

Browse files
committedMar 4, 2021
Auto merge of #82747 - JohnTitor:pin-es-check-version, r=Mark-Simulacrum
Pin es-check version to prevent unrelated CI failures es-check v5.2.1 causes a lot of unrelated CI failures on mingw-check, e.g. #80723 (comment). es-check v5.2.2 fixes it but let's pin its version to prevent further failures.
2 parents 4099208 + ed473af commit 45b3c28

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed
 

‎src/ci/docker/host-x86_64/mingw-check/Dockerfile

+2-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
2020
RUN curl -sL https://nodejs.org/dist/v14.4.0/node-v14.4.0-linux-x64.tar.xz | tar -xJ
2121
ENV PATH="/node-v14.4.0-linux-x64/bin:${PATH}"
2222
# Install es-check
23-
RUN npm install es-check -g
23+
# Pin its version to prevent unrelated CI failures due to future es-check versions.
24+
RUN npm install es-check@5.2.3 -g
2425

2526
COPY scripts/sccache.sh /scripts/
2627
RUN sh /scripts/sccache.sh

0 commit comments

Comments
 (0)