commit 92cca9c6125996b837fd707a943fe1493b078b4b
parent c4c7a22ce0cb908873bfa7575fde2993c12f9b66
Author: buckE <buckE@disroot.org>
Date: Wed, 17 Jun 2020 05:41:48 +0000
moved schedulers below other declarations
Diffstat:
1 file changed, 14 insertions(+), 14 deletions(-)
diff --git a/buildbot/master.cfg b/buildbot/master.cfg
@@ -94,10 +94,10 @@ def create_factory_with_deployment():
# !!! This matters. Mis-ordering leads to failure. !!!
# Best Practices: Group by worker as:
-# - comment for worker location (ex: "Find worker at: xyz shell account non taler.net")
-# - SCHEDULER
-# - FACTORY function
-# - BUILDER function
+# - comment for WORKER location (ex: "Find worker at: xyz shell account non taler.net")
+# - FACTORY declaration
+# - BUILDER declaration
+# - SCHEDULER declaration
#
# NOTE: WORKER must be added to list: c["workers"] = [
# NOTE: BUILDER must be added to list: c["builders"] = [
@@ -109,16 +109,6 @@ def create_factory_with_deployment():
# buildslavetest WORKER: buildslavetest@taler.net
-# buildslavetest SCHEDULER
-# Run at 11am every day.
-TEST_SCHEDULER = schedulers.Nightly(
- name="test-scheduler",
- builderNames=["buildslavetest-builder"],
- branch="master",
- hour=11,
- minute=00
-)
-
# buildslavetest FACTORY
BUILDSLAVETEST_FACTORY = create_factory_with_deployment()
BUILDSLAVETEST_FACTORY.addStep(
@@ -138,6 +128,16 @@ BUILDSLAVETEST_BUILDER = util.BuilderConfig(
factory=BUILDSLAVETEST_FACTORY
)
+# buildslavetest SCHEDULER
+# Run at 11am every day.
+TEST_SCHEDULER = schedulers.Nightly(
+ name="test-scheduler",
+ builderNames=["buildslavetest-builder"],
+ branch="master",
+ hour=11,
+ minute=00
+)
+
### /end ---buildslavetest
#######################