customize

This commit is contained in:
AF 2023-08-05 12:05:13 +00:00
parent 746ba2da0b
commit 64dce7dad9

View File

@ -132,6 +132,26 @@ c["builders"].append(
)
builderNames.append("rustdoc")
factory = util.BuildFactory()
factory.addStep(
steps.Git(repourl="https://gitea.parrrate.ru/PTV/radn-rs.git", mode="incremental")
)
factory.addStep(
steps.ShellCommand(
command=[
"cargo",
"fmt",
"--check",
]
)
)
c["builders"].append(
util.BuilderConfig(
name="fmt-check", workernames=["example-worker"], factory=factory
)
)
builderNames.append("fmt-check")
####### SCHEDULERS
# Configure the Schedulers, which decide how to react to incoming changes. In this