# SPDX-License-Identifier: GPL-2.0-or-later # SPDX-FileCopyrightText: 2011-2024 Blender Authors # # Builders for deploying Python module releases to PyPI. import conf.branches import pipeline.common def populate(ENVIRONMENT): properties = [] return pipeline.common.create_pipeline( ENVIRONMENT, "code-bpy-deploy", "code_bpy_deploy.py", [ "configure-machine", "update-code", "pull", "deliver-pypi", "clean", ], conf.branches.code_deploy_track_ids, properties, "blender.git", ["linux-x86_64-general"], )