You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mesos.apache.org by mp...@apache.org on 2016/12/16 23:54:09 UTC

mesos git commit: Updated `mesos-tidy` image to upstream 3.9 release.

Repository: mesos
Updated Branches:
  refs/heads/master ace0f8b88 -> 8919d84c3


Updated `mesos-tidy` image to upstream 3.9 release.

Review: https://reviews.apache.org/r/53582/


Project: http://git-wip-us.apache.org/repos/asf/mesos/repo
Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/8919d84c
Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/8919d84c
Diff: http://git-wip-us.apache.org/repos/asf/mesos/diff/8919d84c

Branch: refs/heads/master
Commit: 8919d84c3a1c15b26c6c6d52a4571b8d9a9f4eea
Parents: ace0f8b
Author: Benjamin Bannier <be...@mesosphere.io>
Authored: Fri Dec 16 15:53:57 2016 -0800
Committer: Michael Park <mp...@apache.org>
Committed: Fri Dec 16 15:53:57 2016 -0800

----------------------------------------------------------------------
 support/mesos-tidy/Dockerfile | 11 ++++++-----
 1 file changed, 6 insertions(+), 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/mesos/blob/8919d84c/support/mesos-tidy/Dockerfile
----------------------------------------------------------------------
diff --git a/support/mesos-tidy/Dockerfile b/support/mesos-tidy/Dockerfile
index 8ef1834..82da813 100644
--- a/support/mesos-tidy/Dockerfile
+++ b/support/mesos-tidy/Dockerfile
@@ -14,7 +14,7 @@
 # See the License for the specific language governing permissions and
 # limitations under the License.
 
-FROM ubuntu:trusty
+FROM ubuntu:xenial
 MAINTAINER The Apache Mesos Developers <de...@mesos.apache.org>
 
 WORKDIR /tmp/build
@@ -30,9 +30,9 @@ RUN apt-get install -qy --no-install-recommends \
   apt-get clean
 
 RUN \
-  git clone --depth 1 -b release_38 http://llvm.org/git/llvm /tmp/llvm && \
-  git clone --depth 1 -b release_38 http://llvm.org/git/clang /tmp/llvm/tools/clang && \
-  git clone --depth 1 -b mesos_38 http://github.com/mesos/clang-tools-extra.git /tmp/llvm/tools/clang/tools/extra && \
+  git clone --depth 1 -b release_39 http://llvm.org/git/llvm /tmp/llvm && \
+  git clone --depth 1 -b mesos_39 http://github.com/mesos/clang.git /tmp/llvm/tools/clang && \
+  git clone --depth 1 -b mesos_39 http://github.com/mesos/clang-tools-extra.git /tmp/llvm/tools/clang/tools/extra && \
   \
   cmake /tmp/llvm -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/opt/ && \
   make -j $(nproc) install && \
@@ -69,10 +69,11 @@ RUN apt-get install -qy \
   libevent-dev \
   libsasl2-dev \
   libsasl2-modules \
+  libssl-dev \
   libsvn-dev \
   libtool \
   maven \
-  openjdk-7-jdk \
+  openjdk-8-jdk \
   zlib1g-dev && \
   apt-get clean