Skip to content

Commit

Permalink
[CI] Upgrade to rust 1.82.0
Browse files Browse the repository at this point in the history
  • Loading branch information
glandium committed Oct 19, 2024
1 parent 1359084 commit 4fb9f8d
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/cargo-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
toolchain: [1.81.0]
toolchain: [1.82.0]
include:
- os: windows-latest
toolchain: 1.81.0-x86_64-pc-windows-gnu
toolchain: 1.82.0-x86_64-pc-windows-gnu
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
toolchain: [1.81.0]
toolchain: [1.82.0]
include:
- os: windows-latest
toolchain: 1.81.0-x86_64-pc-windows-gnu
toolchain: 1.82.0-x86_64-pc-windows-gnu
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -59,7 +59,7 @@ jobs:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@master
with:
toolchain: 1.81.0
toolchain: 1.82.0
components: rustfmt
- run: cargo fmt -- --check

Expand All @@ -68,10 +68,10 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
toolchain: [1.81.0, 1.74.0]
toolchain: [1.82.0, 1.74.0]
include:
- os: windows-latest
toolchain: 1.81.0-x86_64-pc-windows-gnu
toolchain: 1.82.0-x86_64-pc-windows-gnu
- os: windows-latest
toolchain: 1.74.0-x86_64-pc-windows-gnu
runs-on: ${{ matrix.os }}
Expand Down
2 changes: 1 addition & 1 deletion CI/tools.py
Original file line number Diff line number Diff line change
Expand Up @@ -347,7 +347,7 @@ def install(self):
return ["{} -m pip install {}".format(python, filename)]


def install_rust(version="1.81.0", target="x86_64-unknown-linux-gnu"):
def install_rust(version="1.82.0", target="x86_64-unknown-linux-gnu"):
rustup_opts = "-y --default-toolchain none"
cargo_dir = "$HOME/.cargo/bin/"
rustup = cargo_dir + "rustup"
Expand Down

0 comments on commit 4fb9f8d

Please sign in to comment.