d7c4409589
* Inherit from message instead of implement When regestering class (implmenets other class) during MINIT, zend_class_implements would call zend_class_entry->interface_gets_implemented(). In PHP-7.3 interface_gets_implemented shares the same location with create_object. However, during MINIT, the global object storeage hasn't been initialized. And thus, caused segment fault in php 7.3. * Use zend_string_init where interned string may be the value. zend_string_dup will keep using the existing interned string. In php 7.3, interned string cannot be destroyed from user's code. * Uncommment debug code * Use latest phpunit for each php versions * Revert change in Dockerfile * Update php test to use the new docker image * Update composer * Change docker organization * Update phpunit * Debug phpunit * Store phpunit into bin dir in docker image * Install valgrind to docker * Fix compatibility test * Remove generated_service_test from compatibility c extension test * Update 32bit php test to the new docker image * Install bison * Fix build.sh * Fix DOCKERIMAGE_PREFIX * Fix basename * Add comment to build_and_run_docker2.sh * Remove commented code * Fix comments
64 lines
1.9 KiB
Bash
Executable File
64 lines
1.9 KiB
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# Builds docker image and runs a command under it.
|
|
# This is a generic script that is configured with the following variables:
|
|
#
|
|
# DOCKERHUB_ORGANIZATION - The organization on docker hub storing the
|
|
# Dockerfile.
|
|
# DOCKERFILE_DIR - Directory in which Dockerfile file is located.
|
|
# DOCKER_RUN_SCRIPT - Script to run under docker (relative to protobuf repo root)
|
|
# OUTPUT_DIR - Directory that will be copied from inside docker after finishing.
|
|
# $@ - Extra args to pass to docker run
|
|
|
|
set -ex
|
|
|
|
cd $(dirname $0)/../..
|
|
git_root=$(pwd)
|
|
cd -
|
|
|
|
# Use image name based on Dockerfile sha1
|
|
if [ -z "$DOCKERHUB_ORGANIZATION" ]
|
|
then
|
|
DOCKERHUB_ORGANIZATION=grpctesting/protobuf
|
|
DOCKER_IMAGE_NAME=${DOCKERHUB_ORGANIZATION}_$(sha1sum $DOCKERFILE_DIR/Dockerfile | cut -f1 -d\ )
|
|
else
|
|
# TODO(teboring): Remove this when all tests have been migrated to separate
|
|
# docker images.
|
|
DOCKERFILE_PREFIX=$(basename $DOCKERFILE_DIR)
|
|
DOCKER_IMAGE_NAME=${DOCKERHUB_ORGANIZATION}/${DOCKERFILE_PREFIX}_$(sha1sum $DOCKERFILE_DIR/Dockerfile | cut -f1 -d\ )
|
|
fi
|
|
|
|
# Pull dockerimage from Dockerhub
|
|
docker pull $DOCKER_IMAGE_NAME
|
|
|
|
# Ensure existence of ccache directory
|
|
CCACHE_DIR=/tmp/protobuf-ccache
|
|
mkdir -p $CCACHE_DIR
|
|
|
|
# Choose random name for docker container
|
|
CONTAINER_NAME="build_and_run_docker_$(uuidgen)"
|
|
|
|
echo $git_root
|
|
|
|
# Run command inside docker
|
|
docker run \
|
|
"$@" \
|
|
-e CCACHE_DIR=$CCACHE_DIR \
|
|
-e KOKORO_BUILD_NUMBER=$KOKORO_BUILD_NUMBER \
|
|
-e KOKORO_BUILD_ID=$KOKORO_BUILD_ID \
|
|
-e EXTERNAL_GIT_ROOT="/var/local/kokoro/protobuf" \
|
|
-e TEST_SET="$TEST_SET" \
|
|
-v "$git_root:/var/local/kokoro/protobuf:ro" \
|
|
-v $CCACHE_DIR:$CCACHE_DIR \
|
|
-w /var/local/git/protobuf \
|
|
--name=$CONTAINER_NAME \
|
|
$DOCKER_IMAGE_NAME \
|
|
bash -l "/var/local/kokoro/protobuf/$DOCKER_RUN_SCRIPT" || FAILED="true"
|
|
|
|
# remove the container, possibly killing it first
|
|
docker rm -f $CONTAINER_NAME || true
|
|
|
|
[ -z "$FAILED" ] || {
|
|
exit 1
|
|
}
|