aboutsummaryrefslogtreecommitdiff
path: root/projects/libprotobuf-mutator
AgeCommit message (Collapse)Author
2020-12-09Fill in main_repo for several projects. (#4816)Abhishek Arya
* Fill in main_repo for several projects. * Add some go repos.
2020-07-06Update Dockerfiles (#4070)devtty1er
* Use LABEL in place of MAINTAINER * Remove LABEL maintainer from Dockerfiles
2020-03-10[presubmit] Enforce language attribute in project.yaml to be always set. (#3477)Max Moroz
* [presubmit] Enforce language attribute in projectt.yaml to be always set. * Update documentation, better presubmit check, new project template. * add docstring to templates.py * Add example values in the project.yaml template and remove python value for now * Add "project: c++" to 256 projects * format * Add labels and selective_unpack sections to the presubmit check * fix incorrect auto_ccs format in three projects * fix nss emails after rebase
2017-08-02Auto-download protobuf. (#756)morehouse
2017-05-12Simplify libprotobuf-mutator build script. (#604)Vitaly Buka
2017-05-11Fix build coverage of libprotobuf-mutator (#598)Vitaly Buka
2017-05-01Use apt-get update && apt-get install, per best practices: (#561)Devin Jeanpierre
https://docs.docker.com/engine/userguide/eng-image/dockerfile_best-practices/ I ran into this because I was getting errors locally, like: E: Failed to fetch http://archive.ubuntu.com/ubuntu/pool/main/d/dpkg/libdpkg-perl_1.18.4ubuntu1.1_all.deb 404 Not Found [IP: 91.189.88.149 80] It turns out you get these if you don't update, and the official best practices are to `run apt-get update && apt-get install`. In fact, running _any_ apt-get install command without the apt-get update && before it can result in unfortunate caching artifacts -- see "cache busting". (P.S. thanks to Peng on Freenode for helping me, I'm bad at Ubuntu.) So: sed -re \ 's/RUN apt-get ((-y )?(install|build-dep))/RUN apt-get update \&\& apt-get \1/' -i \ projects/**/Dockerfile I also manually fixed the cases that already ran apt-get update in their Dockerfile: dlplibs/Dockerfile grpc/Dockerfile libreoffice/Dockerfile
2017-03-22oss-fuzz/BASE_IMAGE -> oss-fuzz-base/BASE_IMAGEOliver Chang
2017-03-17[libprotobuf-mutator] Stop detecting leaks in libxml fuzzer. (#467)Vitaly Buka
2017-03-15[infra] ossfuzz/IMAGE -> gcr.io/oss-fuzz/IMAGEOliver Chang
2017-02-26Remove experimental targets from libprotobuf-mutator (#422)Vitaly Buka
2017-02-17Update build script to match changes in libprotobuf-mutator repo. (#399)Vitaly Buka
2017-02-08Replace vitalybuka@google.com with vitalybuka@chromium.org (#368)Vitaly Buka
2017-02-08Reduce input length of libxml2 fuzzers. (#364)Vitaly Buka
2017-02-06Add expat fuzzer with libprotobuf-mutator (#356)Vitaly Buka
2017-02-06Add fuzzer with small input size and dictionary. (#354)Vitaly Buka
2017-02-04Add XML example from libprotobuf-mutator (#346)Vitaly Buka