You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@thrift.apache.org by jk...@apache.org on 2017/01/17 18:17:43 UTC

thrift git commit: chore: install ruby-bundler Fixes recent build failures in the Travis CI environment.

Repository: thrift
Updated Branches:
  refs/heads/master 5f723cd53 -> e0ccbd6e6


chore: install ruby-bundler
Fixes recent build failures in the Travis CI environment.

This closes #1158


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

Branch: refs/heads/master
Commit: e0ccbd6e62e14f32d7c5fe0f9cec6eff3259b863
Parents: 5f723cd
Author: Roger Meier <ro...@apache.org>
Authored: Mon Jan 16 20:26:57 2017 +0100
Committer: James E. King, III <ji...@simplivity.com>
Committed: Tue Jan 17 13:14:33 2017 -0500

----------------------------------------------------------------------
 build/docker/debian/Dockerfile | 2 ++
 build/docker/ubuntu/Dockerfile | 1 +
 2 files changed, 3 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/thrift/blob/e0ccbd6e/build/docker/debian/Dockerfile
----------------------------------------------------------------------
diff --git a/build/docker/debian/Dockerfile b/build/docker/debian/Dockerfile
index 99eda7a..7c15109 100644
--- a/build/docker/debian/Dockerfile
+++ b/build/docker/debian/Dockerfile
@@ -83,6 +83,8 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
       libio-socket-ssl-perl \
       libnet-ssleay-perl
 
+RUN echo "deb http://ftp.debian.org/debian jessie-backports main" > /etc/apt/sources.list.d/jessie-backports.list
+RUN apt-get update && apt-get -t jessie-backports install -y ruby-bundler
 RUN apt-get update && apt-get install -y --no-install-recommends \
 `# Php dependencies` \
       php5 \

http://git-wip-us.apache.org/repos/asf/thrift/blob/e0ccbd6e/build/docker/ubuntu/Dockerfile
----------------------------------------------------------------------
diff --git a/build/docker/ubuntu/Dockerfile b/build/docker/ubuntu/Dockerfile
index 7792aae..02f0b1e 100644
--- a/build/docker/ubuntu/Dockerfile
+++ b/build/docker/ubuntu/Dockerfile
@@ -95,6 +95,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
 `# Ruby dependencies` \
       ruby \
       ruby-dev \
+      ruby-bundler \
 `# Perl dependencies` \
       libbit-vector-perl \
       libclass-accessor-class-perl \