Revert "ci: gate fuzztesting on whether source code changed"
This reverts commit 2203c02347
.
This commit is contained in:
parent
ec3e4e8801
commit
495d7e8acd
|
@ -9,20 +9,8 @@ on:
|
||||||
pull_request:
|
pull_request:
|
||||||
|
|
||||||
jobs:
|
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:
|
fuzz:
|
||||||
needs: Prepare
|
if: ${{ !github.event.act }}
|
||||||
if: ${{ !github.event.act }} && needs.Prepare.outputs.pr_changed_source == 'true'
|
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
|
@ -76,8 +64,7 @@ jobs:
|
||||||
path: executed_${{ matrix.fuzz_target }}
|
path: executed_${{ matrix.fuzz_target }}
|
||||||
|
|
||||||
verify-execution:
|
verify-execution:
|
||||||
needs: Prepare
|
if: ${{ !github.event.act }}
|
||||||
if: ${{ !github.event.act }} && needs.Prepare.outputs.pr_changed_source == 'true'
|
|
||||||
needs: fuzz
|
needs: fuzz
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
|
|
Loading…
Reference in New Issue