From efda45ac8d3a5217cc3c5d4f6ed80437c2d3f216 Mon Sep 17 00:00:00 2001 From: rowanfr Date: Wed, 6 Sep 2023 04:17:34 -0500 Subject: [PATCH] Removed stable from github actions Temporarily removed stable as a rust option for github actions. This should be reverted when 1.74 is made the rustc stable version and is only due to the ICE error being presently resolved in nightly. This leads to some clear instability with nightly features, but it's currently the only option --- .github/workflows/rust.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index e09749acc..0c8ed834a 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - rust: [stable, nightly] + rust: [nightly] # This should be reverted back to [stable, nightly] when 1.74 is made the rustc stable version env: CRATE_NAME: gluon CARGO_INCREMENTAL: 0 # Incremental compilation is slower and bloats the cache