aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/dockerfile
diff options
context:
space:
mode:
authorGravatar Jan Tattermusch <jtattermusch@google.com>2018-11-06 17:26:39 +0100
committerGravatar Jan Tattermusch <jtattermusch@google.com>2018-11-06 19:11:38 +0100
commitf1df763d32d1a34ba6f02a1d09aabb9a2c04ae69 (patch)
treeb2cc4ef81215267bb5faf259606784cf794e2bb8 /tools/dockerfile
parent2fc2d7fc40ba28e97aba0d07c82656318a9a12dd (diff)
speedup PHP interop build
Diffstat (limited to 'tools/dockerfile')
-rwxr-xr-xtools/dockerfile/interoptest/grpc_interop_php/build_interop.sh9
1 files changed, 5 insertions, 4 deletions
diff --git a/tools/dockerfile/interoptest/grpc_interop_php/build_interop.sh b/tools/dockerfile/interoptest/grpc_interop_php/build_interop.sh
index 999976d15d..fc5c22083a 100755
--- a/tools/dockerfile/interoptest/grpc_interop_php/build_interop.sh
+++ b/tools/dockerfile/interoptest/grpc_interop_php/build_interop.sh
@@ -28,12 +28,13 @@ cp -r /var/local/jenkins/service_account $HOME || true
cd /var/local/git/grpc
-# gRPC core and protobuf need to be installed
-make install
+# Install gRPC C core and build codegen plugins
+make -j4 install_c plugins
-(cd src/php/ext/grpc && phpize && ./configure && make)
+(cd src/php/ext/grpc && phpize && ./configure && make -j4)
-(cd third_party/protobuf && make install)
+# Install protobuf (need access to protoc)
+(cd third_party/protobuf && make -j4 install)
(cd src/php && php -d extension=ext/grpc/modules/grpc.so /usr/local/bin/composer install)