diff options
author | Michael Lumish <mlumish@google.com> | 2017-10-17 16:28:01 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-10-17 16:28:01 -0700 |
commit | 523fefe821407d9364f8e5062f45b3994aaf0ab4 (patch) | |
tree | 6466ba93128b750d26872dfa9c9d15dc03c9f6c6 /tools/interop_matrix | |
parent | 342d2a4c9a757b0eeed9bdbd1105aeed94c7512b (diff) | |
parent | fbc182e1257385e637b42a877cd205b5972ca521 (diff) |
Merge pull request #13043 from murgatroid99/grpc-node_interop
Switch Node interop tests to use grpc-node repo
Diffstat (limited to 'tools/interop_matrix')
-rwxr-xr-x | tools/interop_matrix/create_matrix_images.py | 2 |
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 119cbd2e88..67355e7fbf 100755 --- a/tools/interop_matrix/create_matrix_images.py +++ b/tools/interop_matrix/create_matrix_images.py @@ -174,7 +174,7 @@ def build_all_images_for_release(lang, release): # If we not using current tree or the sibling for grpc stack, do checkout. if args.git_checkout: stack_base = checkout_grpc_stack(lang, release) - var ={'go': 'GRPC_GO_ROOT', 'java': 'GRPC_JAVA_ROOT'}.get(lang, 'GRPC_ROOT') + var ={'go': 'GRPC_GO_ROOT', 'java': 'GRPC_JAVA_ROOT', 'node': 'GRPC_NODE_ROOT'}.get(lang, 'GRPC_ROOT') env[var] = stack_base for runtime in client_matrix.LANG_RUNTIME_MATRIX[lang]: |