aboutsummaryrefslogtreecommitdiff
path: root/infra/cifuzz/run_fuzzers_entrypoint.py
AgeCommit message (Collapse)Author
2021-03-12[CIFuzz] Add functionality to save diskspace (#5342)jonathanmetzman
* [CIFuzz] Add functionality to save diskspace. Add a LOW_DISK_SPACE env/config var. When this is specified (always true for Github actions) run_fuzzers will delete base-builder and the project builder image before fuzzing. After it finishes fuzzing with a target, it will also delete the targets, its seed corpus and its corpus. Related: #4879
2021-02-04[cifuzz][NFC] Handle TODOs (#5104)jonathanmetzman
Handle some TODOs 1. Get rid of multiple return values and replace with a more sensible return value. 2. Eliminate some useless TODOs.
2021-01-29[CIFuzz] Move run_fuzzers to new config system (#5063)jonathanmetzman
Also, decide is_github based on something not used/faked by Skia.
2021-01-26[CIFuzz] Seperate code for running fuzzers into own module: run_fuzzers.py ↵jonathanmetzman
(#5031) TODO: Rename cifuzz.py to build_fuzzers.py
2021-01-20Fix lint function and add pylint directiveJonathan Metzman
2021-01-20Move entrypoints for CIFuzz to cifuzz folder. (#5020)jonathanmetzman
Move entrypoints for CIFuzz to cifuzz. This allows us to reduce some complexity by getting rid of an unnecessary copy in docker and a hack to making importing work.