You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@thrift.apache.org by je...@apache.org on 2017/06/26 21:22:36 UTC

[2/2] thrift git commit: THRIFT-4234 Travis build fails cross language tests with "Unsupported security protocol type" Client: C# Patch: Eric Conner

THRIFT-4234 Travis build fails cross language tests with "Unsupported security protocol type"
Client: C#
Patch: Eric Conner <er...@pinterest.com>

This closes #1296


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

Branch: refs/heads/master
Commit: 4aaa92ece8503a6da9bc6701604f69acf2b99d07
Parents: 2b1975a
Author: Eric Conner <er...@pinterest.com>
Authored: Sun Jun 25 17:26:23 2017 +0200
Committer: Jens Geyer <je...@apache.org>
Committed: Mon Jun 26 23:21:15 2017 +0200

----------------------------------------------------------------------
 build/docker/ubuntu/Dockerfile | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/thrift/blob/4aaa92ec/build/docker/ubuntu/Dockerfile
----------------------------------------------------------------------
diff --git a/build/docker/ubuntu/Dockerfile b/build/docker/ubuntu/Dockerfile
index 06aa5c8..a1ff5a1 100644
--- a/build/docker/ubuntu/Dockerfile
+++ b/build/docker/ubuntu/Dockerfile
@@ -143,9 +143,11 @@ RUN apt-get install -y --no-install-recommends \
 `# Node.js dependencies` \
       nodejs
 
-RUN apt-get install -y --no-install-recommends \
+# Add mono package repository url to get latest version of mono
+RUN echo "deb http://download.mono-project.com/repo/debian trusty main" | tee /etc/apt/sources.list.d/mono.list
+RUN apt-key adv --keyserver keyserver.ubuntu.com --recv-keys A6A19B38D3D831EF
+RUN apt-get update && apt-get install -y --no-install-recommends \
 `# CSharp dependencies` \
-      libmono-system-web2.0-cil \
       mono-devel
 
 RUN apt-get install -y --no-install-recommends \