Skip to content

Commit

Permalink
Put back buildings libs (#109)
Browse files Browse the repository at this point in the history
* put back the old Buildings versions tested by configs/conf-old.json

* big caps warnings
  • Loading branch information
adrpo committed May 19, 2024
1 parent 8035268 commit 3e0093f
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .CI/installLibraries.mos
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// adrpo: DO NOT REMOVE ANY LIBS FROM HERE BEFORE REMOVING THEM FROM configs/conf*
// 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");
Expand All @@ -9,7 +12,7 @@ for v in {"3.2.1","3.2.2","3.2.3","4.0.0","trunk"} loop
exit(1);
end if;
end for;
for v in {"maint.10.0.x", "maint.11.x", "master"} loop
for v in {"1.6", "3.0.0", "maint.7.0.x", "maint.8.1.x", "maint.9.1.x", "maint.10.0.x", "maint.11.x", "master"} loop
if not installPackage(Buildings, v) then
print("Buildings " + v + " " + getErrorString() + "\n");
exit(1);
Expand Down

0 comments on commit 3e0093f

Please sign in to comment.