Skip to content

Commit

Permalink
Merge Pull Request #13157 from sebrowne/Trilinos/verbosity
Browse files Browse the repository at this point in the history
Automatically Merged using Trilinos Pull Request AutoTester
PR Title: b'Framework: Drop verbosity level under Jenkins'
PR Author: sebrowne
  • Loading branch information
trilinos-autotester authored Jun 28, 2024
2 parents 4600dca + f92c402 commit e4a0d17
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,12 @@ def execute_test(self):
gc.write_cmake_fragment()

# Execute the call to ctest.
verbosity_flag = "-VV"
if "BUILD_NUMBER" in os.environ:
print("Running under Jenkins, keeping output less verbose to avoid space issues")
verbosity_flag = "-V"
cmd = ['ctest',
"-VV",
verbosity_flag,
"-S", f"{self.arg_ctest_driver}",
f"-Dsource_dir:PATH={self.arg_source_dir}",
f"-Dbuild_dir:PATH={self.arg_build_dir}",
Expand Down

0 comments on commit e4a0d17

Please sign in to comment.