• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1#!/bin/bash
2# Copyright 2016 gRPC authors.
3#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8#     http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15
16set -ex
17
18cd "$(dirname "$0")/../../.."
19
20mkdir -p "${ARTIFACTS_OUT}"
21
22# Build the PHP extension archive (this just zips all the files up)
23pear package
24# Note: the extension compiled by this step is not being used in any
25# way, i.e. they are not the pacakge being distributed.
26# This is done here to get an early signal for compiling the PHP
27# extension in some form.
28find . -name "grpc-*.tgz" | cut -b3- | xargs pecl install
29# Verified that the grpc extension is built properly.
30php -d extension=grpc.so --re grpc | head -1
31
32cp -r grpc-*.tgz "${ARTIFACTS_OUT}"/
33