builder.braak.pro/buildbot/config/pipeline/code_bpy_deploy.py
Bart van der Braak edb56e96dc
Some checks failed
/ checks (pull_request) Failing after 14s
Implement authentication via Gitea
2024-11-20 23:59:35 +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"],
)