From 2de1195da6532ec52cd867da8d0613dc9c365a66 Mon Sep 17 00:00:00 2001 From: Mehrdad Afshari Date: Mon, 12 Feb 2018 13:08:16 -0800 Subject: [PATCH] Add 1.9.1 to interop matrix --- tools/interop_matrix/client_matrix.py | 23 +++++++++++++++++++---- 1 file changed, 19 insertions(+), 4 deletions(-) diff --git a/tools/interop_matrix/client_matrix.py b/tools/interop_matrix/client_matrix.py index a5436f1b76e..5a6eaa95868 100644 --- a/tools/interop_matrix/client_matrix.py +++ b/tools/interop_matrix/client_matrix.py @@ -18,11 +18,11 @@ def get_github_repo(lang): return { - 'go': 'git@github.com:grpc/grpc-go.git', - 'java': 'git@github.com:grpc/grpc-java.git', - 'node': 'git@github.com:grpc/grpc-node.git', + 'go': 'https://github.com:grpc/grpc-go.git', + 'java': 'https://github.com:grpc/grpc-java.git', + 'node': 'https://github.com:grpc/grpc-node.git', # all other languages use the grpc.git repo. - }.get(lang, 'git@github.com:grpc/grpc.git') + }.get(lang, 'https://github.com/grpc/grpc.git') def get_release_tags(lang): @@ -80,6 +80,9 @@ LANG_RELEASE_MATRIX = { { 'v1.8.0': None }, + { + 'v1.9.1': None + }, ], 'go': [ { @@ -167,6 +170,9 @@ LANG_RELEASE_MATRIX = { { 'v1.8.1': None # first python 1.8 release is 1.8.1 }, + { + 'v1.9.1': None + }, ], 'node': [ { @@ -219,6 +225,9 @@ LANG_RELEASE_MATRIX = { { 'v1.8.0': None }, + { + 'v1.9.1': None + }, ], 'php': [ { @@ -245,6 +254,9 @@ LANG_RELEASE_MATRIX = { { 'v1.8.0': None }, + { + 'v1.9.1': None + }, ], 'csharp': [ #{'v1.0.1': None}, @@ -269,5 +281,8 @@ LANG_RELEASE_MATRIX = { { 'v1.8.0': None }, + { + 'v1.9.1': None + }, ], }