mirror of https://github.com/google/oss-fuzz.git
b036df0ce1
* glib: Fix build due to Meson option changing type In GLib master commit b220033c we changed the `libmount` option from a `boolean` to a `feature`, which means it now takes `enabled`/`disabled`/`auto` rather than `true`/`false`. Signed-off-by: Philip Withnall <philip@tecnocode.co.uk> Fixes: https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=20552 * glib: Fix homepage URI The FSF page on GLib is not official, loaded with their advertising, and quite out of date. Signed-off-by: Philip Withnall <philip@tecnocode.co.uk> * infra: Add help_url to the valid section names list in Travis checks It’s documented as valid: https://google.github.io/oss-fuzz/getting-started/new-project-guide/#help_url Signed-off-by: Philip Withnall <philip@tecnocode.co.uk> |
||
---|---|---|
.. | ||
base-images | ||
cifuzz | ||
gcb | ||
jenkins-cluster | ||
testcases | ||
travis | ||
uploader | ||
.pylintrc | ||
README.md | ||
bisector.py | ||
bisector_test.py | ||
build_specified_commit.py | ||
build_specified_commit_test.py | ||
dev-requirements.txt | ||
helper.py | ||
presubmit.py | ||
repo_manager.py | ||
repo_manager_test.py | ||
templates.py | ||
test_repos.py | ||
utils.py | ||
utils_test.py |
README.md
infra
OSS-Fuzz project infrastructure
Core infrastructure:
base-images
- docker images for building fuzz targets & corresponding jenkins pipeline.
Continuous Integration infrastructure:
libfuzzer-pipeline.groovy
- jenkins pipeline that runs for each OSS-Fuzz project.docker-cleanup
- jenkins pipeline to clean stale docker images & processes.push-images
- jenkins pipeline to push built base images.jenkins-cluster
- kubernetes cluster definition for our jenkins-based build (not operational yet, #10).
helper.py
script to automate common docker operations
Command | Description |
---|---|
generate |
Generates skeleton files for a new project |
build_image |
Builds a docker image for a given project |
build_fuzzers |
Builds fuzz targets for a given project |
run_fuzzer |
Runs a fuzz target in a docker container |
coverage |
Runs fuzz target(s) in a docker container and generates a code coverage report. See Code Coverage doc |
reproduce |
Runs a testcase to reproduce a crash |
shell |
Starts a shell inside the docker image for a project |