diff options
author | makefu <github@syntax-fehler.de> | 2016-02-12 22:15:18 +0100 |
---|---|---|
committer | makefu <github@syntax-fehler.de> | 2016-02-12 22:15:18 +0100 |
commit | 603752e1e3fe96bdaa9f8e5ffceae6a99a145139 (patch) | |
tree | 255c2dd3e7412938f98b8c55de0afb9f352512a1 | |
parent | 1c850bb26f931224eceb1dd35e620e0f5aeb19ed (diff) |
s 2 buildbot: fix regex
-rw-r--r-- | shared/2configs/shared-buildbot.nix | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/shared/2configs/shared-buildbot.nix b/shared/2configs/shared-buildbot.nix index af877f5d8..604cbc5b2 100644 --- a/shared/2configs/shared-buildbot.nix +++ b/shared/2configs/shared-buildbot.nix @@ -26,13 +26,12 @@ builderNames=["full-tests"])) ''; fast-tests-scheduler = '' - # test the master real quick + # test everything BUT the master real quick sched.append(schedulers.SingleBranchScheduler( ## all branches - change_filter=util.ChangeFilter(branch_re=".*"), - # change_filter=util.ChangeFilter(branch="master"), - treeStableTimer=10, #only test the latest push - name="fast-master-test", + change_filter=util.ChangeFilter(branch_re="(?!^master$)"), + # treeStableTimer=10, + name="fast-test-all-branches", builderNames=["fast-tests"])) ''; test-cac-infest-master = '' |