Use cifuzz actions

This commit is contained in:
Petri Lehtinen 2021-01-25 22:00:53 +02:00
parent aa52a60ca8
commit f7aee00928
2 changed files with 29 additions and 17 deletions

29
.github/workflows/fuzz.yml vendored Normal file
View file

@ -0,0 +1,29 @@
on:
pull_request:
branches: [ master ]
paths:
- '**.c'
- '**.h'
jobs:
fuzz:
runs-on: ubuntu-latest
steps:
- name: Build Fuzzers
id: build
uses: google/oss-fuzz/infra/cifuzz/actions/build_fuzzers@master
with:
oss-fuzz-project-name: 'jansson'
dry-run: false
- name: Run Fuzzers
uses: google/oss-fuzz/infra/cifuzz/actions/run_fuzzers@master
with:
oss-fuzz-project-name: 'jansson'
fuzz-seconds: 600
dry-run: false
- name: Upload Crash
uses: actions/upload-artifact@v1
if: failure() && steps.build.outcome == 'success'
with:
name: artifacts
path: ./out/artifacts

View file

@ -73,20 +73,3 @@ jobs:
- run: cmake -DJANSSON_COVERAGE=ON -DJANSSON_COVERALLS=ON -DCMAKE_BUILD_TYPE=Debug
- run: cmake --build .
- run: cmake --build . --target coveralls
fuzz:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- run: |
git clone https://github.com/google/oss-fuzz.git /tmp/ossfuzz
if [ "$GITHUB_HEAD_REF" ]; then
BRANCH=${GITHUB_HEAD_REF##*/}
else
BRANCH=${GITHUB_REF##*/}
fi
sed -i "s@https://github.com/akheron/jansson.git@-b $BRANCH https://github.com/${{github.repository}}.git@" /tmp/ossfuzz/projects/jansson/Dockerfile
pushd /tmp/ossfuzz
python infra/helper.py build_image --pull jansson
python infra/helper.py build_fuzzers jansson
popd