From f55fdac559c73354fb37620a6aa35cab7754e314 Mon Sep 17 00:00:00 2001 From: chrysn Date: Tue, 8 Mar 2022 20:07:31 +0100 Subject: [PATCH] rust: Update nightly version This ensures that after the 2020.04 release the supported stable version can be bumped to Rust 1.61. Using Rust 1.61 to its full potential will require removing feature declarations, and if riot-wrappers has those features removed, building it needs a recent nightly (like this) that does not need them declared. --- riotbuild/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/riotbuild/Dockerfile b/riotbuild/Dockerfile index 24d6bff1..cc5ffd80 100644 --- a/riotbuild/Dockerfile +++ b/riotbuild/Dockerfile @@ -292,7 +292,7 @@ ENV RUSTUP_HOME /opt/rustup/.rustup RUN \ RUSTUP_HOME=/opt/rustup/.rustup \ CARGO_HOME=/opt/rustup/.cargo sh -c "\ - curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --profile minimal --default-toolchain nightly-2022-01-07 && \ + curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --profile minimal --default-toolchain nightly-2022-03-08 && \ rustup component add rust-src && \ rustup target add i686-unknown-linux-gnu && \ rustup target add riscv32imac-unknown-none-elf && \