Skip to content

Commit

Permalink
ci: Unpin nightly (#1179)
Browse files Browse the repository at this point in the history
The ICE on nightly got fixed with a revert commit

rust-lang/rust@98489f2
  • Loading branch information
aborgna-q authored Jun 7, 2024
1 parent 1cdaeed commit 6800e68
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 8 deletions.
9 changes: 2 additions & 7 deletions .github/workflows/ci-rs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -123,9 +123,7 @@ jobs:
strategy:
fail-fast: true
matrix:
# Pinned nightly version until this gets resolved:
# https://github.com/rust-lang/rust/issues/125474
rust: ['1.75', beta, 'nightly-2024-05-22']
rust: ['1.75', beta, 'nightly']
name: tests (Rust ${{ matrix.rust }})
steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -182,10 +180,7 @@ jobs:
- uses: dtolnay/rust-toolchain@master
with:
# Nightly is required to count doctests coverage
#
# Pinned nightly version until this gets resolved
# https://github.com/rust-lang/rust/issues/125474
toolchain: 'nightly-2024-05-22'
toolchain: 'nightly'
components: llvm-tools-preview
- name: Install cargo-llvm-cov
uses: taiki-e/install-action@cargo-llvm-cov
Expand Down
2 changes: 1 addition & 1 deletion hugr-core/src/builder/tail_loop.rs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ impl<B: AsMut<Hugr> + AsRef<Hugr>> TailLoopBuilder<B> {
Ok(TailLoopBuilder::from_dfg_builder(dfg_build))
}
/// Set the outputs of the [`ops::TailLoop`], with `out_variant` as the value of the
/// termination Sum, and `rest` being the remaining outputs
/// termination Sum, and `rest` being the remaining outputs.
pub fn set_outputs(
&mut self,
out_variant: Wire,
Expand Down

0 comments on commit 6800e68

Please sign in to comment.