Skip to content

Commit 7662c33

Browse files
authored
Adding URDFModelica to installLibraries.mos (#240)
- Adding URDFModelica to installLibraries.mos - Reordered install loops to do all in one loop - Removing duplicate entry for OpenIPSL
1 parent d8af312 commit 7662c33

File tree

1 file changed

+56
-17
lines changed

1 file changed

+56
-17
lines changed

.CI/installLibraries.mos

Lines changed: 56 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -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
1919
end if;
2020
end for;
2121

22-
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
23-
if not installPackage(stringTypeName(lib), "master") then
24-
print(lib + " " + getErrorString() + "\n");
25-
exit(1);
26-
end if;
27-
end for;
28-
2922
for l in {
23+
{"AdvancedNoise", "master"},
3024
{"AES", "main"},
3125
{"AixLib", "main"},
3226
{"Annex60", ""},
3327
{"BidiDCDC", ""},
28+
{"BioChem", "master"},
3429
{"BLDC", ""},
3530
{"BoundaryInitBlocks", "master"},
31+
{"BuildingSystems", "master"},
32+
{"BuildSysPro", "master"},
3633
{"BusinessSimulation", ""},
3734
{"BusinessSimulation", "main"},
35+
{"Chemical", "master"},
36+
{"ClaRa", ""},
37+
{"ClaRa", "main"},
38+
{"ConPNlib", "master"},
3839
{"Credibility", ""},
3940
{"DeltaRobot", ""},
4041
{"DroneLibrary", ""},
@@ -44,36 +45,74 @@ for l in {
4445
{"EHPTexamples", "main"},
4546
{"EHPTlib", ""},
4647
{"EHPTlib", "main"},
48+
{"ElectricalEnergyStorage", "master"},
4749
{"ExtendedPetriNets", ""},
4850
{"ExternalMedia",""},
51+
{"ExternalMemoryLib", "master"},
52+
{"ExternData", "master"},
53+
{"FastBuildings", "master"},
54+
{"FCSys", "master"},
4955
{"FluxTubesExtension","main"},
56+
{"Greenhouses", "master"},
57+
{"HanserModelica", "master"},
58+
{"HelmholtzMedia", "master"},
59+
{"IBPSA", "master"},
60+
{"IdealizedContact", "master"},
5061
{"IDEAS", ""},
5162
{"IDEAS", "master"},
63+
{"IndustrialControlSystems", "master"},
5264
{"iPSL", ""},
65+
{"KeyWordIO", "master"},
66+
{"LargeTestSuite", "master"},
67+
{"LibRAS", "master"},
5368
{"MagLev", ""},
69+
{"MessagePack", "master"},
70+
{"MEV", "master"},
71+
{"Modelica_DeviceDrivers", "master"},
72+
{"Modelica_LinearSystems2", "dev"},
73+
{"Modelica_LinearSystems2", "master"},
74+
{"Modelica_Noise", "master"},
75+
{"Modelica_StateGraph2", ""},
76+
{"Modelica_Synchronous", "master"},
77+
{"ModelicaByExample", "master"},
78+
{"ModelicaTestOverdetermined", "master"},
79+
{"ObjectStab", "master"},
5480
{"OpenHydraulics", "main"},
5581
{"OpenIMDML", "main"},
56-
{"OpenIPSL", "2.0.0"},
5782
{"OpenIPSL", ""},
83+
{"OpenIPSL", "2.0.0"},
5884
{"OpenIPSL", "master"},
59-
{"PhotoVoltaics", ""},
6085
{"PhotoVoltaics_TGM", ""},
61-
{"PowerSystems","master"},
62-
{"PowerSystems",""},
86+
{"PhotoVoltaics", ""},
87+
{"Physiolibrary", "master"},
88+
{"Physiomodel", ""},
89+
{"PlanarMechanics", "master"},
90+
{"PNlib", "master"},
6391
{"PowerGrids",""},
6492
{"PowerGrids","develop"},
93+
{"PowerSysPro", "master"},
94+
{"PowerSystems",""},
95+
{"PowerSystems","master"},
96+
{"ScalableTestGrids", "master"},
97+
{"ScalableTestSuite", "master"},
6598
{"SiemensPower",""},
6699
{"SiemensPower","OMCtest"},
67-
{"StewartPlatform",""},
68100
{"SOFCPoliMi","master"},
69-
{"Modelica_LinearSystems2", "dev"},
70-
{"Modelica_StateGraph2", ""},
71-
{"Physiomodel", ""},
101+
{"SolarTherm", "master"},
102+
{"Spot", "master"},
103+
{"StewartPlatform",""},
104+
{"SystemDynamics", "master"},
105+
{"TAeZoSysPro_testsuite", "master"},
106+
{"TAeZoSysPro", "master"},
107+
{"ThermalSeparation", "master"},
72108
{"ThermofluidStream", ""},
73109
{"ThermofluidStream", "main"},
110+
{"ThermoPower", "master"},
111+
{"ThermoSysPro", "master"},
74112
{"TILMedia", "main"},
75-
{"ClaRa", ""},
76-
{"ClaRa", "main"}
113+
{"TransiEnt", "master"},
114+
{"VehicleInterfaces", "master"},
115+
{"URDFModelica", "main"}
77116
} loop
78117
if not installPackage(stringTypeName(l[1]), l[2]) then
79118
print(l[1] + " " + l[2] + getErrorString() + "\n");

0 commit comments

Comments
 (0)