diff options
author | Adele Zhou <adelez@google.com> | 2018-02-12 21:51:21 -0800 |
---|---|---|
committer | Adele Zhou <adelez@google.com> | 2018-02-12 21:51:44 -0800 |
commit | 3e13d123b75a99b68f24834e0356160d25e585e7 (patch) | |
tree | 500739bd3d66a1d4faa5412f8e16a13471a515c4 /tools/dockerfile | |
parent | 0ad0e5d684b9e479798d4f3e59da354c39268a2a (diff) |
Pin bazel to 0.9.0
Diffstat (limited to 'tools/dockerfile')
-rw-r--r-- | tools/dockerfile/test/bazel/Dockerfile | 10 | ||||
-rw-r--r-- | tools/dockerfile/test/sanity/Dockerfile | 10 |
2 files changed, 10 insertions, 10 deletions
diff --git a/tools/dockerfile/test/bazel/Dockerfile b/tools/dockerfile/test/bazel/Dockerfile index ba668eafc7..e5e81136cb 100644 --- a/tools/dockerfile/test/bazel/Dockerfile +++ b/tools/dockerfile/test/bazel/Dockerfile @@ -33,12 +33,12 @@ RUN curl https://bazel.build/bazel-release.pub.gpg | apt-key add - RUN apt-get -y update RUN apt-get -y install bazel -# Pin Bazel to 0.4.4 -# Installing Bazel via apt-get first is required before installing 0.4.4 to +# Pin Bazel to 0.9.0 +# Installing Bazel via apt-get first is required before installing 0.9.0 to # allow gRPC to build without errors. See https://github.com/grpc/grpc/issues/10553 -RUN curl -fSsL -O https://github.com/bazelbuild/bazel/releases/download/0.4.4/bazel-0.4.4-installer-linux-x86_64.sh -RUN chmod +x ./bazel-0.4.4-installer-linux-x86_64.sh -RUN ./bazel-0.4.4-installer-linux-x86_64.sh +RUN curl -fSsL -O https://github.com/bazelbuild/bazel/releases/download/0.9.0/bazel-0.9.0-installer-linux-x86_64.sh +RUN chmod +x ./bazel-0.9.0-installer-linux-x86_64.sh +RUN ./bazel-0.9.0-installer-linux-x86_64.sh RUN mkdir -p /var/local/jenkins diff --git a/tools/dockerfile/test/sanity/Dockerfile b/tools/dockerfile/test/sanity/Dockerfile index 7a8e1c09b1..f65adf589d 100644 --- a/tools/dockerfile/test/sanity/Dockerfile +++ b/tools/dockerfile/test/sanity/Dockerfile @@ -98,12 +98,12 @@ RUN curl https://bazel.build/bazel-release.pub.gpg | apt-key add - RUN apt-get -y update RUN apt-get -y install bazel -# Pin Bazel to 0.4.4 -# Installing Bazel via apt-get first is required before installing 0.4.4 to +# Pin Bazel to 0.9.0 +# Installing Bazel via apt-get first is required before installing 0.9.0 to # allow gRPC to build without errors. See https://github.com/grpc/grpc/issues/10553 -RUN curl -fSsL -O https://github.com/bazelbuild/bazel/releases/download/0.4.4/bazel-0.4.4-installer-linux-x86_64.sh -RUN chmod +x ./bazel-0.4.4-installer-linux-x86_64.sh -RUN ./bazel-0.4.4-installer-linux-x86_64.sh +RUN curl -fSsL -O https://github.com/bazelbuild/bazel/releases/download/0.9.0/bazel-0.9.0-installer-linux-x86_64.sh +RUN chmod +x ./bazel-0.9.0-installer-linux-x86_64.sh +RUN ./bazel-0.9.0-installer-linux-x86_64.sh RUN apt-get update && apt-get -y install wget xz-utils RUN wget http://releases.llvm.org/5.0.0/clang+llvm-5.0.0-linux-x86_64-ubuntu14.04.tar.xz |