Skip to content

Commit 737aacc

Browse files
Repo File Sync: Update rust toolchain to 1.89 (#480)
synced local file(s) with [microsoft/mu_devops](https://github.com/microsoft/mu_devops). 🤖: View the [Repo File Sync Configuration File](https://github.com/microsoft/mu_devops/blob/main/.sync/Files.yml) to see how files are synced. --- This PR was created automatically by the [repo-file-sync-action](https://github.com/BetaHuhn/repo-file-sync-action) workflow run [#17419366267](https://github.com/microsoft/mu_devops/actions/runs/17419366267) Signed-off-by: Project Mu UEFI Bot <uefibot@microsoft.com> Co-authored-by: mu-automation[bot] <204385837+mu-automation[bot]@users.noreply.github.com>
1 parent ba9eed9 commit 737aacc

3 files changed

Lines changed: 7 additions & 7 deletions

File tree

Containers/Ubuntu-22/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ ENV RUSTUP_HOME="$HOME/.rustup"
123123
ENV PATH="$CARGO_HOME/bin:$PATH"
124124

125125
# Install Rust/Cargo and extras (rust-src, rust fmt, cargo-make, cargo-tarpaulin)
126-
RUN RUST_VERSION=1.85.0 && \
126+
RUN RUST_VERSION=1.89.0 && \
127127
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain ${RUST_VERSION} --profile minimal && \
128128
rustup component add rustfmt rust-src --toolchain ${RUST_VERSION}-x86_64-unknown-linux-gnu
129129

Containers/Ubuntu-24/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ ENV RUSTUP_HOME="$HOME/.rustup"
120120
ENV PATH="$CARGO_HOME/bin:$PATH"
121121

122122
# Install Rust/Cargo and extras (rust-src, rust fmt, cargo-make, cargo-tarpaulin)
123-
RUN RUST_VERSION=1.85.0 && \
123+
RUN RUST_VERSION=1.89.0 && \
124124
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain ${RUST_VERSION} --profile minimal && \
125125
rustup component add rustfmt rust-src --toolchain ${RUST_VERSION}-x86_64-unknown-linux-gnu
126126

Steps/RustSetupSteps.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -79,13 +79,13 @@ steps:
7979
# those on both Linux and Windows agents for consistency in the pipeline runs.
8080
#
8181
- script: |
82-
rustup install --no-self-update 1.85.0
83-
displayName: Install Rust 1.85.0 (Windows)
82+
rustup install --no-self-update 1.89.0
83+
displayName: Install Rust 1.89.0 (Windows)
8484
condition: eq(variables['Agent.OS'], 'Windows_NT')
8585

8686
- script: |
87-
rustup default 1.85.0
88-
displayName: Set Rust 1.85.0 (Windows)
87+
rustup default 1.89.0
88+
displayName: Set Rust 1.89.0 (Windows)
8989
condition: eq(variables['Agent.OS'], 'Windows_NT')
9090

9191
- script: pip install requests --upgrade
@@ -130,6 +130,6 @@ steps:
130130
cargo binstall -y cargo-tarpaulin --version 0.31.5
131131
displayName: Install cargo-tarpaulin
132132

133-
- script: rustup component add rustfmt rust-src --toolchain 1.85.0-$(rust_target_triple)
133+
- script: rustup component add rustfmt rust-src --toolchain 1.89.0-$(rust_target_triple)
134134
displayName: rustup add rust-src
135135
condition: and(succeeded(), eq(variables['Agent.OS'], 'Windows_NT'))

0 commit comments

Comments
 (0)