Skip to content

Commit 377f180

Browse files
authored
Pin nightly rust version to fix failing MIRI job (#8183)
# Which issue does this PR close? - Related to #8181 # Rationale for this change I am trying to get CI clean on main in preparation for a release, but sadly the MIRI job started failing with an internal (rust) compiler error I believe this is due to the fact we are using bleeding edge rust (nightly) # What changes are included in this PR? Temporarily pin the MIRI job to use nightly from last night rather than now # Are these changes tested? Yes by CI # Are there any user-facing changes? No
1 parent 4ac3114 commit 377f180

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/miri.yaml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,12 @@ jobs:
5252
submodules: true
5353
- name: Setup Rust toolchain
5454
run: |
55-
rustup toolchain install nightly --component miri
56-
rustup override set nightly
55+
# Temp pin to nightly-2025-08-18 until https://github.com/rust-lang/rust/issues/145652 is resolved
56+
# See https://github.com/apache/arrow-rs/issues/8181 for more details
57+
rustup toolchain install nightly-2025-08-18 --component miri
58+
rustup override set nightly-2025-08-18
59+
# rustup toolchain install nightly --component miri
60+
# rustup override set nightly
5761
cargo miri setup
5862
- name: Run Miri Checks
5963
env:

0 commit comments

Comments
 (0)