oss-fuzz/infra/README.md

24 lines
955 B
Markdown
Raw Normal View History

2016-10-07 18:39:33 +00:00
# infra
> OSS-Fuzz project infrastructure
2016-10-07 18:42:27 +00:00
Core infrastructure:
2016-11-30 16:51:20 +00:00
* [`base-images`](base-images/) - docker images for building fuzz targets & corresponding jenkins
2016-07-21 18:38:57 +00:00
pipeline.
2018-11-07 14:20:13 +00:00
Continuous Integration infrastructure:
2016-10-07 18:42:27 +00:00
2022-03-02 15:39:34 +00:00
* [`ci`](ci/) - script to build projects in CI.
2016-10-25 02:39:13 +00:00
## 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 |
2016-11-30 16:51:20 +00:00
| `build_fuzzers` | Builds fuzz targets for a given project |
| `run_fuzzer` | Runs a fuzz target in a docker container |
2019-08-07 14:37:16 +00:00
| `coverage` | Runs fuzz target(s) in a docker container and generates a code coverage report. See [Code Coverage doc](https://google.github.io/oss-fuzz/advanced-topics/code-coverage/) |
2017-02-03 02:45:39 +00:00
| `reproduce` | Runs a testcase to reproduce a crash |
| `shell` | Starts a shell inside the docker image for a project |