Skip to content

Commit

Permalink
Merge Pull Request #13533 from sebrowne/Trilinos/fix-kokkos-integrati…
Browse files Browse the repository at this point in the history
…on-cdash-group

Automatically Merged using Trilinos Pull Request AutoTester
PR Title: b'Framework: Fix kokkos integration cdash group'
PR Author: sebrowne
  • Loading branch information
trilinos-autotester authored Oct 16, 2024
2 parents 9f9bd5d + 8a019ae commit 2623cc3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/framework/pr_tools/PullRequestLinuxDriver.sh
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ sig_merge_old=$(get_md5sum ${REPO_ROOT:?}/packages/framework/pr_tools/PullReques
if [[ ${on_kokkos_develop} == "1" ]]; then
message_std "PRDriver> --kokkos-develop is set - setting kokkos and kokkos-kernels packages to current develop and pointing at them"
"${SCRIPTPATH}"/SetKokkosDevelop.sh
extra_configure_args="\"-DKokkos_SOURCE_DIR_OVERRIDE:string=kokkos;-DKokkosKernels_SOURCE_DIR_OVERRIDE:string=kokkos-kernels\"${extra_configure_args:+;${extra_configure_args}}"
extra_configure_args="-DKokkos_SOURCE_DIR_OVERRIDE:string=kokkos;-DKokkosKernels_SOURCE_DIR_OVERRIDE:string=kokkos-kernels${extra_configure_args:+;${extra_configure_args}}"
else
print_banner "Merge Source into Target"
message_std "PRDriver> " "TRILINOS_SOURCE_SHA: ${TRILINOS_SOURCE_SHA:?}"
Expand Down
1 change: 1 addition & 0 deletions packages/framework/pr_tools/PullRequestLinuxDriverTest.py
Original file line number Diff line number Diff line change
Expand Up @@ -292,6 +292,7 @@ def parse_args():
print("| - [O] workspace-dir : {workspace_dir}".format(**vars(arguments)))
print("| - [O] extra_configure_args : {extra_configure_args}".format(**vars(arguments)))
print("| - [O] dashboard_build_name : {dashboard_build_name}".format(**vars(arguments)))
print("| - [O] use_explicit_cachefile : {use_explicit_cachefile}".format(**vars(arguments)))
#print("| - [O] : {}".format(**vars(arguments)))
print("+" + "="*78 + "+")

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ def execute_test(self):
f"-Dpackage_enables:FILEPATH={self.arg_filename_packageenables}",
f"-Dsubprojects_file:FILEPATH={self.arg_filename_subprojects}",
f"-DCTEST_DROP_SITE:STRING={self.arg_ctest_drop_site}",
"-DUSE_EXPLICIT_TRILINOS_CACHEFILE:BOOL=" + "ON" if self.arg_use_explicit_cachefile else "OFF",
"-DUSE_EXPLICIT_TRILINOS_CACHEFILE:BOOL=" + ("ON" if self.arg_use_explicit_cachefile else "OFF"),
]

if self.arg_extra_configure_args:
Expand Down

0 comments on commit 2623cc3

Please sign in to comment.