From 94b3bcc6bf0756e9a0ca8c6d603cba84182e5bf0 Mon Sep 17 00:00:00 2001 From: Andrei Avram <6795248+andreiavrammsd@users.noreply.github.com> Date: Wed, 21 May 2025 17:29:24 +0300 Subject: [PATCH 1/3] Install nigtly on demand --- Makefile | 1 - 1 file changed, 1 deletion(-) diff --git a/Makefile b/Makefile index c1f5c65..9b6d554 100644 --- a/Makefile +++ b/Makefile @@ -50,4 +50,3 @@ dev: echo Installing cargo-fuzz... cargo install cargo-fuzz - rustup install nightly From d1cb5d0d639e6e0ca8e935def7b2b1ed4936a3d0 Mon Sep 17 00:00:00 2001 From: Andrei Avram <6795248+andreiavrammsd@users.noreply.github.com> Date: Wed, 21 May 2025 17:29:59 +0300 Subject: [PATCH 2/3] Use directly nightly for fuzz in CI --- .github/workflows/fuzz.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/fuzz.yml b/.github/workflows/fuzz.yml index ff9ca3e..f4f58ed 100644 --- a/.github/workflows/fuzz.yml +++ b/.github/workflows/fuzz.yml @@ -21,10 +21,9 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - - uses: dtolnay/rust-toolchain@stable + - uses: dtolnay/rust-toolchain@nightly - run: | cargo install cargo-fuzz - rustup install nightly if [ "${{ github.event_name }}" = "schedule" ]; then FUZZSECONDS=600 else From 8535887a3c2cda4a3510372da8fb08a49f9050d3 Mon Sep 17 00:00:00 2001 From: Andrei Avram <6795248+andreiavrammsd@users.noreply.github.com> Date: Wed, 21 May 2025 17:37:19 +0300 Subject: [PATCH 3/3] Remove validate job --- .github/workflows/ci.yml | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 27b5292..9bec3ff 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -91,16 +91,3 @@ jobs: with: token: ${{ secrets.CODECOV_TOKEN }} files: lcov.info - - validate: - name: wait for jobs - runs-on: ubuntu-latest - needs: - - test - - format - - clippy - - coverage - steps: - - name: validate - run: | - echo "Jobs done"