From 2cb94231ea6a4c77e2eee9d26904e3307b1a0f08 Mon Sep 17 00:00:00 2001 From: "mu-automation[bot]" <204385837+mu-automation[bot]@users.noreply.github.com> Date: Tue, 16 Dec 2025 09:07:40 +0000 Subject: [PATCH] Repo File Sync: synced file(s) with microsoft/mu_devops Signed-off-by: Project Mu UEFI Bot --- Containers/Ubuntu-22/Dockerfile | 2 +- Containers/Ubuntu-24/Dockerfile | 2 +- Steps/RustSetupSteps.yml | 10 +++++----- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Containers/Ubuntu-22/Dockerfile b/Containers/Ubuntu-22/Dockerfile index 162beb03..4df538ec 100644 --- a/Containers/Ubuntu-22/Dockerfile +++ b/Containers/Ubuntu-22/Dockerfile @@ -123,7 +123,7 @@ ENV RUSTUP_HOME="$HOME/.rustup" ENV PATH="$CARGO_HOME/bin:$PATH" # Install Rust/Cargo and extras (rust-src, rust fmt, cargo-make, cargo-tarpaulin) -RUN RUST_VERSION=1.89.0 && \ +RUN RUST_VERSION=1.92.0 && \ curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain ${RUST_VERSION} --profile minimal && \ rustup component add rustfmt rust-src --toolchain ${RUST_VERSION}-x86_64-unknown-linux-gnu diff --git a/Containers/Ubuntu-24/Dockerfile b/Containers/Ubuntu-24/Dockerfile index 81969caf..a9fe7f48 100644 --- a/Containers/Ubuntu-24/Dockerfile +++ b/Containers/Ubuntu-24/Dockerfile @@ -120,7 +120,7 @@ ENV RUSTUP_HOME="$HOME/.rustup" ENV PATH="$CARGO_HOME/bin:$PATH" # Install Rust/Cargo and extras (rust-src, rust fmt, cargo-make, cargo-tarpaulin) -RUN RUST_VERSION=1.89.0 && \ +RUN RUST_VERSION=1.92.0 && \ curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain ${RUST_VERSION} --profile minimal && \ rustup component add rustfmt rust-src --toolchain ${RUST_VERSION}-x86_64-unknown-linux-gnu diff --git a/Steps/RustSetupSteps.yml b/Steps/RustSetupSteps.yml index 40c9fe95..f30cba51 100644 --- a/Steps/RustSetupSteps.yml +++ b/Steps/RustSetupSteps.yml @@ -79,13 +79,13 @@ steps: # those on both Linux and Windows agents for consistency in the pipeline runs. # - script: | - rustup install --no-self-update 1.89.0 - displayName: Install Rust 1.89.0 (Windows) + rustup install --no-self-update 1.92.0 + displayName: Install Rust 1.92.0 (Windows) condition: eq(variables['Agent.OS'], 'Windows_NT') - script: | - rustup default 1.89.0 - displayName: Set Rust 1.89.0 (Windows) + rustup default 1.92.0 + displayName: Set Rust 1.92.0 (Windows) condition: eq(variables['Agent.OS'], 'Windows_NT') - script: pip install requests --upgrade @@ -130,6 +130,6 @@ steps: cargo binstall -y cargo-tarpaulin --version 0.31.5 displayName: Install cargo-tarpaulin -- script: rustup component add rustfmt rust-src --toolchain 1.89.0-$(rust_target_triple) +- script: rustup component add rustfmt rust-src --toolchain 1.92.0-$(rust_target_triple) displayName: rustup add rust-src condition: and(succeeded(), eq(variables['Agent.OS'], 'Windows_NT'))