from buildbot.changes.gitpoller import GitPoller
from buildbot.changes.pb import PBChangeSource
from buildbot.config.builder import BuilderConfig
+from buildbot.steps.master import Assert
from buildbot.steps.source.git import Git
from buildbot.steps.shell import ShellCommand
from buildbot.steps.trigger import Trigger
tags=["mpd"],
workernames=["carbon-worker"],
factory=BuildFactory([
- ShellCommand(command=["echo", "hello"])
+ Assert(True)
])))
####### libupnpp tag notifications
tags=["mpd"],
workernames=["carbon-worker"],
factory=BuildFactory([
- ShellCommand(command=["echo", "hello"])
+ Assert(True)
])))
####### upmpdcli tag notifications
tags=["mpd"],
workernames=["carbon-worker"],
factory=BuildFactory([
- ShellCommand(command=["echo", "hello"])
+ Assert(True)
])))
####### veilid tag builds
tags=["buildbot"],
workernames=["carbon-worker"],
factory=BuildFactory([
- ShellCommand(command=["echo", "hello"])
+ Assert(True)
])))
####### crawl tag notifications
tags=["crawl"],
workernames=["carbon-worker"],
factory=BuildFactory([
- ShellCommand(command=["echo", "hello"])
+ Assert(True)
])))
####### ledger tag notifications
tags=["ledger"],
workernames=["carbon-worker"],
factory=BuildFactory([
- ShellCommand(command=["echo", "hello"])
+ Assert(True)
])))
####### toy project with triggers