diff options
author | Stanley Cheung <stanley.cheung@gmail.com> | 2016-09-22 14:23:46 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-09-22 14:23:46 -0700 |
commit | 7227e40febed397e974a0a6fbd522fc62a14cce1 (patch) | |
tree | 0c8308977bc75dd132527b5d3e8bf8ef27a057de /test | |
parent | 6984840145c6d5bb581e2880345e684665b2c040 (diff) | |
parent | 96264c074fe9dfb303eeaae09ae04c7c47996b39 (diff) |
Merge pull request #8160 from stanley-cheung/php-artifact-name
PHP: use real artifact name in jenkins test
Diffstat (limited to 'test')
-rwxr-xr-x | test/distrib/php/run_distrib_test.sh | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/test/distrib/php/run_distrib_test.sh b/test/distrib/php/run_distrib_test.sh index 5c86283282..9ce3e05cd4 100755 --- a/test/distrib/php/run_distrib_test.sh +++ b/test/distrib/php/run_distrib_test.sh @@ -32,8 +32,9 @@ set -ex cd $(dirname $0) -cp -r $EXTERNAL_GIT_ROOT/input_artifacts/grpc-php.tgz . +cp -r $EXTERNAL_GIT_ROOT/input_artifacts/grpc-*.tgz . -pecl install grpc-php.tgz +find . -regextype sed -regex ".*/grpc-[0-9].*.tgz" | cut -b3- | \ + xargs pecl install php -d extension=grpc.so -d max_execution_time=300 distribtest.php |