summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorMohammed Al Sahaf <msaa1990@gmail.com>2020-03-27 03:34:12 +0300
committerGitHub <noreply@github.com>2020-03-26 18:34:12 -0600
commitd2c15bea1be777fabf39d2f0facbf7441e5cf1f1 (patch)
treeb3d740356df46e144be26caeb3bafa161b0cfe29 /.github
parent8da9eaee3414759d2665e274e8066a243c1171ed (diff)
ci: fuzz: remove fuzzing trigger on PR (#3195)
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/fuzzing.yml15
1 files changed, 1 insertions, 14 deletions
diff --git a/.github/workflows/fuzzing.yml b/.github/workflows/fuzzing.yml
index 6f2a2f1..c909c4d 100644
--- a/.github/workflows/fuzzing.yml
+++ b/.github/workflows/fuzzing.yml
@@ -1,14 +1,6 @@
name: Fuzzing
on:
- # Regression testing
- push:
- branches:
- - master
- pull_request:
- branches:
- - master
-
# Daily midnight fuzzing
schedule:
- cron: '0 0 * * *'
@@ -68,12 +60,7 @@ jobs:
["./replacer_fuzz.go"]="replacer" \
)
- fuzz_type="local-regression"
- if [[ "${{ github.event_name }}" == "schedule" ]]; then
- fuzz_type="fuzzing"
- fi
-
- echo "Fuzzing type: $fuzz_type"
+ fuzz_type="fuzzing"
for f in $(find . -name \*_fuzz.go); do
FUZZER_DIRECTORY=$(dirname "$f")