From 69787e17ea204d21ccacaf6550630657bb3b2f73 Mon Sep 17 00:00:00 2001 From: Lucio Franco Date: Mon, 1 Aug 2022 13:06:28 -0400 Subject: [PATCH] chore(ci): Disable nightly CI runs --- .github/workflows/CI.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index c60296707..d29d6fc61 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -91,7 +91,9 @@ jobs: # failure only occurs on a particular version. fail-fast: false matrix: - rust: [stable, beta, nightly] + # Nightly has been removed due to regressions, we can re-enable once the issue below is resolved. + # Related issue: https://github.com/rust-lang/rust/issues/99536 + rust: [stable, beta] steps: - uses: actions/checkout@master - name: "install Rust ${{ matrix.rust }}"