l 2 buildbot: rename build-all -> build-hosts

This commit is contained in:
lassulus 2016-11-29 11:15:57 +01:00
parent f55fceaa63
commit dbc68c5e1b

View File

@ -35,7 +35,7 @@ in {
change_filter=util.ChangeFilter(branch_re=".*"), change_filter=util.ChangeFilter(branch_re=".*"),
treeStableTimer=10, treeStableTimer=10,
name="build-all-branches", name="build-all-branches",
builderNames=["build-all", "build-pkgs"] builderNames=["build-hosts", "build-pkgs"]
) )
) )
''; '';
@ -87,7 +87,7 @@ in {
factory.addStep(steps.ShellCommand(**kwargs)) factory.addStep(steps.ShellCommand(**kwargs))
''; '';
builder = { builder = {
build-all = '' build-hosts = ''
f = util.BuildFactory() f = util.BuildFactory()
f.addStep(grab_repo) f.addStep(grab_repo)
for i in [ "test-minimal-deploy", "test-all-krebs-modules", "wolf", "test-centos7" ]: for i in [ "test-minimal-deploy", "test-all-krebs-modules", "wolf", "test-centos7" ]:
@ -128,7 +128,7 @@ in {
bu.append( bu.append(
util.BuilderConfig( util.BuilderConfig(
name="build-all", name="build-hosts",
workernames=workernames, workernames=workernames,
factory=f factory=f
) )