mirror of
https://github.com/CoolProp/CoolProp.git
synced 2026-04-23 03:00:17 -04:00
Added dependent scheduler for swig matlab
Signed-off-by: Ian Bell <ian.h.bell@gmail.com>
This commit is contained in:
@@ -541,11 +541,19 @@ c['schedulers'].append(Nightly(name='nightly',
|
||||
hour=[3, 15],
|
||||
minute=0))
|
||||
|
||||
from buildbot.schedulers import basic
|
||||
from buildbot.schedulers import basic
|
||||
|
||||
swig_matlab_pre_scheduler = SingleBranchScheduler(
|
||||
name="all",
|
||||
change_filter=filter.ChangeFilter(branch='master'),
|
||||
treeStableTimer=None,
|
||||
builderNames=['SWIG-MATLAB-pre'])
|
||||
c['schedulers'].append(swig_matlab_pre_scheduler)
|
||||
|
||||
swig_matlab_dependent_scheduler = basic.Dependent(name="swig-matlab-dependency",
|
||||
upstream=swig_matlab_pre, # <- no quotes!
|
||||
upstream=swig_matlab_pre_scheduler, # <- no quotes!
|
||||
builderNames=["MATLAB32-windows"])
|
||||
c['schedulers'] = [swig_matlab_pre, swig_matlab_scheduler]
|
||||
c['schedulers'] = [swig_matlab_pre_scheduler, swig_matlab_dependent_scheduler]
|
||||
|
||||
####### STATUS TARGETS
|
||||
|
||||
|
||||
Reference in New Issue
Block a user