Skip to content

Commit

Permalink
Pin to a working nightly
Browse files Browse the repository at this point in the history
Temporarily modify rust-toolchain.toml to pin to `nightly-2022-08-26`,
as compilation is broken on current nightly due to
rust-osdev#500. `nightly-2022-09-01`
is the most recent nightly that avoids the bug, but it doesn't have miri
(which is run by CI), so pin to a slightly older version.

This change should be reverted once rust-osdev#500 is fixed.
  • Loading branch information
nicholasbishop committed Sep 4, 2022
1 parent cb50b77 commit ff9b514
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions rust-toolchain.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
[toolchain]
# Nightly is required due to use of unstable features.
channel = "nightly"
# Pinned due to https://github.com/rust-osdev/uefi-rs/issues/500.
#
# Compilation started failing 2022-09-02. The previous several builds
# don't have miri available though, so pin to a slightly older version.
channel = "nightly-2022-08-26"
components = [
# Needed for `cargo xtask miri`.
"miri",
Expand Down

0 comments on commit ff9b514

Please sign in to comment.