aboutsummaryrefslogtreecommitdiffhomepage
path: root/.dockerignore
Commit message (Collapse)AuthorAge
* [ClusterFuzzLite] Support GCB and gsutil/gcs as filestore. (#6629)Gravatar jonathanmetzman2021-10-27
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * add gsutil filestore * lint * Fix * Add build image script * get gcb fuzzing working * fmt and fix config_utils_test * Check that crashes are uploaded * Add no_filestore * fix test * fix tests * fix * Print crash URL * Fix * fix * fmt * lnt * fix * fmt
* [NFC][CIFuzz] Rename test_files to test_data and delete unneeded testcases ↵Gravatar jonathanmetzman2021-03-19
| | | | directory (#5448)
* [CIFuzz][cifuzz-base] Slim down cifuzz-base (#5288)Gravatar jonathanmetzman2021-03-09
| | | | | | Reduce cifuzz-base size from 846MB to 444MB. 1. Don't install parts of docker that aren't necessary. 2. Use .dockerignore properly.
* Reland 55d9a81. (#4269)Gravatar jonathanmetzman2020-08-06
| | | | | The issue with 55d9a81 that caused it to be reverted by 3370f8f was probably due to the build trigger on GCB being stale. I've updated it so this commit should stick.
* Revert "[CIFuzz] Allow supplying a manual source checkout (#4250)" (#4263)Gravatar Evgeny Vereshchagin2020-08-06
| | | | | This reverts commit 55d9a81cd799f34ffbd688766aef5f463c9aac73. Closes https://github.com/google/oss-fuzz/issues/4262
* [CIFuzz] Allow supplying a manual source checkout (#4250)Gravatar jonathanmetzman2020-08-05
Make CIFuzz building accept an env var `MANUAL_SRC_PATH` that points to a manually prepared checkout of the project-under-tests's source code. This allows projects like Skia which are not on OSS-Fuzz and/or need to make changes to the repo after checking out the right commit to use CIFuzz. Note that for now we aren't supporting this in GitHub, so projects that need to modify the source after checkout can't use it until we do support it. Also, use the local copy of OSS-Fuzz when building cifuzz-base instead of cloning it from GitHub. This makes local debugging/development much easier since it allows one to use CIFuzz with local changes.