Skip to content

Commit

Permalink
[CI] Upgrade to rust 1.83.0
Browse files Browse the repository at this point in the history
  • Loading branch information
glandium committed Dec 11, 2024
1 parent 73096b2 commit 12d5085
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.82.0]
toolchain: [1.83.0]
include:
- os: windows-latest
toolchain: 1.82.0-x86_64-pc-windows-gnu
toolchain: 1.83.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.82.0]
toolchain: [1.83.0]
include:
- os: windows-latest
toolchain: 1.82.0-x86_64-pc-windows-gnu
toolchain: 1.83.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.82.0
toolchain: 1.83.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.82.0, 1.75.0]
toolchain: [1.83.0, 1.75.0]
include:
- os: windows-latest
toolchain: 1.82.0-x86_64-pc-windows-gnu
toolchain: 1.83.0-x86_64-pc-windows-gnu
- os: windows-latest
toolchain: 1.75.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 @@ -356,7 +356,7 @@ def install(self):
return ["{} -m pip install --force-reinstall {}".format(python, filename)]


def install_rust(version="1.82.0", target="x86_64-unknown-linux-gnu"):
def install_rust(version="1.83.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 12d5085

Please sign in to comment.