aboutsummaryrefslogtreecommitdiff
path: root/projects/libchewing
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
2019-05-01Migrate projects using -lFuzzingEngine to $LIB_FUZZING_ENGINE (#2325)jonathanmetzman
Migrate from -lFuzzingEngine to $LIB_FUZZING_ENGINE where possible and not causing breakage
2017-08-30Update project.yamlOliver Chang
2017-06-07Update project.yamlOliver Chang
2017-06-01Disable honggfuzz for builds that are failing.Oliver Chang
Revert once #646 is fixed.
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-15[infra] ossfuzz/IMAGE -> gcr.io/oss-fuzz/IMAGEOliver Chang
2017-02-28Disable libchewing.Oliver Chang
2017-01-20Prevent argv[0] from being modified in magic and chewing fuzzers. (#303)Oliver Chang
dirname() may modify the input argument. Changing argv[0] breaks any libFuzzer functionality that requires it to invoke itself (e.g. failure-resistant merge, minimize).
2017-01-03[infra] updating usages of base-libfuzzer (#142)Mike Aizatsky
2016-12-07[infra] using -lFuzzingEngine instead of -lfuzzerMike Aizatsky
2016-11-29[infra] making shallow git clones. fixes #42Mike Aizatsky
2016-11-29[infra] target.yaml -> project.yamlMike Aizatsky
2016-11-29[infra] renaming targets/ to projects/Mike Aizatsky