Include "linux_extra" python artifacts in regular linux build (#27279)

pull/27184/head
Jan Tattermusch 3 years ago committed by GitHub
parent 82d8bb089d
commit e11dcbc3e4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 5
      tools/run_tests/artifacts/artifact_targets.py

@ -107,6 +107,11 @@ class PythonArtifact:
self.py_version = py_version
if 'manylinux' in platform:
self.labels.append('linux')
if 'linux_extra' in platform:
# linux_extra wheels used to be built by a separate kokoro job.
# Their build is now much faster, so they can be included
# in the regular artifact build.
self.labels.append('linux')
def pre_build_jobspecs(self):
return []

Loading…
Cancel
Save