diff options
Diffstat (limited to 'tools/interop_matrix/client_matrix.py')
-rw-r--r-- | tools/interop_matrix/client_matrix.py | 29 |
1 files changed, 25 insertions, 4 deletions
diff --git a/tools/interop_matrix/client_matrix.py b/tools/interop_matrix/client_matrix.py index a5436f1b76..906f690d98 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': [ { @@ -109,6 +112,9 @@ LANG_RELEASE_MATRIX = { { 'v1.9.2': None }, + { + 'v1.10.0': None + }, ], 'java': [ { @@ -141,6 +147,9 @@ LANG_RELEASE_MATRIX = { { 'v1.9.1': None }, + { + 'v1.10.0': None + }, ], 'python': [ { @@ -167,6 +176,9 @@ LANG_RELEASE_MATRIX = { { 'v1.8.1': None # first python 1.8 release is 1.8.1 }, + { + 'v1.9.1': None + }, ], 'node': [ { @@ -219,6 +231,9 @@ LANG_RELEASE_MATRIX = { { 'v1.8.0': None }, + { + 'v1.9.1': None + }, ], 'php': [ { @@ -245,6 +260,9 @@ LANG_RELEASE_MATRIX = { { 'v1.8.0': None }, + { + 'v1.9.1': None + }, ], 'csharp': [ #{'v1.0.1': None}, @@ -269,5 +287,8 @@ LANG_RELEASE_MATRIX = { { 'v1.8.0': None }, + { + 'v1.9.1': None + }, ], } |