aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/interop_matrix
diff options
context:
space:
mode:
Diffstat (limited to 'tools/interop_matrix')
-rw-r--r--tools/interop_matrix/README.md2
-rw-r--r--tools/interop_matrix/client_matrix.py18
2 files changed, 19 insertions, 1 deletions
diff --git a/tools/interop_matrix/README.md b/tools/interop_matrix/README.md
index 40c02a1bc7..db84d9b454 100644
--- a/tools/interop_matrix/README.md
+++ b/tools/interop_matrix/README.md
@@ -9,7 +9,7 @@ from specific releases/tag, are used to test version compatiblity between gRPC r
We have continuous nightly test setup to test gRPC backward compatibility between old clients and latest server. When a gRPC developer creates a new gRPC release, s/he is also responsible to add the just-released gRPC client to the nightly test. The steps are:
- Add (or update) an entry in `./client_matrix.py` file to reference the github tag for the release.
- Build new client docker image(s). For example, for C and wrapper languages release `v1.9.9`, do
- - `tools/interop_matrix/create_matrix_images.py --git_checkout --release=v1.9.9 --language cxx csharp python ruby php`
+ - `tools/interop_matrix/create_matrix_images.py --git_checkout --release=v1.9.9 --upload_images --language cxx csharp python ruby php`
- Verify that the new docker image was built successfully and uploaded to GCR. For example,
- `gcloud beta container images list --repository gcr.io/grpc-testing` shows image repos.
- `gcloud beta container images list-tags gcr.io/grpc-testing/grpc_interop_java_oracle8` should show an image entry with tag `v1.9.9`.
diff --git a/tools/interop_matrix/client_matrix.py b/tools/interop_matrix/client_matrix.py
index fae78909da..bb9222d953 100644
--- a/tools/interop_matrix/client_matrix.py
+++ b/tools/interop_matrix/client_matrix.py
@@ -96,6 +96,9 @@ LANG_RELEASE_MATRIX = {
{
'v1.13.0': None
},
+ {
+ 'v1.14.1': None
+ },
],
'go': [
{
@@ -178,6 +181,9 @@ LANG_RELEASE_MATRIX = {
{
'v1.13.1': None
},
+ {
+ 'v1.14.0': None
+ },
],
'python': [
{
@@ -219,6 +225,9 @@ LANG_RELEASE_MATRIX = {
{
'v1.13.0': None
},
+ {
+ 'v1.14.1': None
+ },
],
'node': [
{
@@ -304,6 +313,9 @@ LANG_RELEASE_MATRIX = {
{
'v1.13.0': None
},
+ {
+ 'v1.14.1': None
+ },
],
'php': [
{
@@ -345,6 +357,9 @@ LANG_RELEASE_MATRIX = {
{
'v1.13.0': None
},
+ {
+ 'v1.14.1': None
+ },
],
'csharp': [
{
@@ -391,6 +406,9 @@ LANG_RELEASE_MATRIX = {
{
'v1.13.0': None
},
+ {
+ 'v1.14.1': None
+ },
],
}