oss-fuzz/infra
Evgeny Vereshchagin 79f4ed33d9
infra: allow passing architecture=i386 to CIFuzz (#7779)
to mostly make sure that fuzz targets are buildable with
architecture=i386. Ideally CIFuzz should also download the
latest corpora using the "clusterfuzz-builds-i386" links but
it kind of works even without that.

It was tested in https://github.com/evverx/oss-fuzz/pull/13
by pointing https://github.com/evverx/systemd/pull/110 to
that fork of the oss-fuzz repository. To judge from
https://github.com/evverx/systemd/actions/runs/2406321298 it
seems to be working more or less. The "i386" job failed there
because 89b6a3f13e
to test "i386" as much as possible.
2022-06-08 15:15:27 -04:00
..
base-images Upgrade infra and projects to go1.18 (#7791) 2022-06-06 11:31:04 +10:00
build Give introspector builds a timeout same as other builds (#7794) 2022-06-02 10:32:01 -05:00
ci Remove jinja2, no longer used (#7452) 2022-03-28 14:46:04 -04:00
cifuzz infra: allow passing architecture=i386 to CIFuzz (#7779) 2022-06-08 15:15:27 -04:00
experimental/sanitizers/ExecSan Execsan syntax error (minor fixes) (#7806) 2022-06-07 11:50:30 +10:00
uploader
.dockerignore [NFC][CIFuzz] Rename test_files to test_data and delete unneeded testcases directory (#5448) 2021-03-19 11:49:38 -07:00
README.md Update README.md (#7352) 2022-03-02 10:39:34 -05:00
bisector.py [infra] Add different messages depending on bisection type (#6547) 2021-10-04 07:14:41 -05:00
bisector_test.py [infra][NFC] Use "testcase" instead of test_case for consistency. (#6159) 2021-08-03 18:05:00 -07:00
build_fuzzers.Dockerfile [cifuzz] Fuzz in cifuzz-base (#6142) 2021-08-05 13:27:24 -07:00
build_specified_commit.py [helper] Change logging from error to info (#6200) 2021-08-11 11:09:24 -07:00
build_specified_commit_test.py [helper] Change logging from error to info (#6200) 2021-08-11 11:09:24 -07:00
constants.py infra: add Python coverage support (#7298) 2022-04-06 10:31:34 -04:00
helper.py [CFL] Handle project language properly (#7699) 2022-05-12 00:05:27 +00:00
helper_test.py [infra] Fix test failure. (#7098) 2022-01-05 15:00:00 -05:00
presubmit.py Move vendors to vendor_ccs when there is no maintainer email. (#7698) 2022-05-11 16:23:24 +10:00
pytest.ini [CIFuzz] Refactor in preparation for filestore (#5841) 2021-05-26 09:45:22 -07:00
repo_manager.py Consider submodules while commit and PR checkout (#7500) 2022-04-05 11:14:39 -04:00
repo_manager_test.py cflite: Support private repos (#6592) 2021-10-20 13:51:57 +11:00
retry.py [CIFuzz] Refactor in preparation for filestore (#5841) 2021-05-26 09:45:22 -07:00
run_fuzzers.Dockerfile [cifuzz] Fuzz in cifuzz-base (#6142) 2021-08-05 13:27:24 -07:00
templates.py Enable github issue filing in new projects. (#7810) 2022-06-08 11:47:51 +10:00
test_repos.py [infra][NFC] Use "testcase" instead of test_case for consistency. (#6159) 2021-08-03 18:05:00 -07:00
utils.py [ClusterFuzzLite] Fix fuzz target search for coverage (#6799) 2021-11-09 07:49:21 -05:00
utils_test.py [cifuzz] Use javascript actions library for uploading artifacts (#6552) 2021-10-05 09:16:54 -04:00

README.md

infra

OSS-Fuzz project infrastructure

Core infrastructure:

  • base-images - docker images for building fuzz targets & corresponding jenkins pipeline.

Continuous Integration infrastructure:

  • ci - script to build projects in CI.

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