• Home
Name Date Size #Lines LOC

..--

base-images/03-May-2024-4,5342,760

cifuzz/03-May-2024-588437

gcb/03-May-2024-1,8901,508

jenkins-cluster/03-May-2024-109100

testcases/03-May-2024-11

travis/03-May-2024-14999

uploader/03-May-2024-84

.pylintrcD03-May-202429 22

README.mdD03-May-20241.3 KiB2923

bisector.pyD03-May-20246.2 KiB156121

bisector_test.pyD03-May-20242.4 KiB6741

build_specified_commit.pyD03-May-20243.6 KiB9668

build_specified_commit_test.pyD03-May-20244.4 KiB10674

dev-requirements.txtD03-May-2024119 64

helper.pyD03-May-202427.2 KiB892679

presubmit.pyD03-May-202410.9 KiB355247

repo_manager.pyD03-May-20245.9 KiB186139

repo_manager_test.pyD03-May-20245.8 KiB138100

templates.pyD03-May-20242.6 KiB7755

test_repos.pyD03-May-20243.5 KiB7855

utils.pyD03-May-20243.8 KiB12380

utils_test.pyD03-May-20243.6 KiB10376

README.md

1# infra
2> OSS-Fuzz project infrastructure
3
4Core infrastructure:
5* [`base-images`](base-images/) - docker images for building fuzz targets & corresponding jenkins
6  pipeline.
7
8Continuous Integration infrastructure:
9
10* [`libfuzzer-pipeline.groovy`](libfuzzer-pipeline.groovy/) - jenkins pipeline that runs for each OSS-Fuzz
11  project.
12* [`docker-cleanup`](docker-cleanup/) - jenkins pipeline to clean stale docker images & processes.
13* [`push-images`](push-images/) - jenkins pipeline to push built base images.
14* [`jenkins-cluster`](jenkins-cluster/) - kubernetes cluster definition for our jenkins-based build (not operational yet,
15[#10](https://github.com/google/oss-fuzz/issues/10)).
16
17## helper.py
18> script to automate common docker operations
19
20| Command | Description |
21|---------|-------------
22| `generate`      | Generates skeleton files for a new project |
23| `build_image`   | Builds a docker image for a given project |
24| `build_fuzzers` | Builds fuzz targets for a given project |
25| `run_fuzzer`    | Runs a fuzz target in a docker container |
26| `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/) |
27| `reproduce`     | Runs a testcase to reproduce a crash |
28| `shell`         | Starts a shell inside the docker image for a project |
29