Skip to content

Commit

Permalink
Use Rust 1.82 in pipelines (#206)
Browse files Browse the repository at this point in the history
  • Loading branch information
swernli authored Dec 2, 2024
1 parent b5ad51b commit 8b54aee
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .ado/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ schedules:

variables:
CARGO_TERM_COLOR: always
RUST_TOOLCHAIN_VERSION: "1.78"
RUST_TOOLCHAIN_VERSION: "1.82"
PYTHON_VERSION: "3.11"
LLVM_VERSION: 14
AUDITWHEEL_TAG: "manylinux_2_31_x86_64"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
- name: Setup rust toolchain
uses: ./.github/actions/rust-toolchain
with:
toolchain: 1.78.0
toolchain: 1.82.0
components: rustfmt clippy
- name: cargo fmt
run: cargo fmt -v --all -- --check
Expand Down Expand Up @@ -89,7 +89,7 @@ jobs:
- name: Setup rust toolchain
uses: ./.github/actions/rust-toolchain
with:
toolchain: 1.78.0
toolchain: 1.82.0
components: rustfmt clippy
- name: Install LLVM
uses: ./.github/actions/install-llvm
Expand Down
1 change: 1 addition & 0 deletions stdlib/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,7 @@ mod tests {
}
}

#[ignore = "Test triggers a panic during unwinding"]
#[test]
#[should_panic(expected = "FAIL")]
fn test_fail() {
Expand Down

0 comments on commit 8b54aee

Please sign in to comment.