diff options
author | murgatroid99 <mlumish@google.com> | 2017-10-17 11:42:12 -0700 |
---|---|---|
committer | murgatroid99 <mlumish@google.com> | 2017-10-17 11:42:12 -0700 |
commit | fbc182e1257385e637b42a877cd205b5972ca521 (patch) | |
tree | c399390bbdb4d771c7d1304a85980591ff39fd93 /tools/interop_matrix | |
parent | d6b7a28e36a84e67a64a7ddd6d4ebba0f783f912 (diff) |
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]: |