Skip to content

Commit

Permalink
ci: temp. pin nightly to avoid ICE
Browse files Browse the repository at this point in the history
There's an unfixed issue with nightly rust that produces an ICE building
the project w/ nightly. Pin a working version until its fixed upstream.
  • Loading branch information
cpu committed May 28, 2024
1 parent 4a0c444 commit 4972f51
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,8 @@ jobs:
- name: Install rust toolchain
uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ matrix.toolchain }}
# TODO(XXX): Revert to "matrix.rust" after rust-lang/rust#125474 is fixed.
toolchain: ${{ matrix.rust == 'nightly' && 'nightly-2024-05-22' || matrix.rust }}
- name: cargo doc (all features)
run: cargo doc --all-features --document-private-items
env:
Expand Down

0 comments on commit 4972f51

Please sign in to comment.