]> Humopery - private/buildbot-default.git/commitdiff
builder comments for readability
authorErik Mackdanz <erikmack@gmail.com>
Wed, 30 Oct 2024 03:29:36 +0000 (03:29 +0000)
committerErik Mackdanz <erikmack@gmail.com>
Wed, 30 Oct 2024 03:29:36 +0000 (03:29 +0000)
master.cfg

index e6bf6eaaf874b804f8232c99efe977fab7174311..cd9b612482aa453542dd974bad004304ed85f26c 100644 (file)
@@ -194,6 +194,8 @@ class HLedgerVersion(buildstep.ShellMixin, buildstep.BuildStep):
 
 c['builders'] = []
 
+# ---- upmpdcli tag notifications
+
 factory = BuildFactory()
 factory.addStep(ShellCommand(command=["echo", "hello"]))
 c['builders'].append(BuilderConfig(
@@ -218,6 +220,8 @@ c['builders'].append(BuilderConfig(
     workernames=["carbon-worker"],
     factory=factory))
 
+# ---- veilid tag builds
+
 factory = BuildFactory()
 factory.addStep(Git(repourl='https://gitlab.com/veilid/veilid.git'))
 factory.addStep(ShellCommand(
@@ -240,6 +244,8 @@ c['builders'].append(BuilderConfig(
     workernames=["carbon-worker"],
     factory=factory))
 
+# ---- crawl tag notifications
+
 factory = BuildFactory()
 factory.addStep(ShellCommand(command=["echo", "hello"]))
 c['builders'].append(BuilderConfig(
@@ -248,6 +254,8 @@ c['builders'].append(BuilderConfig(
     workernames=["carbon-worker"],
     factory=factory))
 
+# ---- toy project with triggers
+
 factory = BuildFactory()
 factory.addStep(Trigger(
     schedulerNames=["fetch-deps-stage"],