disable generating generic windows and linux from premerge script
This commit is contained in:
parent
ff87c03ba6
commit
722d4632f3
1 changed files with 6 additions and 4 deletions
|
@ -58,13 +58,15 @@ if __name__ == '__main__':
|
||||||
|
|
||||||
linux_projects = cp.choose_projects(patch = patch, os_name = "linux")
|
linux_projects = cp.choose_projects(patch = patch, os_name = "linux")
|
||||||
logging.info(f'linux_projects: {linux_projects}')
|
logging.info(f'linux_projects: {linux_projects}')
|
||||||
if len(linux_projects) > 0:
|
# It's now generated by .ci/generate-buildkite-pipeline-premerge
|
||||||
steps.extend(generic_linux(';'.join(linux_projects), check_diff=True))
|
# if len(linux_projects) > 0:
|
||||||
|
# steps.extend(generic_linux(';'.join(linux_projects), check_diff=True))
|
||||||
|
|
||||||
windows_projects = cp.choose_projects(patch = patch, os_name = "windows")
|
windows_projects = cp.choose_projects(patch = patch, os_name = "windows")
|
||||||
logging.info(f'windows_projects: {windows_projects}')
|
logging.info(f'windows_projects: {windows_projects}')
|
||||||
if len(windows_projects) > 0:
|
# Generated by .ci/generate-buildkite-pipeline-premerge.
|
||||||
steps.extend(generic_windows(';'.join(windows_projects)))
|
# if len(windows_projects) > 0:
|
||||||
|
# steps.extend(generic_windows(';'.join(windows_projects)))
|
||||||
|
|
||||||
# Add custom checks.
|
# Add custom checks.
|
||||||
if os.getenv('ph_skip_generated') is None:
|
if os.getenv('ph_skip_generated') is None:
|
||||||
|
|
Loading…
Reference in a new issue