From c1d9fc8babc97aa74a7291df7e30d48eeda20c38 Mon Sep 17 00:00:00 2001 From: Stephanos Ioannidis Date: Wed, 16 Oct 2024 08:51:37 +0900 Subject: [PATCH] Revert "ci: Add rust target support" This reverts commit 57b4d81bbcc80e121fe1fbef775657555298a54f in order to ensure that the v0.26-branch remains compatible with Zephyr 3.7 LTS. Signed-off-by: Stephanos Ioannidis --- Dockerfile.ci | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/Dockerfile.ci b/Dockerfile.ci index fa770a3..016cfe1 100644 --- a/Dockerfile.ci +++ b/Dockerfile.ci @@ -89,17 +89,6 @@ RUN wget -q -O- "https://sh.rustup.rs" | sh -s -- -y # Install uefi-run utility RUN ~/.cargo/bin/cargo install uefi-run --root /usr -# Install target support for Rust. This is the list as of the current -# time. -RUN \ - ~/.cargo/bin/rustup target install riscv32i-unknown-none-elf && \ - ~/.cargo/bin/rustup target install riscv64imac-unknown-none-elf && \ - ~/.cargo/bin/rustup target install thumbv6m-none-eabi && \ - ~/.cargo/bin/rustup target install thumbv7em-none-eabi && \ - ~/.cargo/bin/rustup target install thumbv7m-none-eabi && \ - ~/.cargo/bin/rustup target install thumbv8m.main-none-eabi && \ - ~/.cargo/bin/rustup target install x86_64-unknown-none - # Install LLVM and Clang RUN wget ${WGET_ARGS} https://apt.llvm.org/llvm.sh && \ chmod +x llvm.sh && \