aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/interop_matrix
diff options
context:
space:
mode:
authorGravatar Mehrdad Afshari <mmx@google.com>2018-02-12 13:08:16 -0800
committerGravatar Mehrdad Afshari <mmx@google.com>2018-02-12 15:41:41 -0800
commit2de1195da6532ec52cd867da8d0613dc9c365a66 (patch)
tree40ebc58a6c8616539fffe42b5eeaca93f5c8b2a0 /tools/interop_matrix
parent86accb1768cc860a7579bb5fff9bd3c2ba7274af (diff)
Add 1.9.1 to interop matrix
Diffstat (limited to 'tools/interop_matrix')
-rw-r--r--tools/interop_matrix/client_matrix.py23
1 files changed, 19 insertions, 4 deletions
diff --git a/tools/interop_matrix/client_matrix.py b/tools/interop_matrix/client_matrix.py
index a5436f1b76..5a6eaa9586 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
+ },
],
}