Get back to original
This commit is contained in:
parent
77ae214d24
commit
5cc9d7b0e9
68 changed files with 83 additions and 42 deletions
43
buildbot/config/pipeline/code_deploy.py
Normal file
43
buildbot/config/pipeline/code_deploy.py
Normal file
|
@ -0,0 +1,43 @@
|
|||
# SPDX-License-Identifier: GPL-2.0-or-later
|
||||
# SPDX-FileCopyrightText: 2011-2024 Blender Authors
|
||||
# <pep8 compliant>
|
||||
|
||||
# Builders for deploying Blender releases.
|
||||
|
||||
import buildbot.plugins
|
||||
|
||||
import conf.branches
|
||||
import pipeline.common
|
||||
|
||||
|
||||
def populate(ENVIRONMENT):
|
||||
properties = [
|
||||
buildbot.plugins.util.BooleanParameter(
|
||||
name="needs_full_clean",
|
||||
label="Full clean -> removes build workspace on machine",
|
||||
required=True,
|
||||
strict=True,
|
||||
default=False,
|
||||
),
|
||||
]
|
||||
|
||||
return pipeline.common.create_pipeline(
|
||||
ENVIRONMENT,
|
||||
"code-artifacts-deploy",
|
||||
"code_deploy.py",
|
||||
[
|
||||
"configure-machine",
|
||||
"update-code",
|
||||
"package-source",
|
||||
"pull-artifacts",
|
||||
"repackage-artifacts",
|
||||
"deploy-artifacts",
|
||||
"monitor-artifacts",
|
||||
"clean",
|
||||
],
|
||||
conf.branches.code_deploy_track_ids,
|
||||
properties,
|
||||
"blender.git",
|
||||
["linux-x86_64-general"],
|
||||
default_step_timeout_in_seconds=30 * 60,
|
||||
)
|
Loading…
Add table
Add a link
Reference in a new issue