From 8e33631c31aa91c6629115f576980daee1259338 Mon Sep 17 00:00:00 2001 From: Chris Hennick Date: Wed, 28 Feb 2024 15:58:32 -0800 Subject: [PATCH] Bug fix: disable non-nightly toolchains for fuzz for now --- .github/workflows/ci.yaml | 18 ++++++------------ 1 file changed, 6 insertions(+), 12 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 25a8b512..d910e9ce 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -81,15 +81,13 @@ jobs: fuzz_read: runs-on: ubuntu-latest - strategy: - matrix: - rust: [stable, 1.67.0, nightly] + steps: - uses: actions/checkout@v3 - uses: actions-rs/toolchain@v1 with: profile: minimal - toolchain: ${{ matrix.rust }} + toolchain: nightly override: true - run: cargo install cargo-fuzz @@ -109,15 +107,13 @@ jobs: fuzz_write: runs-on: ubuntu-latest - strategy: - matrix: - rust: [stable, 1.67.0, nightly] + steps: - uses: actions/checkout@v3 - uses: actions-rs/toolchain@v1 with: profile: minimal - toolchain: ${{ matrix.rust }} + toolchain: nightly override: true - run: cargo install cargo-fuzz @@ -137,15 +133,13 @@ jobs: fuzz_write_with_no_features: runs-on: ubuntu-latest - strategy: - matrix: - rust: [stable, 1.67.0, nightly] + steps: - uses: actions/checkout@v3 - uses: actions-rs/toolchain@v1 with: profile: minimal - toolchain: ${{ matrix.rust }} + toolchain: nightly override: true - run: cargo install cargo-fuzz