Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
73 changes: 56 additions & 17 deletions .CI/installLibraries.mos
Original file line number Diff line number Diff line change
Expand Up @@ -19,22 +19,23 @@ for v in {"1.6", "3.0.0", "maint.7.0.x", "maint.8.1.x", "maint.9.1.x", "maint.10
end if;
end for;

for lib in {"AdvancedNoise", "BioChem", "BuildingSystems", "BuildSysPro", "Chemical", "ConPNlib", "ElectricalEnergyStorage", "ExternData", "ExternalMemoryLib", "FastBuildings", "FCSys", "Greenhouses", "HanserModelica", "HelmholtzMedia", "IBPSA", "IdealizedContact", "IndustrialControlSystems", "KeyWordIO", "LargeTestSuite", "LibRAS", "MEV", "MessagePack", "ModelicaByExample", "ModelicaTestOverdetermined", "Modelica_Synchronous", "Modelica_DeviceDrivers", "Modelica_LinearSystems2", "Modelica_Noise", "ObjectStab", "OpenIPSL", "PNlib", "Physiolibrary", "PlanarMechanics", "PowerSysPro", "ScalableTestGrids", "ScalableTestSuite", "SolarTherm", "Spot", "SystemDynamics", "TAeZoSysPro", "TAeZoSysPro_testsuite", "ThermalSeparation", "ThermoPower", "ThermoSysPro", "TransiEnt", "VehicleInterfaces"} loop
if not installPackage(stringTypeName(lib), "master") then
print(lib + " " + getErrorString() + "\n");
exit(1);
end if;
end for;

for l in {
{"AdvancedNoise", "master"},
{"AES", "main"},
{"AixLib", "main"},
{"Annex60", ""},
{"BidiDCDC", ""},
{"BioChem", "master"},
{"BLDC", ""},
{"BoundaryInitBlocks", "master"},
{"BuildingSystems", "master"},
{"BuildSysPro", "master"},
{"BusinessSimulation", ""},
{"BusinessSimulation", "main"},
{"Chemical", "master"},
{"ClaRa", ""},
{"ClaRa", "main"},
{"ConPNlib", "master"},
{"Credibility", ""},
{"DeltaRobot", ""},
{"DroneLibrary", ""},
Expand All @@ -44,36 +45,74 @@ for l in {
{"EHPTexamples", "main"},
{"EHPTlib", ""},
{"EHPTlib", "main"},
{"ElectricalEnergyStorage", "master"},
{"ExtendedPetriNets", ""},
{"ExternalMedia",""},
{"ExternalMemoryLib", "master"},
{"ExternData", "master"},
{"FastBuildings", "master"},
{"FCSys", "master"},
{"FluxTubesExtension","main"},
{"Greenhouses", "master"},
{"HanserModelica", "master"},
{"HelmholtzMedia", "master"},
{"IBPSA", "master"},
{"IdealizedContact", "master"},
{"IDEAS", ""},
{"IDEAS", "master"},
{"IndustrialControlSystems", "master"},
{"iPSL", ""},
{"KeyWordIO", "master"},
{"LargeTestSuite", "master"},
{"LibRAS", "master"},
{"MagLev", ""},
{"MessagePack", "master"},
{"MEV", "master"},
{"Modelica_DeviceDrivers", "master"},
{"Modelica_LinearSystems2", "dev"},
{"Modelica_LinearSystems2", "master"},
{"Modelica_Noise", "master"},
{"Modelica_StateGraph2", ""},
{"Modelica_Synchronous", "master"},
{"ModelicaByExample", "master"},
{"ModelicaTestOverdetermined", "master"},
{"ObjectStab", "master"},
{"OpenHydraulics", "main"},
{"OpenIMDML", "main"},
{"OpenIPSL", "2.0.0"},
{"OpenIPSL", ""},
{"OpenIPSL", "2.0.0"},
{"OpenIPSL", "master"},
{"PhotoVoltaics", ""},
{"PhotoVoltaics_TGM", ""},
{"PowerSystems","master"},
{"PowerSystems",""},
{"PhotoVoltaics", ""},
{"Physiolibrary", "master"},
{"Physiomodel", ""},
{"PlanarMechanics", "master"},
{"PNlib", "master"},
{"PowerGrids",""},
{"PowerGrids","develop"},
{"PowerSysPro", "master"},
{"PowerSystems",""},
{"PowerSystems","master"},
{"ScalableTestGrids", "master"},
{"ScalableTestSuite", "master"},
{"SiemensPower",""},
{"SiemensPower","OMCtest"},
{"StewartPlatform",""},
{"SOFCPoliMi","master"},
{"Modelica_LinearSystems2", "dev"},
{"Modelica_StateGraph2", ""},
{"Physiomodel", ""},
{"SolarTherm", "master"},
{"Spot", "master"},
{"StewartPlatform",""},
{"SystemDynamics", "master"},
{"TAeZoSysPro_testsuite", "master"},
{"TAeZoSysPro", "master"},
{"ThermalSeparation", "master"},
{"ThermofluidStream", ""},
{"ThermofluidStream", "main"},
{"ThermoPower", "master"},
{"ThermoSysPro", "master"},
{"TILMedia", "main"},
{"ClaRa", ""},
{"ClaRa", "main"}
{"TransiEnt", "master"},
{"VehicleInterfaces", "master"},
{"URDFModelica", "main"}
} loop
if not installPackage(stringTypeName(l[1]), l[2]) then
print(l[1] + " " + l[2] + getErrorString() + "\n");
Expand Down
Loading