2021-12-17 04:03:20 +01:00
|
|
|
#!/usr/bin/python3
|
2021-12-17 04:22:09 +01:00
|
|
|
"""
|
|
|
|
Allow buildbot to run jobs dynamically defined a a project repo
|
|
|
|
Requires docker
|
|
|
|
"""
|
2021-12-17 04:03:20 +01:00
|
|
|
|
|
|
|
# TODO: change "ghcontext" in master.cfg to interpolate the job name
|
|
|
|
# TODO: write upload script
|
|
|
|
# TODO: write hook (perhaps the default hook is ok), authentication for hook
|
|
|
|
# TODO: write hook job, maybe also a dockerfile?
|
|
|
|
# TODO: what to do about non-docker jobs
|
|
|
|
|
2022-04-07 14:46:29 +02:00
|
|
|
from os import listdir
|
|
|
|
from os.path import isfile, join
|
2021-12-25 05:49:17 +01:00
|
|
|
from buildbot.plugins import steps, util
|
2021-12-23 09:01:52 +01:00
|
|
|
|
2021-12-25 07:57:44 +01:00
|
|
|
from .lib.renderers import *
|
|
|
|
|
2021-12-17 04:03:20 +01:00
|
|
|
|
2021-12-17 04:22:09 +01:00
|
|
|
def find_artifacts(directory="out"):
|
|
|
|
"""
|
|
|
|
find artifacts (any file) in a directory
|
|
|
|
"""
|
|
|
|
for _ in listdir(directory):
|
|
|
|
if not isfile(join(directory, _)):
|
|
|
|
continue
|
|
|
|
return join(directory, _)
|
2021-12-23 09:01:52 +01:00
|
|
|
|
2021-12-25 05:49:17 +01:00
|
|
|
|
2022-02-07 11:09:33 +01:00
|
|
|
def add_parent_step(build_factory):
|
2021-12-25 05:49:17 +01:00
|
|
|
"""
|
|
|
|
Add a step to the parent build factory that will trigger the child hooks
|
|
|
|
"""
|
|
|
|
|
|
|
|
build_factory.addStep(
|
|
|
|
steps.ShellCommand(
|
2022-02-11 12:50:23 +01:00
|
|
|
name="Execute worker script",
|
2021-12-25 05:49:17 +01:00
|
|
|
command=[
|
2022-02-11 12:50:23 +01:00
|
|
|
"python3",
|
2022-04-08 05:20:50 +02:00
|
|
|
'/usr/local/bin/worker_multibuild.py',
|
2022-04-07 14:46:29 +02:00
|
|
|
util.Property("buildboturl"),
|
2022-02-07 11:09:33 +01:00
|
|
|
util.Property('repository'),
|
2022-04-11 10:53:39 +02:00
|
|
|
util.Property('branch'),
|
|
|
|
util.Property('revision')
|
2021-12-25 05:49:17 +01:00
|
|
|
],
|
|
|
|
)
|
|
|
|
)
|
|
|
|
|
|
|
|
|
2022-02-11 12:50:23 +01:00
|
|
|
def add_child_sh_steps(build_factory, directory=".buildbot"):
|
2021-12-25 05:49:17 +01:00
|
|
|
"""
|
2022-02-11 12:50:23 +01:00
|
|
|
Add a step to the download, build and test factory
|
2021-12-25 05:49:17 +01:00
|
|
|
"""
|
2022-02-11 12:50:23 +01:00
|
|
|
|
2021-12-25 05:49:17 +01:00
|
|
|
build_factory.addStep(
|
|
|
|
steps.ShellCommand(
|
2022-02-11 08:06:42 +01:00
|
|
|
name=util.Interpolate("build_%(prop:jobname)s"),
|
2022-02-11 12:50:23 +01:00
|
|
|
command=util.Interpolate("%(kw:directory)s/%(prop:jobname)s/build.sh", directory=directory),
|
2021-12-25 07:57:44 +01:00
|
|
|
doStepIf=is_build_script_available,
|
|
|
|
hideStepIf=isnt_build_script_available,
|
2021-12-25 05:49:17 +01:00
|
|
|
)
|
|
|
|
)
|
|
|
|
|
|
|
|
build_factory.addStep(
|
|
|
|
steps.ShellCommand(
|
2022-02-11 08:06:42 +01:00
|
|
|
name= util.Interpolate("test_%(prop:jobname)s"),
|
|
|
|
command=util.Interpolate("%(kw:directory)s/%(prop:jobname)s/test.sh", directory=directory),
|
2021-12-25 07:57:44 +01:00
|
|
|
doStepIf=is_test_script_available,
|
|
|
|
hideStepIf=isnt_test_script_available,
|
2021-12-25 05:49:17 +01:00
|
|
|
)
|
|
|
|
)
|