Skip to content

Commit

Permalink
rust: Update nightly version
Browse files Browse the repository at this point in the history
This is what RIOT-OS#204 should have
been, but as that nightly build did not contain that day's rustc, the
intended version was not installed.
  • Loading branch information
chrysn committed Sep 25, 2022
1 parent ce7a9f2 commit 462468f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions riotbuild/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -325,9 +325,9 @@ 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-09-13 && \
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --profile minimal --default-toolchain nightly-2022-09-25 && \
rustup toolchain add stable && \
for T in nightly-2022-09-13 stable; do \
for T in nightly-2022-09-25 stable; do \
rustup component add rust-src --toolchain \$T && \
rustup target add i686-unknown-linux-gnu --toolchain \$T && \
rustup target add riscv32imac-unknown-none-elf --toolchain \$T && \
Expand Down

0 comments on commit 462468f

Please sign in to comment.