Skip to content

Commit

Permalink
add MSL maint/4.1.x via 4.1.0-beta.om (#115)
Browse files Browse the repository at this point in the history
  • Loading branch information
adrpo authored Jun 20, 2024
1 parent d05586d commit b368291
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 1 deletion.
4 changes: 4 additions & 0 deletions .CI/installLibraries.mos
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ 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);
end if;
for v in {"3.2.1","3.2.2","3.2.3","4.0.0","trunk"} loop
if not installPackage(ModelicaTest, v, exactMatch=true) then
print("ModelicaTest " + v + " " + getErrorString() + "\n");
Expand Down
22 changes: 21 additions & 1 deletion configs/conf.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,17 @@
"referenceFileExtension":"csv",
"referenceFileNameDelimiter":"/",
"referenceFileNameExtraName":"$ClassName",
"referenceFiles":"$MSLREFERENCE/MAP-LIB_ReferenceResults/v4.0.0",
"referenceFiles":"$MSLREFERENCE/MAP-LIB_ReferenceResults/v4.1.0",
"extraCustomCommands":["if not setCommandLineOptions(\"--std=3.3\") then exit(1); end if;"],
"optlevel":"-Os -march=native"
},
{
"library":"Modelica",
"libraryVersion":"4.1.0-beta.om",
"referenceFileExtension":"csv",
"referenceFileNameDelimiter":"/",
"referenceFileNameExtraName":"$ClassName",
"referenceFiles":"$MSLREFERENCE/MAP-LIB_ReferenceResults/v4.1.0",
"extraCustomCommands":["if not setCommandLineOptions(\"--std=3.3\") then exit(1); end if;"],
"optlevel":"-Os -march=native"
},
Expand Down Expand Up @@ -40,6 +50,16 @@
"extraCustomCommands":["if not setCommandLineOptions(\"--std=3.3\") then exit(1); end if;"],
"optlevel":"-Os -march=native"
},
{
"library":"ModelicaTest",
"libraryVersion":"4.1.0-beta.om",
"referenceFileExtension":"csv",
"referenceFileNameDelimiter":"/",
"referenceFileNameExtraName":"$ClassName",
"referenceFiles":"$MSLREFERENCE/MAP-LIB_ReferenceResults/v4.1.0",
"extraCustomCommands":["if not setCommandLineOptions(\"--std=3.3\") then exit(1); end if;"],
"optlevel":"-Os -march=native"
},
{
"library":"ModelicaTest",
"libraryVersion":"4.0.0",
Expand Down

0 comments on commit b368291

Please sign in to comment.