Skip to content

Commit

Permalink
Merge pull request #9 from djkoloski/fix_nightly_toolchain
Browse files Browse the repository at this point in the history
Pin nightly toolchain to fix CI
  • Loading branch information
finnbear authored Jul 7, 2023
2 parents f5af7b7 + 6caba24 commit 318da4a
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,13 @@ jobs:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: nightly
# Nightly toolchain must ship the `rust-std` component for
# `i686-unknown-linux-gnu` and `mips64-unknown-linux-gnuabi64`.
# In practice, `rust-std` almost always ships for
# `i686-unknown-linux-gnu` so we just need to check this page for a
# compatible nightly:
# https://rust-lang.github.io/rustup-components-history/mips64-unknown-linux-gnuabi64.html
toolchain: nightly-2023-07-04
override: true
components: rustfmt, miri
- name: Lint
Expand Down

0 comments on commit 318da4a

Please sign in to comment.