mirror of
https://github.com/CoolProp/CoolProp.git
synced 2026-04-23 03:00:17 -04:00
swig_builders names are included to schedulers
Signed-off-by: Ian Bell <ian.h.bell@gmail.com>
This commit is contained in:
@@ -882,7 +882,7 @@ c['builders'].append(BuilderConfig(name="SWIG-SCILAB-pre", slavenames=["linux-sl
|
||||
all_builder_names = [builder.name for builder in c['builders']]
|
||||
|
||||
####### NIGHTLY build ###############
|
||||
|
||||
swig_builders = []
|
||||
for platform in ['windows', 'linux', 'OSX']:
|
||||
platname = platform
|
||||
if platform == 'windows':
|
||||
@@ -897,12 +897,14 @@ for platform in ['windows', 'linux', 'OSX']:
|
||||
factory = SWIG_MATLAB_bin_builder(platform, windows = windows)
|
||||
)
|
||||
)
|
||||
swig_builders += c['builders'][-1].name
|
||||
c['builders'].append(
|
||||
BuilderConfig(name="SWIG+scilab-" + platname,
|
||||
slavenames=[platform + "-slave"],
|
||||
factory = SWIG_scilab_bin_builder(platform, windows = windows)
|
||||
)
|
||||
)
|
||||
swig_builders += c['builders'][-1].name
|
||||
|
||||
####### SCHEDULERS
|
||||
|
||||
@@ -919,7 +921,7 @@ c['schedulers'].append(SingleBranchScheduler(
|
||||
builderNames=all_builder_names))
|
||||
c['schedulers'].append(ForceScheduler(
|
||||
name="force",
|
||||
builderNames=all_builder_names+['SWIG-MATLAB-bin','SWIG-scilab-bin'],
|
||||
builderNames=all_builder_names+swig_builders,
|
||||
properties=[
|
||||
BooleanParameter(name="fullclean",
|
||||
label="Do a full clean", default=False)]))
|
||||
|
||||
Reference in New Issue
Block a user