• Home
Name Date Size #Lines LOC

..--

base-images/03-May-2024-6,1293,892

build/03-May-2024-4,0643,078

ci/03-May-2024-371252

cifuzz/03-May-2024-4,2572,960

uploader/03-May-2024-84

.dockerignoreD03-May-202485 98

README.mdD03-May-20241.3 KiB2923

bisector.pyD03-May-202410.8 KiB312231

bisector_test.pyD03-May-20242.6 KiB7144

build_fuzzers.DockerfileD03-May-20241 KiB2723

build_specified_commit.pyD03-May-202413.2 KiB412298

build_specified_commit_test.pyD03-May-20245.3 KiB12184

helper.pyD03-May-202430.8 KiB1,017773

helper_test.pyD03-May-20241.2 KiB3617

presubmit.pyD03-May-202414.3 KiB448323

pytest.iniD03-May-202433 22

repo_manager.pyD03-May-20247.7 KiB253187

repo_manager_test.pyD03-May-20247.3 KiB187142

retry.pyD03-May-20243.1 KiB10774

run_fuzzers.DockerfileD03-May-20241 KiB2623

templates.pyD03-May-20242.7 KiB7957

test_helpers.pyD03-May-20241.2 KiB4020

test_repos.pyD03-May-20243.5 KiB8359

utils.pyD03-May-20244.9 KiB172114

utils_test.pyD03-May-20245.1 KiB13695

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