Skip to content

keep just MSL 3.2.3 and 4.1.0 to check coverage #207

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 2, 2025
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
10 changes: 5 additions & 5 deletions .CI/installLibraries.mos
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,6 @@
// usually the newest version will be loaded instead if you remove them!
// SO: first remove them from configs/conf* then remove them from here.
updatePackageIndex();
if not installPackage(Modelica, "3.1.0", exactMatch=true) then
print("Modelica 3.1.0 " + getErrorString() + "\n");
exit(1);
end if;
if not installPackage(Modelica, "4.1.0-beta.om", exactMatch=true) then
print("Modelica 4.1.0-beta.om" + getErrorString() + "\n");
exit(1);
Expand All @@ -14,7 +10,11 @@ if not installPackage(ModelicaServices, "4.1.0-beta.om", exactMatch=true) then
print("ModelicaServices 4.1.0-beta.om" + getErrorString() + "\n");
exit(1);
end if;
for v in {"3.2.1","3.2.2","3.2.3","4.0.0","4.1.0-beta.om","trunk"} loop
if not installPackage(ModelicaServices, "trunk", exactMatch=true) then
print("ModelicaServices trunk" + getErrorString() + "\n");
exit(1);
end if;
for v in {"3.2.3","4.1.0-beta.om"} loop
if not installPackage(ModelicaTest, v, exactMatch=true) then
print("ModelicaTest " + v + " " + getErrorString() + "\n");
exit(1);
Expand Down