Optimize steps
buildbot/travis_bionic Build done. Details

This commit is contained in:
Peter Šurda 2022-04-08 11:20:50 +08:00
parent b020325a08
commit 53fcd7e7b9
Signed by: PeterSurda
GPG Key ID: 3E47497CF67ABB95
1 changed files with 1 additions and 19 deletions

View File

@ -32,30 +32,12 @@ def add_parent_step(build_factory):
Add a step to the parent build factory that will trigger the child hooks
"""
build_factory.addStep(steps.ShellCommand(
name="Update APT cache",
command=["sudo", "apt", "update"]
))
build_factory.addStep(steps.ShellCommand(
name="Install dependencies",
command=["sudo", "apt", "-y", "install", "python3-requests"]
))
build_factory.addStep(
steps.FileDownload(
workerdest="worker_multibuild.py",
mastersrc="buildbot_multibuild/lib/worker_multibuild.py",
mode=0o444
)
)
build_factory.addStep(
steps.ShellCommand(
name="Execute worker script",
command=[
"python3",
'worker_multibuild.py',
'/usr/local/bin/worker_multibuild.py',
util.Property("buildboturl"),
util.Property('repository'),
util.Property('branch')