aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/run_tests/artifacts/artifact_targets.py
diff options
context:
space:
mode:
authorGravatar Stanley Cheung <stanleycheung@google.com>2018-08-10 13:44:38 -0700
committerGravatar Stanley Cheung <stanleycheung@google.com>2018-08-10 13:44:38 -0700
commit54e7b24b9a167cea766b03c8e559075ee7809927 (patch)
tree2d5cc88680056e585c76a2b521e8ae000e5ffd8d /tools/run_tests/artifacts/artifact_targets.py
parentfbde7d37860fb95c775bc0d2e5d0fb1562f9bde1 (diff)
Remove if clause too
Diffstat (limited to 'tools/run_tests/artifacts/artifact_targets.py')
-rw-r--r--tools/run_tests/artifacts/artifact_targets.py9
1 files changed, 4 insertions, 5 deletions
diff --git a/tools/run_tests/artifacts/artifact_targets.py b/tools/run_tests/artifacts/artifact_targets.py
index ef40c901b2..34846202b8 100644
--- a/tools/run_tests/artifacts/artifact_targets.py
+++ b/tools/run_tests/artifacts/artifact_targets.py
@@ -290,11 +290,10 @@ class PHPArtifact:
return []
def build_jobspec(self):
- if self.platform == 'linux':
- return create_docker_jobspec(
- self.name, 'tools/dockerfile/grpc_artifact_linux_{}'.format(
- self.arch),
- 'tools/run_tests/artifacts/build_artifact_php.sh')
+ return create_docker_jobspec(
+ self.name, 'tools/dockerfile/grpc_artifact_linux_{}'.format(
+ self.arch),
+ 'tools/run_tests/artifacts/build_artifact_php.sh')
class ProtocArtifact: