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 2560663 commit 74ecaca
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 @@ -155,7 +155,8 @@ jobs:
- name: Install Rust
uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ matrix.toolchain }}
# TODO(XXX): Revert to "matrix.toolchain" after rust-lang/rust#125474 is fixed.
toolchain: ${{ matrix.toolchain == 'nightly' && 'nightly-2024-05-22' || matrix.toolchain }}
- name: Run cargo check
run: cargo check --all-targets
- name: Run the tests
Expand Down

0 comments on commit 74ecaca

Please sign in to comment.