aboutsummaryrefslogtreecommitdiffhomepage
path: root/projects/arduinojson
Commit message (Collapse)AuthorAge
* Populate a bunch of main_repo values. (#4815)Gravatar Oliver Chang2020-12-10
| | | | Also enforce this for future integrations.
* Update Dockerfiles (#4070)Gravatar devtty1er2020-07-06
| | | | | * Use LABEL in place of MAINTAINER * Remove LABEL maintainer from Dockerfiles
* [presubmit] Enforce language attribute in project.yaml to be always set. (#3477)Gravatar Max Moroz2020-03-10
| | | | | | | | | | | | | | | | | | | * [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
* [arduinojson] Update fuzzers' path (#2793)Gravatar Benoît Blanchon2019-09-04
| | | | The code of the fuzzers moved from `fuzzing/` to `extras/fuzzing/`. See https://github.com/bblanchon/ArduinoJson/issues/1011
* Enable i386 fuzzing on another 11 projects (#2752)Gravatar jonathanmetzman2019-08-23
|
* Use apt-get update && apt-get install, per best practices: (#561)Gravatar Devin Jeanpierre2017-05-01
| | | | | | | | | | | | | | | | | | | 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
* Remove experimental flag from already tested projects with msan(#473) (#513)Gravatar Abhishek Arya2017-04-04
|
* oss-fuzz/BASE_IMAGE -> oss-fuzz-base/BASE_IMAGEGravatar Oliver Chang2017-03-22
|
* Enable Msan experimentally for some projects (#473).Gravatar Oliver Chang2017-03-21
|
* [infra] ossfuzz/IMAGE -> gcr.io/oss-fuzz/IMAGEGravatar Oliver Chang2017-03-15
|
* [infra] workdir matches project nameGravatar Mike Aizatsky2017-03-13
|
* Update project.yamlGravatar Abhishek Arya2017-02-02
|
* [arduinojson] disable msan & change primary contact (#290)Gravatar Benoît Blanchon2017-01-18
| | | | | | | | * add project ArduinoJson * [arduinojson] disable msan as it's causing a false positive * [arduinojson] change primary contact
* add project ArduinoJson (#257)Gravatar Benoît Blanchon2017-01-10