Skip to content

Commit

Permalink
Add double precision tests
Browse files Browse the repository at this point in the history
  • Loading branch information
islas committed Jun 27, 2024
1 parent c4af88c commit 0436e57
Showing 1 changed file with 43 additions and 1 deletion.
44 changes: 43 additions & 1 deletion .ci/mpas_compilation.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@

".*make.*::args_build_core" : [ "-c", "atmosphere" ],
".*debug.*::args_build_debug" : [ "-d" ],
".*make.*::args_build_options" : [ "-b", "-j $NUM_PROCS" ],
".*make.*::args_build_options" : [ "-b", "-j $NUM_PROCS $PRECISION" ],

".*make.*double.*::args_build_precision" : [ "-e", "PRECISION=double" ],

".*make.*gnu.*::args_target" : [ "-t", "gnu" ],
".*make.*intel(?!-llvm).*::args_target" : [ "-t", "ifort" ],
Expand Down Expand Up @@ -49,6 +51,16 @@
{
"command" : ".ci/tests/build.sh",
"dependencies" : { "debug" : "afterany" }
},
"debug-double" :
{
"command" : ".ci/tests/build.sh",
"dependencies" : { "optimized" : "afterany" }
},
"optmized-double" :
{
"command" : ".ci/tests/build.sh",
"dependencies" : { "debug-double" : "afterany" }
}
}
},
Expand All @@ -68,6 +80,16 @@
{
"command" : ".ci/tests/build.sh",
"dependencies" : { "debug" : "afterany" }
},
"debug-double" :
{
"command" : ".ci/tests/build.sh",
"dependencies" : { "optimized" : "afterany" }
},
"optmized-double" :
{
"command" : ".ci/tests/build.sh",
"dependencies" : { "debug-double" : "afterany" }
}
}
},
Expand All @@ -87,6 +109,16 @@
{
"command" : ".ci/tests/build.sh",
"dependencies" : { "debug" : "afterany" }
},
"debug-double" :
{
"command" : ".ci/tests/build.sh",
"dependencies" : { "optimized" : "afterany" }
},
"optmized-double" :
{
"command" : ".ci/tests/build.sh",
"dependencies" : { "debug-double" : "afterany" }
}
}
},
Expand All @@ -102,6 +134,16 @@
{
"command" : ".ci/tests/build.sh",
"dependencies" : { "debug" : "afterany" }
},
"debug-double" :
{
"command" : ".ci/tests/build.sh",
"dependencies" : { "optimized" : "afterany" }
},
"optmized-double" :
{
"command" : ".ci/tests/build.sh",
"dependencies" : { "debug-double" : "afterany" }
}
}
}
Expand Down

0 comments on commit 0436e57

Please sign in to comment.