oss-fuzz/infra
Alex Crichton 3b9936f940
Update default Rust to nightly-2024-02-12 (#12075)
This commit updates the default version of Rust installed for fuzzing to
the last nightly of Rust that used LLVM 17. The next version uses LLVM
18.1.7 which is incompatible with the fuzz infrastructure's own LLVM
which is currently 18.0.0. This is intended to update the Rust toolchain
as far as possible without causing coverage incompatibilities.

This additionally updates a few pinned projects to all use this nightly
as well. Furthermore the containers are now configured to by-default
ignore `rust-toolchain` and `rust-toolchain.toml` files which will force
this particular toolchain to be used.
2024-06-21 08:30:09 -04:00
..
base-images Update default Rust to nightly-2024-02-12 (#12075) 2024-06-21 08:30:09 -04:00
build Fix a typo in the blog post 2024-05-27 10:24:20 +08:00
ci Add project integration PR helper (#10376) 2023-06-06 04:35:46 +00:00
cifuzz Allow timeout and OOMs options in GH Action (#12003) (#12049) 2024-06-13 21:56:49 -04:00
experimental Delete Symlink Detection from syssan (#10479) 2023-06-07 21:23:57 -04:00
tools Add helper scripts for wycheproof (#9008) 2022-11-21 17:20:42 -05: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
MAINTAINERS.csv Add MAINTAINERS (#10426) 2023-06-02 11:24:34 +10:00
README.md Update README.md (#7352) 2022-03-02 10:39:34 -05:00
bisector.py Fix exception in bisector.py (#9399) 2023-01-12 09:26:10 +11: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 Source-based code coverage reporting for Jazzer.js (#9758) 2023-02-23 18:51:21 +11:00
helper.py Format helper.py (#11889) 2024-05-02 12:03:42 -04:00
helper_test.py [infra] Fix test failure. (#7098) 2022-01-05 15:00:00 -05:00
manifest.py [arm] Add manifest script (#8223) 2022-08-12 09:04:24 -04:00
pr_helper.py fix PR helper when commits have no author. (#10959) 2023-09-14 12:59:14 +10:00
presubmit.py infra/presubmit: Use apt-get update before installing (#12008) 2024-06-04 15:18:48 -04: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] remove test code. (#10181) 2023-04-27 14:26:15 -04:00
templates.py Enable github issue filing in new projects. (#7810) 2022-06-08 11:47:51 +10:00
test Enable centipede on a bunch of projects (#9643) 2023-02-13 14:24:42 -05: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