diff options
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/run_tests/build_php.sh | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/tools/run_tests/build_php.sh b/tools/run_tests/build_php.sh index a9bf588e2f..996ddce29b 100755 --- a/tools/run_tests/build_php.sh +++ b/tools/run_tests/build_php.sh @@ -1 +1,22 @@ #!/bin/bash + +set -ex + +# change to grpc repo root +cd $(dirname $0)/../.. + +export GRPC_DIR=`pwd` + +# make the libraries +make -j shared_c + +# build php +cd src/php + +cd ext/grpc +phpize +cd ../.. +ext/grpc/configure +#cd ext/grpc +make + |