aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/run_tests/dockerize
diff options
context:
space:
mode:
authorGravatar murgatroid99 <mlumish@google.com>2017-10-17 11:42:12 -0700
committerGravatar murgatroid99 <mlumish@google.com>2017-10-17 11:42:12 -0700
commitfbc182e1257385e637b42a877cd205b5972ca521 (patch)
treec399390bbdb4d771c7d1304a85980591ff39fd93 /tools/run_tests/dockerize
parentd6b7a28e36a84e67a64a7ddd6d4ebba0f783f912 (diff)
Switch Node interop tests to use grpc-node repo
Diffstat (limited to 'tools/run_tests/dockerize')
-rwxr-xr-xtools/run_tests/dockerize/build_interop_image.sh8
1 files changed, 8 insertions, 0 deletions
diff --git a/tools/run_tests/dockerize/build_interop_image.sh b/tools/run_tests/dockerize/build_interop_image.sh
index 9d8ad5325c..09e062980d 100755
--- a/tools/run_tests/dockerize/build_interop_image.sh
+++ b/tools/run_tests/dockerize/build_interop_image.sh
@@ -48,6 +48,14 @@ else
echo "WARNING: grpc-go not found, it won't be mounted to the docker container."
fi
+echo "GRPC_NODE_ROOT: ${GRPC_NODE_ROOT:=$(cd ../grpc-node && pwd)}"
+if [ -n "$GRPC_NODE_ROOT" ]
+then
+ MOUNT_ARGS+=" -v $GRPC_NODE_ROOT:/var/local/jenkins/grpc-node:ro"
+else
+ echo "WARNING: grpc-node not found, it won't be mounted to the docker container."
+fi
+
mkdir -p /tmp/ccache
# Mount service account dir if available.