diff options
author | makefu <github@syntax-fehler.de> | 2016-11-15 23:26:03 +0100 |
---|---|---|
committer | makefu <github@syntax-fehler.de> | 2016-11-15 23:26:03 +0100 |
commit | 761b401cf9ed82edf56cdceaf817df15a2426df5 (patch) | |
tree | 3d954c6cf4548973c5e95eea5dbf3ba8dba6e1bc /shared | |
parent | 40cd1b9089bc29e74dff8575a6d953d6e5fc88cb (diff) |
s 2 buildbot: use AnyBranchSheduler
Diffstat (limited to 'shared')
-rw-r--r-- | shared/2configs/shared-buildbot.nix | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/shared/2configs/shared-buildbot.nix b/shared/2configs/shared-buildbot.nix index 95495ac..cf08882 100644 --- a/shared/2configs/shared-buildbot.nix +++ b/shared/2configs/shared-buildbot.nix @@ -39,9 +39,7 @@ ''; fast-tests-scheduler = '' # test everything real quick - sched.append(schedulers.SingleBranchScheduler( - ## all branches - change_filter=util.ChangeFilter(branch_re=".*"), + sched.append(schedulers.AnyBranchScheduler( treeStableTimer=10, name="fast-all-branches", builderNames=["fast-tests"])) @@ -118,15 +116,6 @@ f = util.BuildFactory() f.addStep(grab_repo) - for i in [ "test-all-krebs-modules", "wolf" ]: - addShell(f,name="build-{}".format(i),env=env, - command=nixshell + \ - ["mkdir -p /tmp/testbuild/$LOGNAME && touch /tmp/testbuild/$LOGNAME/.populate; \ - make \ - test \ - target=$LOGNAME@${config.krebs.build.host.name}/tmp/testbuild/$LOGNAME \ - method=build \ - system={}".format(i)]) bu.append(util.BuilderConfig(name="build-local", workernames=workernames, |