Skip to content

Commit bbd348c

Browse files
committed
Added all previous minor releases of gRPC to the matrix. Modified the testsuite name format for better display test results in sponge.
1 parent 4708a21 commit bbd348c

File tree

2 files changed

+23
-5
lines changed

2 files changed

+23
-5
lines changed

tools/interop_matrix/client_matrix.py

Lines changed: 22 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,27 @@ def get_github_repo(lang):
3030
}
3131

3232
# Dictionary of releases per language. For each language, we need to provide
33-
# a tuple of release tag (used as the tag for the GCR image) and also github hash.
33+
# a release tag pointing to the latest build of the branch.
3434
LANG_RELEASE_MATRIX = {
35-
'cxx': ['v1.0.1', 'v1.1.2'],
36-
'go': ['v1.0.1-GA', 'v1.3.0'],
37-
'java': ['v1.0.3', 'v1.1.2'],
35+
'cxx': [
36+
'v1.0.1',
37+
'v1.1.4',
38+
'v1.2.5',
39+
'v1.3.9',
40+
'v1.4.2',
41+
],
42+
'go': [
43+
'v1.0.5',
44+
'v1.2.1',
45+
'v1.3.0',
46+
'v1.4.2',
47+
],
48+
'java': [
49+
'v1.0.3',
50+
'v1.1.2',
51+
'v1.2.0',
52+
'v1.3.1',
53+
'v1.4.0',
54+
'v1.5.0',
55+
],
3856
}

tools/interop_matrix/run_interop_matrix_tests.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ def run_tests_for_lang(lang, runtime, images):
168168
_xml_report_tree,
169169
resultset,
170170
'grpc_interop_matrix',
171-
'%s__%s:%s'%(lang,runtime,release),
171+
'%s__%s %s'%(lang,runtime,release),
172172
str(uuid.uuid4()))
173173

174174
_docker_images_cleanup = []

0 commit comments

Comments
 (0)