Merge pull request #14410 from mehrdada/portability-client-matrix

Add 1.9.1 to interop matrix
pull/14413/head
Mehrdad Afshari 7 years ago committed by GitHub
commit 7b3b4e0025
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 23
      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
},
],
}

Loading…
Cancel
Save