summaryrefslogtreecommitdiffstats
path: root/shared
diff options
context:
space:
mode:
authormakefu <github@syntax-fehler.de>2016-02-12 22:15:18 +0100
committermakefu <github@syntax-fehler.de>2016-02-12 22:15:18 +0100
commit603752e1e3fe96bdaa9f8e5ffceae6a99a145139 (patch)
tree255c2dd3e7412938f98b8c55de0afb9f352512a1 /shared
parent1c850bb26f931224eceb1dd35e620e0f5aeb19ed (diff)
s 2 buildbot: fix regex
Diffstat (limited to 'shared')
-rw-r--r--shared/2configs/shared-buildbot.nix9
1 files changed, 4 insertions, 5 deletions
diff --git a/shared/2configs/shared-buildbot.nix b/shared/2configs/shared-buildbot.nix
index af877f5d..604cbc5b 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 = ''