Skip to content

Commit

Permalink
.sync/Version.njk: Update to Rust 1.74 (#310)
Browse files Browse the repository at this point in the history
Routine update.

Signed-off-by: Michael Kubacki <[email protected]>
  • Loading branch information
makubacki authored Feb 5, 2024
1 parent 39e99d4 commit af0c4bd
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .sync/Version.njk
Original file line number Diff line number Diff line change
Expand Up @@ -40,4 +40,4 @@
{% set linux_build_container = "ghcr.io/microsoft/mu_devops/ubuntu-22-build:1082f35" %}

{# The Rust toolchain version to use. #}
{% set rust_toolchain = "1.73.0" %}
{% set rust_toolchain = "1.74.0" %}
8 changes: 4 additions & 4 deletions Steps/RustSetupSteps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,9 +79,9 @@ steps:
# those on both Linux and Windows agents for consistency in the pipeline runs.
#
- script: |
rustup install 1.73.0
rustup default 1.73.0
displayName: Install Rust 1.73.0 (Windows)
rustup install 1.74.0
rustup default 1.74.0
displayName: Install Rust 1.74.0 (Windows)
condition: eq(variables['Agent.OS'], 'Windows_NT')

- script: pip install requests --upgrade
Expand Down Expand Up @@ -136,6 +136,6 @@ steps:
displayName: Copy cargo-tarpaulin
condition: and(succeeded(), eq(variables['Agent.OS'], 'Linux'))

- script: rustup component add rustfmt rust-src --toolchain 1.73.0-$(rust_target_triple)
- script: rustup component add rustfmt rust-src --toolchain 1.74.0-$(rust_target_triple)
displayName: rustup add rust-src
condition: and(succeeded(), eq(variables['Agent.OS'], 'Windows_NT'))

0 comments on commit af0c4bd

Please sign in to comment.