aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/run_tests/artifacts
diff options
context:
space:
mode:
authorGravatar Stanley Cheung <stanleycheung@google.com>2018-08-10 11:29:21 -0700
committerGravatar Stanley Cheung <stanleycheung@google.com>2018-08-10 11:29:21 -0700
commitfbde7d37860fb95c775bc0d2e5d0fb1562f9bde1 (patch)
tree354ec910400c7b00c802033c4279b08f54bc4dbb /tools/run_tests/artifacts
parent23d7ea43e6777ca153a7e0325484cf1722995a69 (diff)
No need to build artifact for PHP MacOS
Diffstat (limited to 'tools/run_tests/artifacts')
-rw-r--r--tools/run_tests/artifacts/artifact_targets.py7
1 files changed, 1 insertions, 6 deletions
diff --git a/tools/run_tests/artifacts/artifact_targets.py b/tools/run_tests/artifacts/artifact_targets.py
index a37098d9bf..ef40c901b2 100644
--- a/tools/run_tests/artifacts/artifact_targets.py
+++ b/tools/run_tests/artifacts/artifact_targets.py
@@ -295,10 +295,6 @@ class PHPArtifact:
self.name, 'tools/dockerfile/grpc_artifact_linux_{}'.format(
self.arch),
'tools/run_tests/artifacts/build_artifact_php.sh')
- else:
- return create_jobspec(
- self.name, ['tools/run_tests/artifacts/build_artifact_php.sh'],
- use_workspace=True)
class ProtocArtifact:
@@ -400,6 +396,5 @@ def targets():
PythonArtifact('windows', 'x64', 'Python37'),
RubyArtifact('linux', 'x64'),
RubyArtifact('macos', 'x64'),
- PHPArtifact('linux', 'x64'),
- PHPArtifact('macos', 'x64')
+ PHPArtifact('linux', 'x64')
])