about summary refs log tree commit diff
path: root/src/ci/docker
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2021-03-04 19:24:21 +0000
committerbors <bors@rust-lang.org>2021-03-04 19:24:21 +0000
commit45b3c28518e4c45dfd12bc2c4400c0d0e9639927 (patch)
tree81ab8a148c6acb79486933f2c0c634193ebda824 /src/ci/docker
parent409920873cf8a95739a55dc5fe5adb05e1b4758e (diff)
parented473af951cccd50826561fbbe2c3bc3bf21d0c6 (diff)
downloadrust-45b3c28518e4c45dfd12bc2c4400c0d0e9639927.tar.gz
rust-45b3c28518e4c45dfd12bc2c4400c0d0e9639927.zip
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. https://github.com/rust-lang/rust/pull/80723#issuecomment-790294196.
es-check v5.2.2 fixes it but let's pin its version to prevent further failures.
Diffstat (limited to 'src/ci/docker')
-rw-r--r--src/ci/docker/host-x86_64/mingw-check/Dockerfile3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/ci/docker/host-x86_64/mingw-check/Dockerfile b/src/ci/docker/host-x86_64/mingw-check/Dockerfile
index cb50e0c8f74..a9398649cf0 100644
--- a/src/ci/docker/host-x86_64/mingw-check/Dockerfile
+++ b/src/ci/docker/host-x86_64/mingw-check/Dockerfile
@@ -20,7 +20,8 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
 RUN curl -sL https://nodejs.org/dist/v14.4.0/node-v14.4.0-linux-x64.tar.xz | tar -xJ
 ENV PATH="/node-v14.4.0-linux-x64/bin:${PATH}"
 # Install es-check
-RUN npm install es-check -g
+# Pin its version to prevent unrelated CI failures due to future es-check versions.
+RUN npm install es-check@5.2.3 -g
 
 COPY scripts/sccache.sh /scripts/
 RUN sh /scripts/sccache.sh