diff --git a/tools/dockerfile/distribtest/php_jessie_x64/Dockerfile b/tools/dockerfile/distribtest/php_jessie_x64/Dockerfile deleted file mode 100644 index 28cbeb440a0..00000000000 --- a/tools/dockerfile/distribtest/php_jessie_x64/Dockerfile +++ /dev/null @@ -1,21 +0,0 @@ -# Copyright 2015 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -FROM debian:jessie - -RUN apt-get update && apt-get install -y php5 php5-dev php-pear wget - -RUN wget https://phar.phpunit.de/phpunit-5.7.27.phar && \ - mv phpunit-5.7.27.phar /usr/local/bin/phpunit && \ - chmod +x /usr/local/bin/phpunit diff --git a/tools/run_tests/run_tests.py b/tools/run_tests/run_tests.py index 04c04cacc69..f9f4ee36fa1 100755 --- a/tools/run_tests/run_tests.py +++ b/tools/run_tests/run_tests.py @@ -570,47 +570,6 @@ class RemoteNodeLanguage(object): def __str__(self): return 'grpc-node' - -class PhpLanguage(object): - - def configure(self, config, args): - self.config = config - self.args = args - _check_compiler(self.args.compiler, ['default']) - self._make_options = ['EMBED_OPENSSL=true', 'EMBED_ZLIB=true'] - - def test_specs(self): - return [ - self.config.job_spec(['src/php/bin/run_tests.sh'], - environ=_FORCE_ENVIRON_FOR_WRAPPERS) - ] - - def pre_build_steps(self): - return [] - - def make_targets(self): - return ['static_c', 'shared_c'] - - def make_options(self): - return self._make_options - - def build_steps(self): - return [['tools/run_tests/helper_scripts/build_php.sh']] - - def post_tests_steps(self): - return [['tools/run_tests/helper_scripts/post_tests_php.sh']] - - def makefile_name(self): - return 'Makefile' - - def dockerfile_dir(self): - return 'tools/dockerfile/test/php_jessie_%s' % _docker_arch_suffix( - self.args.arch) - - def __str__(self): - return 'php' - - class Php7Language(object): def configure(self, config, args): @@ -1288,7 +1247,6 @@ _LANGUAGES = { 'c++': CLanguage('cxx', 'c++'), 'c': CLanguage('c', 'c'), 'grpc-node': RemoteNodeLanguage(), - 'php': PhpLanguage(), 'php7': Php7Language(), 'python': PythonLanguage(), 'ruby': RubyLanguage(),