builder.braak.pro/config/pipeline/code_bpy_deploy.py
Bart van der Braak 77ae214d24
All checks were successful
/ checks (pull_request) Successful in 15s
Change environment variable setup
2024-11-20 02:29:30 +01:00

30 lines
669 B
Python

# SPDX-License-Identifier: GPL-2.0-or-later
# SPDX-FileCopyrightText: 2011-2024 Blender Authors
# <pep8 compliant>
# 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"],
)