From e6167ec647751d3bbaa4ec520138b19cd75d37bd Mon Sep 17 00:00:00 2001 From: Dylan McKay Date: Fri, 29 Jan 2021 20:32:08 +1300 Subject: [PATCH] [CI] Pin the nightly version in the Dockerfile to one that is working --- Dockerfile.ci | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile.ci b/Dockerfile.ci index 60b7d62..f553e6d 100644 --- a/Dockerfile.ci +++ b/Dockerfile.ci @@ -10,7 +10,8 @@ RUN mkdir -p /code && chown avr-rust:avr-rust /code USER avr-rust # Install Rustup along with nightly -RUN wget -q https://sh.rustup.rs -O /tmp/rustup.sh && sh /tmp/rustup.sh -y --profile minimal --default-toolchain nightly -c rust-src --quiet +# TODO: Unpin from Jan 2021 nightly. The nightlies broke midway through the month. +RUN wget -q https://sh.rustup.rs -O /tmp/rustup.sh && sh /tmp/rustup.sh -y --profile minimal --default-toolchain nightly-2021-01-05 -c rust-src --quiet ENV PATH=/home/avr-rust/.cargo/bin:$PATH COPY --chown=avr-rust:avr-rust . /code/ruduino