Skip to content

Commit c5c802f

Browse files
authored
keep just MSL 3.2.3 and 4.1.0 to check coverage (#207)
1 parent 3ebd3d2 commit c5c802f

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.CI/installLibraries.mos

+5-5
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,6 @@
22
// usually the newest version will be loaded instead if you remove them!
33
// SO: first remove them from configs/conf* then remove them from here.
44
updatePackageIndex();
5-
if not installPackage(Modelica, "3.1.0", exactMatch=true) then
6-
print("Modelica 3.1.0 " + getErrorString() + "\n");
7-
exit(1);
8-
end if;
95
if not installPackage(Modelica, "4.1.0-beta.om", exactMatch=true) then
106
print("Modelica 4.1.0-beta.om" + getErrorString() + "\n");
117
exit(1);
@@ -14,7 +10,11 @@ if not installPackage(ModelicaServices, "4.1.0-beta.om", exactMatch=true) then
1410
print("ModelicaServices 4.1.0-beta.om" + getErrorString() + "\n");
1511
exit(1);
1612
end if;
17-
for v in {"3.2.1","3.2.2","3.2.3","4.0.0","4.1.0-beta.om","trunk"} loop
13+
if not installPackage(ModelicaServices, "trunk", exactMatch=true) then
14+
print("ModelicaServices trunk" + getErrorString() + "\n");
15+
exit(1);
16+
end if;
17+
for v in {"3.2.3","4.1.0-beta.om"} loop
1818
if not installPackage(ModelicaTest, v, exactMatch=true) then
1919
print("ModelicaTest " + v + " " + getErrorString() + "\n");
2020
exit(1);

0 commit comments

Comments
 (0)