Skip to content

Commit

Permalink
add ScalableTestSuite to the libs for testing (#11620)
Browse files Browse the repository at this point in the history
  • Loading branch information
adrpo committed Nov 21, 2023
1 parent ab2cac7 commit 24fa978
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 2 deletions.
2 changes: 1 addition & 1 deletion libraries/Makefile.version
@@ -1 +1 @@
STAMP=20221102135323.stamp
STAMP=20231121140110.stamp
14 changes: 14 additions & 0 deletions libraries/index.json
Expand Up @@ -355,6 +355,20 @@
}
}
},
"ScalableTestSuite": {
"versions": {
"2.2.0": {
"path": "ScalableTestSuite",
"sha": "e6dcfb489b7e2d07198d93f00858459aa0611267",
"support": "fullSupport",
"uses": {
"Modelica": "4.0.0"
},
"version": "2.2.0",
"zipfile": "https://github.com/casella/ScalableTestSuite/archive/e6dcfb489b7e2d07198d93f00858459aa0611267.zip"
}
}
},
"SiemensPower": {
"versions": {
"OMCtest": {
Expand Down
9 changes: 8 additions & 1 deletion libraries/index.mos
Expand Up @@ -163,6 +163,13 @@ if not installPackage(Modelica_Synchronous, "0.92.2", exactMatch=true) then
else
print("Installed: Modelica_Synchronous 0.92.2\n");
end if;
if not installPackage(ScalableTestSuite, "2.2.0", exactMatch=true) then
print("ScalableTestSuite 2.2.0 failed.\n");
print(getErrorString());
exit(1);
else
print("Installed: ScalableTestSuite 2.2.0\n");
end if;
if not installPackage(SiemensPower, "2.2.0", exactMatch=true) then
print("SiemensPower 2.2.0 failed.\n");
print(getErrorString());
Expand Down Expand Up @@ -205,4 +212,4 @@ if not installPackage(WasteWater, "2.1.0", exactMatch=true) then
else
print("Installed: WasteWater 2.1.0\n");
end if;
system("touch .openmodelica/20221031131604.stamp")
system("touch .openmodelica/20231121140110.stamp")
3 changes: 3 additions & 0 deletions libraries/update.py
Expand Up @@ -48,6 +48,9 @@
"Modelica_Synchronous": {
"0.92.2"
},
"ScalableTestSuite": {
"2.2.0"
},
"SiemensPower": {
"2.1.0-beta",
"2.2.0",
Expand Down

0 comments on commit 24fa978

Please sign in to comment.