aboutsummaryrefslogtreecommitdiff
path: root/projects/pcre2
AgeCommit message (Collapse)Author
2020-07-06Update Dockerfiles (#4070)devtty1er
* Use LABEL in place of MAINTAINER * Remove LABEL maintainer from Dockerfiles
2020-04-09Temporarily disable honggfuzz on failing projects due to #3607 (#3610)Abhishek Arya
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
2020-01-21[pcre2] enable dataflow config (#1632). (#3268)Max Moroz
* [pcre2] enable dataflow config (#1632). * Update project.yaml
2019-08-22Enable i386 fuzzing on 18 projects (#2748)jonathanmetzman
Maintainers who own these projects: If you don't want i386 fuzzing, feel free to disable. I figured i386 fuzzing is generally desirable since it can find more bugs but most projects won't switch because of inertia.
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-05-24Fix build breakage after #623.Abhishek Arya
2017-05-24Update build.sh (#623)PhilipHazel
I have moved the cp command to the end of the file, as requested.
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-04-05Remove experimental flag from tested msan projects (#473). (#517)Abhishek Arya
2017-04-04Enable msan experimental on some projects. (#514)Abhishek Arya
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-03-13[infra] gcb wants project name to match checkout dirMike Aizatsky
2017-01-03[infra] updating usages of base-libfuzzer (#142)Mike Aizatsky
2016-12-07[infra] using -lFuzzingEngine instead of -lfuzzerMike Aizatsky
2016-12-07Fix parallel make command (#144)Kuang-che Wu
'make -j' will make targets parallelly. In other words, "clean" may run after "all" for 'make -j clean all' line.
2016-11-29Update build.shinferno-chromium
2016-11-29[infra] build.sh cleanupMike Aizatsky
2016-11-29[infra] target.yaml -> project.yamlMike Aizatsky
2016-11-29[infra] renaming targets/ to projects/Mike Aizatsky