From 495d7e8acd27adf8277e554067536d2021a69995 Mon Sep 17 00:00:00 2001 From: Andrew Poelstra Date: Wed, 20 Mar 2024 14:08:15 +0000 Subject: [PATCH] Revert "ci: gate fuzztesting on whether source code changed" This reverts commit 2203c02347607a03cbddc78f601a62f30f4d509c. --- .github/workflows/fuzz.yml | 17 ++--------------- 1 file changed, 2 insertions(+), 15 deletions(-) diff --git a/.github/workflows/fuzz.yml b/.github/workflows/fuzz.yml index 232d8812..3a0e4d1a 100644 --- a/.github/workflows/fuzz.yml +++ b/.github/workflows/fuzz.yml @@ -9,20 +9,8 @@ on: pull_request: jobs: - Prepare: - runs-on: ubuntu-latest - outputs: - pr_changed_source: ${{ steps.classify_pr.outputs.pr_changed_source }} - steps: - - name: Checkout Crate - uses: actions/checkout@v4 - - name: Determine what files the PR changes. - id: classify_pr - run: contrib/classify-pr.sh ${{ github.event.pull_request.head.sha }} ${{ github.event.pull_request.base.sha }} - fuzz: - needs: Prepare - if: ${{ !github.event.act }} && needs.Prepare.outputs.pr_changed_source == 'true' + if: ${{ !github.event.act }} runs-on: ubuntu-latest strategy: fail-fast: false @@ -76,8 +64,7 @@ jobs: path: executed_${{ matrix.fuzz_target }} verify-execution: - needs: Prepare - if: ${{ !github.event.act }} && needs.Prepare.outputs.pr_changed_source == 'true' + if: ${{ !github.event.act }} needs: fuzz runs-on: ubuntu-latest steps: