Skip to content
Draft
Show file tree
Hide file tree
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
4 changes: 4 additions & 0 deletions packages/framework/pr_tools/trilinosprhelpers/TrilinosPRConfigurationStandard.py
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,9 @@ def execute_test(self):
if "BUILD_NUMBER" in os.environ:
print("Running under Jenkins, keeping output less verbose to avoid space issues")
verbosity_flag = "-V"
elif "GITHUB_ACTION" in os.environ:
print("Running as Github Action, keeping output less verbose to avoid making the logs unreadable")
verbosity_flag = "-V"

cmd = ['ctest',
verbosity_flag,
Expand All @@ -88,6 +91,7 @@ def execute_test(self):
f"-DCTEST_DROP_SITE:STRING={self.arg_ctest_drop_site}",
"-DUSE_EXPLICIT_TRILINOS_CACHEFILE:BOOL=" + ("ON" if self.arg_use_explicit_cachefile else "OFF"),
"-DSKIP_RUN_TESTS:BOOL=" + ("ON" if self.arg_skip_run_tests else "OFF"),
"--output-on-failure",
]

if self.arg_extra_configure_args:
Expand Down
2 changes: 1 addition & 1 deletion packages/muelu/test/scaling/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -509,7 +509,7 @@ IF(${PACKAGE_NAME}_HAVE_TPETRA_SOLVER_STACK)
TRIBITS_ADD_TEST(
Driver
NAME "DriverTpetraSingleReduceCG"
ARGS "--linAlgebra=Tpetra --xml=scaling.xml --belosType=\"TPETRA CG SINGLE REDUCE\" --its=14"
ARGS "--linAlgebra=Tpetra --xml=scaling.xml --belosType=\"TPETRA CG SINGLE REDUCE\" --its=2"
NUM_MPI_PROCS 4
COMM mpi # HAVE_MPI required
PASS_REGULAR_EXPRESSION "Belos converged"
Expand Down
2 changes: 2 additions & 0 deletions packages/muelu/test/scaling/Driver.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@
// *****************************************************************************
// @HEADER

YOU SHALL NOT COMPILE!

#include <cstddef>
#include <cstdio>
#include <iomanip>
Expand Down
Loading