master: Update the branch filter now that we are passing the full ref

This commit is contained in:
Colin Finck 2020-05-07 07:53:08 +02:00
parent 7ea5c055e3
commit d6e2551017
No known key found for this signature in database
GPG Key ID: 1BA74E70456BA1A9

View File

@ -152,14 +152,14 @@ c['schedulers'] = []
c['schedulers'].append(schedulers.SingleBranchScheduler(
name="all",
change_filter=util.ChangeFilter(branch='master'),
change_filter=util.ChangeFilter(branch='refs/heads/master'),
treeStableTimer=None,
builderNames=["Build GCCLin_x86", "Build MSVC_x86", "Build MSVC_x64"]))
#builderNames=["Build GCCLin_x86", "Build MSVC_x86", "Build MSVC_x64", "Test KVM AHK"]))
c['schedulers'].append(schedulers.SingleBranchScheduler(
name="rostests",
change_filter=util.ChangeFilter(branch='master', category='rostests'),
change_filter=util.ChangeFilter(branch='refs/heads/master', category='rostests'),
treeStableTimer=None,
builderNames=["Test WHS"]))