Commit 11411f512c447782dd5596140393780e31c75d7c

Authored by Stéphane Raimbault
1 parent ef7ae053

Remove fuzzing action in waiting for a fix

Showing 1 changed file with 0 additions and 29 deletions
.github/workflows/fuzzing.yml deleted
1 -name: Fuzzing  
2 -on:  
3 - push:  
4 - branches: ["master"]  
5 -  
6 -jobs:  
7 - fuzzing:  
8 - runs-on: ubuntu-latest  
9 - steps:  
10 - - name: Build Fuzzers  
11 - id: build  
12 - uses: google/oss-fuzz/infra/cifuzz/actions/build_fuzzers@master  
13 - with:  
14 - oss-fuzz-project-name: "libmodbus"  
15 - dry-run: false  
16 - language: c  
17 - - name: Run Fuzzers  
18 - uses: google/oss-fuzz/infra/cifuzz/actions/run_fuzzers@master  
19 - with:  
20 - oss-fuzz-project-name: "libmodbus"  
21 - fuzz-seconds: 300  
22 - dry-run: false  
23 - language: c  
24 - - name: Upload artifacts  
25 - uses: actions/upload-artifact@v3  
26 - if: failure() && steps.build.outcome == 'success'  
27 - with:  
28 - name: artifacts  
29 - path: ./out/artifacts