aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/interop_matrix/create_matrix_images.py
diff options
context:
space:
mode:
authorGravatar Jan Tattermusch <jtattermusch@users.noreply.github.com>2019-01-08 20:52:30 +0100
committerGravatar GitHub <noreply@github.com>2019-01-08 20:52:30 +0100
commit45209b615f096bbb6f30140df2682b4ef3dbf9db (patch)
tree7a7fcdbbc1e7351f30f198b4aa830804674cf211 /tools/interop_matrix/create_matrix_images.py
parent8efa3347fe0fdcb5379bba85f7f7963a288ccdc1 (diff)
parent2dc63f3d02efd2cb0ccea45248dd305e442c70d9 (diff)
Merge pull request #17427 from jtattermusch/go_interop_matrix_fixes
Allow skipping runtimes for releases in interop_matrix. Add go v1.17.0.
Diffstat (limited to 'tools/interop_matrix/create_matrix_images.py')
-rwxr-xr-xtools/interop_matrix/create_matrix_images.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/interop_matrix/create_matrix_images.py b/tools/interop_matrix/create_matrix_images.py
index c2568efba0..cf61d46248 100755
--- a/tools/interop_matrix/create_matrix_images.py
+++ b/tools/interop_matrix/create_matrix_images.py
@@ -217,7 +217,7 @@ def build_all_images_for_release(lang, release):
}.get(lang, 'GRPC_ROOT')
env[var] = stack_base
- for runtime in client_matrix.LANG_RUNTIME_MATRIX[lang]:
+ for runtime in client_matrix.get_runtimes_for_lang_release(lang, release):
job = build_image_jobspec(runtime, env, release, stack_base)
docker_images.append(job.tag)
build_jobs.append(job)