Commit Graph

12 Commits

Author SHA1 Message Date
Yang Gao 7f8013db10 gRPC improvements (#2807) 2019-09-05 21:31:52 -07:00
Yang Gao 5938259c44 [grpc] Fix gRPC build (#2768)
* Update grpc

* Fix grpc build

* Fix ubsan

* Disable AFL

* define grpc env var to disable bazel wrapper

* Try again
2019-08-28 15:24:08 -07:00
Yang Gao 0e71b3b7e3 Update grpc (#2096) 2019-01-18 10:28:01 -08:00
Max Moroz 8d3e462bd6
[infra] Prevent mounting local checkout to $SRC + clean up Dockerfiles (#1699). (#1700) 2018-08-09 12:29:31 -07:00
Matt Kwong 27be2ccf15 Upgrade Bazel pin in gRPC Dockerfile (#1171) 2018-02-15 17:30:45 -08:00
Devin Jeanpierre 330386686d Use apt-get update && apt-get install, per best practices: (#561)
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-05-01 23:31:02 -07:00
Oliver Chang 60835ac420 oss-fuzz/BASE_IMAGE -> oss-fuzz-base/BASE_IMAGE 2017-03-22 12:12:51 -07:00
matt-kwong c287418b4f Pin Bazel version to 0.4.4 for gRPC (#472) 2017-03-20 14:03:21 -07:00
Oliver Chang 7df64d4ac4 [infra] ossfuzz/IMAGE -> gcr.io/oss-fuzz/IMAGE 2017-03-15 18:46:31 -07:00
matt-kwong 6364c0f832 gRPC - add ssl_server_fuzzer and remove options (#458)
* CC less people for gRPC issues

* Enable ssl_server_fuzzer and remove options
2017-03-15 14:43:36 -07:00
matt-kwong 2d1135523a Add options, dictionaries, and seed corpuses to gRPC (#390)
* Add seed corpuses to gRPC project

* Add options for gRPC fuzzers
2017-02-15 10:49:23 -08:00
matt-kwong c5245aa9df Add gRPC to oss-fuzz projects (#373) 2017-02-10 17:07:39 -08:00