customize
This commit is contained in:
parent
746ba2da0b
commit
64dce7dad9
20
master.cfg
20
master.cfg
@ -132,6 +132,26 @@ c["builders"].append(
|
|||||||
)
|
)
|
||||||
builderNames.append("rustdoc")
|
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
|
####### SCHEDULERS
|
||||||
|
|
||||||
# Configure the Schedulers, which decide how to react to incoming changes. In this
|
# Configure the Schedulers, which decide how to react to incoming changes. In this
|
||||||
|
Loading…
Reference in New Issue
Block a user