Skip to content

Commit

Permalink
Auto merge of rust-lang#82747 - JohnTitor:pin-es-check-version, r=Mar…
Browse files Browse the repository at this point in the history
…k-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. rust-lang#80723 (comment).
es-check v5.2.2 fixes it but let's pin its version to prevent further failures.
  • Loading branch information
bors committed Mar 4, 2021
2 parents 4099208 + ed473af commit 45b3c28
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/ci/docker/host-x86_64/mingw-check/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 45b3c28

Please sign in to comment.