Skip to content

Commit

Permalink
update rust version to 1.84 for CI and Release
Browse files Browse the repository at this point in the history
  • Loading branch information
orpuente-MS committed Jan 17, 2025
1 parent aed465a commit d9e6a40
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .ado/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ schedules:

variables:
CARGO_TERM_COLOR: always
RUST_TOOLCHAIN_VERSION: "1.82"
RUST_TOOLCHAIN_VERSION: "1.84"

resources:
repositories:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/bench-reports.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ env:
CARGO_TERM_COLOR: always
NODE_VERSION: "18.17.1"
PYTHON_VERSION: "3.11"
RUST_TOOLCHAIN_VERSION: "1.82"
RUST_TOOLCHAIN_VERSION: "1.84"

jobs:
runBenchmark:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ env:
CARGO_TERM_COLOR: always
NODE_VERSION: "18.17.1"
PYTHON_VERSION: "3.11"
RUST_TOOLCHAIN_VERSION: "1.82"
RUST_TOOLCHAIN_VERSION: "1.84"
RUST_TOOLCHAIN_COMPONENTS: rustfmt clippy

jobs:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/memory_profile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ env:
CARGO_TERM_COLOR: always
NODE_VERSION: "18.17.1"
PYTHON_VERSION: "3.11"
RUST_TOOLCHAIN_VERSION: "1.82"
RUST_TOOLCHAIN_VERSION: "1.84"
RUST_TOOLCHAIN_COMPONENTS: rustfmt clippy

jobs:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-playground.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ on:

env:
CARGO_TERM_COLOR: always
RUST_TOOLCHAIN_VERSION: "1.82"
RUST_TOOLCHAIN_VERSION: "1.84"
RUST_TOOLCHAIN_COMPONENTS: rustfmt clippy

# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
Expand Down
6 changes: 3 additions & 3 deletions prereqs.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,14 @@
import functools

python_ver = (3, 11) # Python support for Windows on ARM64 requires v3.11 or later
rust_ver = (1, 82) # Ensure Rust version 1.82 or later is installed
rust_ver = (1, 84) # Ensure Rust version 1.84 or later is installed
node_ver = (
18,
17,
)
wasmpack_ver = (0, 12, 1) # Latest tested wasm-pack version
rust_fmt_ver = (1, 7, 1) # Current version when Rust 1.82 shipped
clippy_ver = (0, 1, 82)
rust_fmt_ver = (1, 8, 0) # Current version when Rust 1.84 shipped
clippy_ver = (0, 1, 84)

# Disable buffered output so that the log statements and subprocess output get interleaved in proper order
print = functools.partial(print, flush=True)
Expand Down

0 comments on commit d9e6a40

Please sign in to comment.