Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

TriBITS: Pull in partial refactoring to modern CMake targets (TriBITSPub/TriBITS#299) #9894

Conversation

bartlettroscoe
Copy link
Member

@bartlettroscoe bartlettroscoe commented Nov 2, 2021

Relates to TriBITSPub/TriBITS#299 and TriBITSPub/TriBITS#367.

This PR pulls in a partial refactoring of TriBITS to adopt modern CMake targets. This pulls in the TriBITS PRs (listed most recent to least recent):

As of this PR, TriBITS now creates all of the needed <Package>Config.cmake and <tplName>Config.cmake files in the build and install trees that have all of the needed basic modern CMake targets (TriBITSPub/TriBITS#299).

What is missing is all of the proper target_link_libraries() connections between targets and to refactor the gut of TriBITS to use all of these targets correctly and then strip out all of old complex TriBITS logic that manually deals with libraries and include directories.

NOTE: I had to make one small tweak to a Sacado CMakeLists.txt file in commit b6837af (see commit log for detail). That is non-standard TriBITS code but the fact it was so easy to address gives me hope that this is right path for TriBITS to strip out the usage of variables and allow packages to use modern CMake targets if they like.

One reason for merging this partial refactoring is to see if users or developers run into any problems with the generation of these <tplName>Config.cmake files as early as we can. As long as only full library files and -l<lib> and -L<dir> arguments are used with TPL_<tplName>_LIBRARIES, then there should not be any problem. But any extra special link flags will result in a configure error as described in TriBITSPub/TriBITS#299 (comment).

Another reason is that we will be able to refactor the example simpleBuildAgainstTrilinos to use these modern targets and rip out the usage of include and library variables (which I will do in a follow-on Trilinos PR).

How was this tested?

I tested this with a SEMS and an ATDM Trilinos configuration.

(10/29/2021)

I tested the TriBITS branch '299-modern-cmake-targets-2' against Trilinos 'develop' with the SEMS GCC 7.2.0 env using the files:

load-env.sh

source ~/Trilinos.base/Trilinos/cmake/load_sems_dev_env.sh sems-gcc/7.2.0

do-configure

#!/bin/bash

if [ -e CMakeCache.txt ] ; then
  echo "Removing CMake files" 
  rm -r CMake*
fi

cmake \
-GNinja \
-DTrilinos_TRIBITS_DIR:STRING=TriBITS/tribits \
-DTrilinos_CONFIGURE_OPTIONS_FILE:STRING=cmake/std/sems/SEMSDevEnv.cmake \
-DBUILD_SHARED_LIBS=ON \
-DCMAKE_BUILD_TYPE=RELEASE \
-DTPL_ENABLE_MPI=ON \
-DTPL_ENABLE_Matio=OFF \
-DTPL_ENABLE_X11=OFF \
-DTrilinos_ENABLE_TESTS=ON \
-DTrilinos_ENABLE_BUILD_STATS=ON \
-DCMAKE_INSTALL_PREFIX=${PWD}/install \
"$@" \
~/Trilinos.base/Trilinos

On 'crf450' I ran:

$ cd ~/Trilinos.base/BUILDS/GCC-7.2.0/gnu-shared-opt/

$ . load-env.sh

$ ./do-configure -DTrilinos_ENABLE_ALL_PACKAGES=ON &> configure.out

$ make &> make.out

$ ctest -j16 &> ctest.out

I got some timeouts initially and a failure:

Total Test time (real) = 1052.11 sec

The following tests FAILED:
	1131 - Xpetra_MultiVector_UnitTests_MPI_4 (Failed)
	2006 - Compadre_GMLS_Vector_Dim3_LU_MPI_1 (Timeout)
	2013 - Compadre_GMLS_DivergenceFree_Dim3_P3_QR_MPI_1 (Timeout)

I got a single failing test after rerunning the failed tests:

$ ctest --rerun-failed
Test project /ascldap/users/rabartl/Trilinos.base/BUILDS/GCC-7.2.0/gnu-shared-opt
    Start 1131: Xpetra_MultiVector_UnitTests_MPI_4
1/1 Test #1131: Xpetra_MultiVector_UnitTests_MPI_4 ...***Failed  Required regular expression not found. Regex=[End Result: TEST PASSED
]  0.29 sec

0% tests passed, 1 tests failed out of 1

Subproject Time Summary:
Xpetra    =   1.15 sec*proc (1 test)

Total Test time (real) =   5.64 sec

The following tests FAILED:
        1131 - Xpetra_MultiVector_UnitTests_MPI_4 (Failed)
Errors while running CTest

The failure shows:

...
 [FAILED]  (0.000376 sec) MultiVector_double_int_longlong_Kokkos_Compat_KokkosSerialWrapperNode_BadCombinations_UnitTest
...
The following tests FAILED:
    22. MultiVector_double_int_longlong_Kokkos_Compat_KokkosSerialWrapperNode_BadCombinations_UnitTest ...
...

As shown in this query:

this test is already failing in a bunch of the ATDM Trilinos builds.

I just had to make a single patch to Trilinos with the commit:

commit b6837af19768a7ce1d5641e4d4915413be741b27
Author: Roscoe A. Bartlett <rabartl@sandia.gov>
Date:   Fri Oct 29 16:27:36 2021 -0600

    Sacado: Add TRIBITS_TESTONLY_LIB to non-TriBITS targets (TriBITSPub/TriBITS#299)
    
    The updated version of TriBITS using modern CMake for TriBITSPub/TriBITS#299
    creates a ${PACKAGE_NAME}_all_libs library target (used to create an ALIAS
    ${PACKAGE_NAME}::all_libs library target) from all of the targets under a
    package's base CMakeLists.txt file that don't have the TRIBITS_TESTONLY_LIB
    property set to TRUE.  The tribits_add_library( ... TESTONLY ... ) function
    call automatically sets this property but if a package uses raw CMake to
    create targets (like Sacado is doing here with GoogleTest), then one must set
    the TRIBITS_TESTONLY_LIB property or one must create the
    ${PACKAGE_NAME}_all_libs and ${PACKAGE_NAME}::all_libs targets manually.
    Small price to pay on the path to making TriBITS more flexible and allowing
    raw CMake target formation.

diff --git a/packages/sacado/test/GTestSuite/CMakeLists.txt b/packages/sacado/test/GTestSuite/CMakeLists.txt
index 54ad77f..4ff0be2 100644
--- a/packages/sacado/test/GTestSuite/CMakeLists.txt
+++ b/packages/sacado/test/GTestSuite/CMakeLists.txt
@@ -5,6 +5,8 @@ SET(gtest_disable_pthreads ON CACHE BOOL "Disable uses of pthreads in gtest")
 
 # Configure googletest
 add_subdirectory(googletest)
+set_target_properties(sacado-gtest gtest_main PROPERTIES
+  TRIBITS_TESTONLY_LIB TRUE)
 
 INCLUDE_DIRECTORIES(${PACKAGE_SOURCE_DIR}/Fad)
 INCLUDE_DIRECTORIES(${PACKAGE_SOURCE_DIR}/test/utils)

that I just pushed to my Trilinos branch 'tribits-299-modern-cmake-targets-1'.

(11/1/2021)

Testing with an ATDM Trilinos configuration that has -L<dir> and -l<lib>. Seems that the ATDM Trilinos cee-rhel7 configuration has this with several TPLs like BLAS, LAPACK and Netcdf.

Testing on 'ceerws1113' using the files:

load-env.sh:

source /scratch/rabartl/Trilinos.base/Trilinos/cmake/std/atdm/load-env.sh cee-rhel7-clang-opt

do-configure.base:

cmake \
-GNinja \
-DTrilinos_TRIBITS_DIR:STRING=TriBITS/tribits \
-DTrilinos_ENABLE_TESTS:BOOL=ON \
-DTrilinos_TEST_CATEGORIES:STRING=NIGHTLY \
-DTrilinos_ALLOW_NO_PACKAGES:BOOL=OFF \
-DDART_TESTING_TIMEOUT:STRING=600.0 \
-GNinja \
-DTrilinos_CONFIGURE_OPTIONS_FILE:STRING=cmake/std/atdm/ATDMDevEnv.cmake \
-DTrilinos_TRACE_ADD_TEST=ON \
"$@" \
/scratch/rabartl/Trilinos.base/Trilinos/cmake/std/atdm/../../..

and

do-configure:

./do-configure.base \
-DTrilinos_ENABLE_ALL_PACKAGES:BOOL=ON \
-DTrilinos_ENABLE_ALL_OPTIONAL_PACKAGES:BOOL=ON \
"$@"

Running:

$ cd /scratch/rabartl/Trilinos.base/BUILDS/ATDM/CEE-RHEL7/CHECKIN/cee-rhel7-clang-opt/

$ rm -r CMake*

$ time ./do-configure &> configure.out

real    1m38.630s
user    1m6.217s
sys     0m12.146s

$ time ninja -j16 &> make.out

real    76m34.694s
user    1129m33.717s
sys     36m31.876s

$ time ctest -j16 &> ctest.out

real    13m16.166s
user    57m46.966s
sys     7m33.060s

$ grep -A 100 "failed out of" ctest.out 
99% tests passed, 1 tests failed out of 2428

Subproject Time Summary:
Adelus                     =  10.13 sec*proc (4 tests)
Amesos2                    =  10.41 sec*proc (8 tests)
Belos                      = 275.76 sec*proc (139 tests)
Ifpack2                    =  68.07 sec*proc (53 tests)
Intrepid2                  = 825.68 sec*proc (164 tests)
Kokkos                     = 383.96 sec*proc (32 tests)
KokkosKernels              = 357.94 sec*proc (14 tests)
Krino                      =   3.48 sec*proc (1 test)
MueLu                      = 730.22 sec*proc (101 tests)
NOX                        = 322.54 sec*proc (109 tests)
Panzer                     = 2027.28 sec*proc (195 tests)
Phalanx                    =  30.71 sec*proc (36 tests)
ROL                        = 2459.87 sec*proc (207 tests)
Rythmos                    = 203.90 sec*proc (83 tests)
SEACAS                     = 463.27 sec*proc (64 tests)
Sacado                     =  94.97 sec*proc (299 tests)
ShyLU_Node                 =  13.10 sec*proc (1 test)
Stratimikos                =  88.55 sec*proc (41 tests)
Teko                       = 144.13 sec*proc (18 tests)
Tempus                     = 2753.54 sec*proc (154 tests)
Teuchos                    = 189.26 sec*proc (140 tests)
Thyra                      =  84.12 sec*proc (82 tests)
Tpetra                     = 374.73 sec*proc (266 tests)
TrilinosATDMConfigTests    =  67.19 sec*proc (12 tests)
TrilinosBuildStats         =   0.95 sec*proc (2 tests)
Xpetra                     =  32.65 sec*proc (18 tests)
Zoltan2                    = 327.42 sec*proc (185 tests)

Total Test time (real) = 796.07 sec

The following tests FAILED:
        854 - Xpetra_MultiVector_UnitTests_MPI_4 (Failed)

That is excellent.

We already know about the failing test Xpetra_MultiVector_UnitTests_MPI_4 as per above.

I looked at some of the generated <tplName>Config.cmake files and I am seeing mixes of IMPORTED library types like for HDF5Config.cmake:

# Package config file for external package/TPL 'HDF5'
#
# Generated by CMake, do not edit!

include_guard()

add_library(HDF5::dl IMPORTED INTERFACE GLOBAL)
set_target_properties(HDF5::dl PROPERTIES
  IMPORTED_LIBNAME "dl")

add_library(HDF5::z IMPORTED INTERFACE GLOBAL)
set_target_properties(HDF5::z PROPERTIES
  IMPORTED_LIBNAME "z")
target_link_libraries(HDF5::z
  INTERFACE HDF5::dl)

add_library(HDF5::hdf5 IMPORTED UNKNOWN GLOBAL)
set_target_properties(HDF5::hdf5 PROPERTIES
  IMPORTED_LOCATION "/projects/sparc/tpls/cee-rhel7/hdf5-1.10.5/9640c133cd435d08c08fe8608842e81dccfaed48/cee-cpu_clang-9.0.1_openmpi-4.0.3/lib/libhdf5.a")
target_link_libraries(HDF5::hdf5
  INTERFACE HDF5::z)

add_library(HDF5::hdf5_hl IMPORTED UNKNOWN GLOBAL)
set_target_properties(HDF5::hdf5_hl PROPERTIES
  IMPORTED_LOCATION "/projects/sparc/tpls/cee-rhel7/hdf5-1.10.5/9640c133cd435d08c08fe8608842e81dccfaed48/cee-cpu_clang-9.0.1_openmpi-4.0.3/lib/libhdf5_hl.a")
target_link_libraries(HDF5::hdf5_hl
  INTERFACE HDF5::hdf5)

add_library(HDF5::all_libs INTERFACE IMPORTED GLOBAL)
target_link_libraries(HDF5::all_libs
  INTERFACE HDF5::dl
  INTERFACE HDF5::z
  INTERFACE HDF5::hdf5
  INTERFACE HDF5::hdf5_hl
  )
target_include_directories(HDF5::all_libs SYSTEM
  INTERFACE "/projects/sparc/tpls/cee-rhel7/hdf5-1.10.5/9640c133cd435d08c08fe8608842e81dccfaed48/cee-cpu_clang-9.0.1_openmpi-4.0.3/include"
  )
target_link_options(HDF5::all_libs
  INTERFACE "-L/projects/sparc/tpls/cee-rhel7/hdf5-1.10.5/9640c133cd435d08c08fe8608842e81dccfaed48/cee-cpu_clang-9.0.1_openmpi-4.0.3/lib"
  )

(11/19/2021)

Charon2 inadvertently tested this from the TriBITS 'master' branch and recorded an issued in TriBITSPub/TriBITS#427. That issue was resolved by PR TriBITSPub/TriBITS#428 and TriBITSPub/TriBITS#431 which are part of this updated TriBITS snapshot.

…riBITS#299)

The updated version of TriBITS using modern CMake for TriBITSPub/TriBITS#299
creates a ${PACKAGE_NAME}_all_libs library target (used to create an ALIAS
${PACKAGE_NAME}::all_libs library target) from all of the targets under a
package's base CMakeLists.txt file that don't have the TRIBITS_TESTONLY_LIB
property set to TRUE.  The tribits_add_library( ... TESTONLY ... ) function
call automatically sets this property but if a package uses raw CMake to
create targets (like Sacado is doing here with GoogleTest), then one must set
the TRIBITS_TESTONLY_LIB property or one must create the
${PACKAGE_NAME}_all_libs and ${PACKAGE_NAME}::all_libs targets manually.
Small price to pay on the path to making TriBITS more flexible and allowing
raw CMake target formation.
Origin repo remote tracking branch: 'github/master'
Origin repo remote repo URL: 'github = git@github.com:TriBITSPub/TriBITS.git'

At commit:

commit 99d3869645d0083cb499389659f1394f0b5e6a89
Author:  Roscoe A. Bartlett <rabartl@sandia.gov>
Date:    Mon Nov 1 09:48:44 2021 -0600
Summary: Call generate and include <tplName>Config.cmake files (trilinos#299)
…targets-1

I resolved the confict in:

* cmake/tribits/core/package_arch/TribitsConstants.cmake

by going with what comes from the TriBITS GitHub snapshot (with the lower-case
set()).
@bartlettroscoe bartlettroscoe added type: enhancement Issue is an enhancement, not a bug pkg: Sacado AT: AUTOMERGE Causes the PR autotester to automatically merge the PR branch once approvals are completed TriBITS Issues with the TriBITS framework itself, not usage of the TriBITS framework labels Nov 2, 2021
@bartlettroscoe bartlettroscoe requested review from keitat and a team November 2, 2021 16:43
@bartlettroscoe bartlettroscoe self-assigned this Nov 2, 2021
@trilinos-autotester
Copy link
Contributor

Status Flag 'Pre-Test Inspection' - Auto Inspected - Inspection Is Not Necessary for this Pull Request.

@bartlettroscoe
Copy link
Member Author

Just a few notes for anyone that may want to do a detailed code review of this PR:

Thanks!

@trilinos-autotester
Copy link
Contributor

Status Flag 'Pull Request AutoTester' - Testing Jenkins Projects:

Pull Request Auto Testing STARTING (click to expand)

Build Information

Test Name: Trilinos_pullrequest_gcc_8.3.0

  • Build Num: 5921
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS type: enhancement;pkg: Sacado;AT: AUTOMERGE;TriBITS
PULLREQUESTNUM 9894
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tribits-299-modern-cmake-targets-1
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 822411b
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA b9c308f

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0_serial

  • Build Num: 3466
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS type: enhancement;pkg: Sacado;AT: AUTOMERGE;TriBITS
PULLREQUESTNUM 9894
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tribits-299-modern-cmake-targets-1
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 822411b
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA b9c308f

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0_debug

  • Build Num: 3984
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS type: enhancement;pkg: Sacado;AT: AUTOMERGE;TriBITS
PULLREQUESTNUM 9894
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tribits-299-modern-cmake-targets-1
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 822411b
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA b9c308f

Build Information

Test Name: Trilinos_pullrequest_intel_17.0.1

  • Build Num: 11146
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS type: enhancement;pkg: Sacado;AT: AUTOMERGE;TriBITS
PULLREQUESTNUM 9894
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tribits-299-modern-cmake-targets-1
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 822411b
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA b9c308f

Build Information

Test Name: Trilinos_pullrequest_cuda_10.1.105

  • Build Num: 2628
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS type: enhancement;pkg: Sacado;AT: AUTOMERGE;TriBITS
PULLREQUESTNUM 9894
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tribits-299-modern-cmake-targets-1
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 822411b
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA b9c308f

Build Information

Test Name: Trilinos_pullrequest_cuda_10.1.105_uvm_off

  • Build Num: 1619
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS type: enhancement;pkg: Sacado;AT: AUTOMERGE;TriBITS
PULLREQUESTNUM 9894
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tribits-299-modern-cmake-targets-1
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 822411b
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA b9c308f

Build Information

Test Name: Trilinos_pullrequest_clang_10.0.0

  • Build Num: 3944
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS type: enhancement;pkg: Sacado;AT: AUTOMERGE;TriBITS
PULLREQUESTNUM 9894
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tribits-299-modern-cmake-targets-1
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 822411b
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA b9c308f

Build Information

Test Name: python-3

  • Build Num: 580
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS type: enhancement;pkg: Sacado;AT: AUTOMERGE;TriBITS
PULLREQUESTNUM 9894
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tribits-299-modern-cmake-targets-1
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 822411b
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA b9c308f

Using Repos:

Repo: TRILINOS (bartlettroscoe/Trilinos)
  • Branch: tribits-299-modern-cmake-targets-1
  • SHA: 822411b
  • Mode: TEST_REPO

Pull Request Author: bartlettroscoe

@trilinos-autotester
Copy link
Contributor

Status Flag 'Pull Request AutoTester' - Jenkins Testing: all Jobs PASSED

Pull Request Auto Testing has PASSED (click to expand)

Build Information

Test Name: Trilinos_pullrequest_gcc_8.3.0

  • Build Num: 5921
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PR_LABELS type: enhancement;pkg: Sacado;AT: AUTOMERGE;TriBITS
PULLREQUESTNUM 9894
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tribits-299-modern-cmake-targets-1
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 822411b
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA b9c308f

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0_serial

  • Build Num: 3466
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PR_LABELS type: enhancement;pkg: Sacado;AT: AUTOMERGE;TriBITS
PULLREQUESTNUM 9894
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tribits-299-modern-cmake-targets-1
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 822411b
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA b9c308f

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0_debug

  • Build Num: 3984
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PR_LABELS type: enhancement;pkg: Sacado;AT: AUTOMERGE;TriBITS
PULLREQUESTNUM 9894
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tribits-299-modern-cmake-targets-1
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 822411b
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA b9c308f

Build Information

Test Name: Trilinos_pullrequest_intel_17.0.1

  • Build Num: 11146
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PR_LABELS type: enhancement;pkg: Sacado;AT: AUTOMERGE;TriBITS
PULLREQUESTNUM 9894
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tribits-299-modern-cmake-targets-1
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 822411b
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA b9c308f

Build Information

Test Name: Trilinos_pullrequest_cuda_10.1.105

  • Build Num: 2628
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PR_LABELS type: enhancement;pkg: Sacado;AT: AUTOMERGE;TriBITS
PULLREQUESTNUM 9894
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tribits-299-modern-cmake-targets-1
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 822411b
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA b9c308f

Build Information

Test Name: Trilinos_pullrequest_cuda_10.1.105_uvm_off

  • Build Num: 1619
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PR_LABELS type: enhancement;pkg: Sacado;AT: AUTOMERGE;TriBITS
PULLREQUESTNUM 9894
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tribits-299-modern-cmake-targets-1
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 822411b
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA b9c308f

Build Information

Test Name: Trilinos_pullrequest_clang_10.0.0

  • Build Num: 3944
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PR_LABELS type: enhancement;pkg: Sacado;AT: AUTOMERGE;TriBITS
PULLREQUESTNUM 9894
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tribits-299-modern-cmake-targets-1
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 822411b
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA b9c308f

Build Information

Test Name: python-3

  • Build Num: 580
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PR_LABELS type: enhancement;pkg: Sacado;AT: AUTOMERGE;TriBITS
PULLREQUESTNUM 9894
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tribits-299-modern-cmake-targets-1
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 822411b
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA b9c308f


CDash Test Results for PR# 9894.

@trilinos-autotester
Copy link
Contributor

Status Flag 'Pre-Merge Inspection' - - This Pull Request Requires Inspection... The code must be inspected by a member of the Team before Testing/Merging
NO REVIEWS HAVE BEEN PERFORMED ON THIS PULL REQUEST!

@trilinos-autotester
Copy link
Contributor

All Jobs Finished; status = PASSED, However Inspection must be performed before merge can occur...

@bartlettroscoe bartlettroscoe marked this pull request as draft November 3, 2021 13:59
@bartlettroscoe bartlettroscoe added AT: WIP Causes the PR autotester to not test the PR. (Remove to allow testing to occur.) and removed AT: AUTOMERGE Causes the PR autotester to automatically merge the PR branch once approvals are completed labels Nov 3, 2021
Origin repo remote tracking branch: 'github/master'
Origin repo remote repo URL: 'github = git@github.com:TriBITSPub/TriBITS.git'

At commit:

commit f8f2df0b5d884c9c2a1644ebf40cff25e515ff76
Author:  Roscoe A. Bartlett <rabartl@sandia.gov>
Date:    Wed Nov 3 09:51:04 2021 -0600
Summary: Create tribits_external_package_process_libraries_list_library_entry(), elim dup (trilinos#299)
…targets-1

This should resolve the issue with duplicate libs reported in
TriBITSPub/TriBITS#427 addressed in PR TriBITSPub/TriBITS#428.
@bartlettroscoe bartlettroscoe marked this pull request as ready for review November 3, 2021 16:20
@bartlettroscoe
Copy link
Member Author

FYI: Looks like there is an issue with duplicate entries in TPL_<tplName>_LIBRARIES that I had not anticipated reported in TriBITSPub/TriBITS#427. But I believe that I was able to resolve this in PR TriBITSPub/TriBITS#428 which I updated the TriBITS snapshot in this Trilinos PR with commits 157f480 and 625f3ae.

This is ready to review and merge again.

@bartlettroscoe bartlettroscoe added AT: AUTOMERGE Causes the PR autotester to automatically merge the PR branch once approvals are completed and removed AT: WIP Causes the PR autotester to not test the PR. (Remove to allow testing to occur.) labels Nov 3, 2021
@trilinos-autotester
Copy link
Contributor

Status Flag 'Pre-Test Inspection' - Auto Inspected - Inspection Is Not Necessary for this Pull Request.

@trilinos-autotester
Copy link
Contributor

Status Flag 'Pull Request AutoTester' - Testing Jenkins Projects:

Pull Request Auto Testing STARTING (click to expand)

Build Information

Test Name: Trilinos_pullrequest_gcc_8.3.0

  • Build Num: 5927
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS type: enhancement;pkg: Sacado;AT: AUTOMERGE;TriBITS
PULLREQUESTNUM 9894
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tribits-299-modern-cmake-targets-1
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 625f3ae
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA b9c308f

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0_serial

  • Build Num: 3472
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS type: enhancement;pkg: Sacado;AT: AUTOMERGE;TriBITS
PULLREQUESTNUM 9894
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tribits-299-modern-cmake-targets-1
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 625f3ae
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA b9c308f

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0_debug

  • Build Num: 3990
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS type: enhancement;pkg: Sacado;AT: AUTOMERGE;TriBITS
PULLREQUESTNUM 9894
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tribits-299-modern-cmake-targets-1
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 625f3ae
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA b9c308f

Build Information

Test Name: Trilinos_pullrequest_intel_17.0.1

  • Build Num: 11151
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS type: enhancement;pkg: Sacado;AT: AUTOMERGE;TriBITS
PULLREQUESTNUM 9894
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tribits-299-modern-cmake-targets-1
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 625f3ae
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA b9c308f

Build Information

Test Name: Trilinos_pullrequest_cuda_10.1.105

  • Build Num: 2636
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS type: enhancement;pkg: Sacado;AT: AUTOMERGE;TriBITS
PULLREQUESTNUM 9894
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tribits-299-modern-cmake-targets-1
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 625f3ae
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA b9c308f

Build Information

Test Name: Trilinos_pullrequest_cuda_10.1.105_uvm_off

  • Build Num: 1627
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS type: enhancement;pkg: Sacado;AT: AUTOMERGE;TriBITS
PULLREQUESTNUM 9894
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tribits-299-modern-cmake-targets-1
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 625f3ae
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA b9c308f

Build Information

Test Name: Trilinos_pullrequest_clang_10.0.0

  • Build Num: 3949
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS type: enhancement;pkg: Sacado;AT: AUTOMERGE;TriBITS
PULLREQUESTNUM 9894
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tribits-299-modern-cmake-targets-1
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 625f3ae
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA b9c308f

Build Information

Test Name: python-3

  • Build Num: 585
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS type: enhancement;pkg: Sacado;AT: AUTOMERGE;TriBITS
PULLREQUESTNUM 9894
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tribits-299-modern-cmake-targets-1
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 625f3ae
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA b9c308f

Using Repos:

Repo: TRILINOS (bartlettroscoe/Trilinos)
  • Branch: tribits-299-modern-cmake-targets-1
  • SHA: 625f3ae
  • Mode: TEST_REPO

Pull Request Author: bartlettroscoe

e10harvey
e10harvey previously approved these changes Nov 3, 2021
Copy link
Contributor

@e10harvey e10harvey left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks, @bartlettroscoe !

the build directory tree have been moved from
`<buildDir>/packages/<packageDir>/` to
`<buildDir>/cmake_packages/<PackageName>/`. This makes it easy for
`find_package(<PackageName>)` to fine these files by simply adding the
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
`find_package(<PackageName>)` to fine these files by simply adding the
`find_package(<PackageName>)` to find these files by simply adding the

has been removed along with the cache variable
<Project>_ENABLE_EXPORT_MAKEFILES. This is to allow the refactoring of
TriBITS to use modern CMake targets that propagate all information and
removing complex dependency tracking inforamtion from TriBITS (see
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
removing complex dependency tracking inforamtion from TriBITS (see
removing complex dependency tracking information from TriBITS (see

cmake/tribits/TriBITS.cmake Show resolved Hide resolved

if (NOT TARGET ${PACKAGE_NAME}::all_libs)
# Create ALIAS ${PACKAGE_NAME}::all_libs target
add_library(${PACKAGE_NAME}::all_libs ALIAS ${PACKAGE_NAME}_all_libs)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What is the role of this macro if ${PACKAGE_NAME}::all_libs is already a TARGET?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Don't understand the question.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What is the role of this macro if NOT TARGET ${PACKAGE_NAME}::all_libs evaluates to false?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The idea is that a package may choose to define its own <Package>::all_libs target. An example of a streamlined project where packages define all of their own targets with raw CMake commands will be coming up. Also, this logic might be needed for the installation testing use case where the tests and examples are configured that pull in pre-installed libraries and header files through installed <Package>Config.cmake files that already have this target defined. (Not sure about that last part.)

cmake/tribits/core/utils/TribitsGatherBuildTargets.cmake Outdated Show resolved Hide resolved
cmake/tribits/examples/TribitsExampleApp/README.md Outdated Show resolved Hide resolved
@trilinos-autotester
Copy link
Contributor

Status Flag 'Pull Request AutoTester' - Jenkins Testing: 1 or more Jobs FAILED

Note: Testing will normally be attempted again in approx. 2 Hrs 30 Mins. If a change to the PR source branch occurs, the testing will be attempted again on next available autotester run.

Pull Request Auto Testing has FAILED (click to expand)

Build Information

Test Name: Trilinos_pullrequest_gcc_8.3.0

  • Build Num: 5927
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PR_LABELS type: enhancement;pkg: Sacado;AT: AUTOMERGE;TriBITS
PULLREQUESTNUM 9894
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tribits-299-modern-cmake-targets-1
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 625f3ae
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA b9c308f

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0_serial

  • Build Num: 3472
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PR_LABELS type: enhancement;pkg: Sacado;AT: AUTOMERGE;TriBITS
PULLREQUESTNUM 9894
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tribits-299-modern-cmake-targets-1
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 625f3ae
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA b9c308f

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0_debug

  • Build Num: 3990
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PR_LABELS type: enhancement;pkg: Sacado;AT: AUTOMERGE;TriBITS
PULLREQUESTNUM 9894
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tribits-299-modern-cmake-targets-1
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 625f3ae
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA b9c308f

Build Information

Test Name: Trilinos_pullrequest_intel_17.0.1

  • Build Num: 11151
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
PR_LABELS type: enhancement;pkg: Sacado;AT: AUTOMERGE;TriBITS
PULLREQUESTNUM 9894
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tribits-299-modern-cmake-targets-1
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 625f3ae
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA b9c308f

Build Information

Test Name: Trilinos_pullrequest_cuda_10.1.105

  • Build Num: 2636
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PR_LABELS type: enhancement;pkg: Sacado;AT: AUTOMERGE;TriBITS
PULLREQUESTNUM 9894
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tribits-299-modern-cmake-targets-1
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 625f3ae
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA b9c308f

Build Information

Test Name: Trilinos_pullrequest_cuda_10.1.105_uvm_off

  • Build Num: 1627
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PR_LABELS type: enhancement;pkg: Sacado;AT: AUTOMERGE;TriBITS
PULLREQUESTNUM 9894
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tribits-299-modern-cmake-targets-1
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 625f3ae
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA b9c308f

Build Information

Test Name: Trilinos_pullrequest_clang_10.0.0

  • Build Num: 3949
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PR_LABELS type: enhancement;pkg: Sacado;AT: AUTOMERGE;TriBITS
PULLREQUESTNUM 9894
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tribits-299-modern-cmake-targets-1
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 625f3ae
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA b9c308f

Build Information

Test Name: python-3

  • Build Num: 585
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PR_LABELS type: enhancement;pkg: Sacado;AT: AUTOMERGE;TriBITS
PULLREQUESTNUM 9894
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tribits-299-modern-cmake-targets-1
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 625f3ae
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA b9c308f
Console Output (last 100 lines) : Trilinos_pullrequest_gcc_8.3.0 # 5927 (click to expand)

    ..................................................  Size: 149K
    ..................................................  Size: 199K
    ..................................................  Size: 249K
    ..................................................  Size: 299K
    ..................................................  Size: 349K
    ..................................................  Size: 399K
    ..................................................  Size: 449K
    ..................................................  Size: 499K
    ..................................................  Size: 549K
    ..................................................  Size: 599K
    ..................................................  Size: 649K
    ..................................................  Size: 699K
    ..................................................  Size: 749K
    ..................................................  Size: 799K
    ..................................................  Size: 849K
    ..................................................  Size: 899K
    ..................................................  Size: 949K
    ..................................................  Size: 999K
    ..................................................  Size: 1049K
    ..................................................  Size: 1099K
    ..................................................  Size: 1150K
    ..................................................  Size: 1199K
    ..................................................  Size: 1249K
    ..................................................  Size: 1299K
    ..................................................  Size: 1350K
    ..................................................  Size: 1399K
    ..................................................  Size: 1449K
    ..................................................  Size: 1499K
    ..................................................  Size: 1549K
    ..................................................  Size: 1599K
    ..................................................  Size: 1649K
    ..................................................  Size: 1699K
    ..................................................  Size: 1749K
    ..................................................  Size: 1799K
    ..................................................  Size: 1849K
    ..................................................  Size: 1899K
    ..................................................  Size: 1949K
    ..................................................  Size: 1999K
    ..................................................  Size: 2049K
    ..................................................  Size: 2099K
    ..................................................  Size: 2149K
    ..................................................  Size: 2199K
    ..................................................  Size: 2249K
    ..................................................  Size: 2299K
    ..................................................  Size: 2349K
    ..................................................  Size: 2399K
    ..................................................  Size: 2449K
    ..................................................  Size: 2499K
    ..................................................  Size: 2549K
    ..................................................  Size: 2599K
    ..................................................  Size: 2649K
    ..................................................  Size: 2699K
    ..................................................  Size: 2749K
    ..................................................  Size: 2799K
    ..................................................  Size: 2849K
    ..................................................  Size: 2899K
    ........................................ Size of output: 2940K
Build succeeded.
build submit error = 0
Starting testing step.
Tests succeeded.
test submit error = 0
File upload submit error = 0

Enabled Packages:
-- Setting Trilinos_ENABLE_ALL_PACKAGES = ON
-- Setting Trilinos_ENABLE_Sacado = ON

+--------------------------------------------------------------------+
| G e n e r a t e packageEnables.cmake C O M P L E T E D
+--------------------------------------------------------------------+

+==============================================================================+
| E X E C U T E S T A N D A R D P U L L R E Q E S T T E S T
+==============================================================================+

--- Change directory to /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0@2/TFW_testing_single_configure_prototype
--- OK

--- ctest command:
--- cmd = ctest
-S
simple_testing.cmake
-Dbuild_name=PR-9894-test-Trilinos_pullrequest_gcc_8.3.0-5927
-Dskip_by_parts_submit=OFF
-Dskip_update_step=ON
-Ddashboard_model=Experimental
-Ddashboard_track=Pull Request
-DPARALLEL_LEVEL=20
-DTEST_PARALLEL_LEVEL=4
-Dbuild_dir=/scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0@2/pull_request_test
-Dconfigure_script=/scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0@2/Trilinos/cmake/std/PullRequestLinuxGCC8.3.0TestingSettings.cmake
-Dpackage_enables=../packageEnables.cmake
-Dsubprojects_file=../package_subproject_list.cmake

Done.
Archiving artifacts
[Checks API] No suitable checks publisher found.
Finished: SUCCESS

Console Output (last 100 lines) : Trilinos_pullrequest_gcc_7.2.0_serial # 3472 (click to expand)

   Each . represents 1024 bytes of output
    ..................................................  Size: 50K
    ..................................................  Size: 100K
    ..................................................  Size: 150K
    ..................................................  Size: 200K
    ..................................................  Size: 250K
    ..................................................  Size: 300K
    ..................................................  Size: 350K
    .............................................. Size of output: 395K
configure submit error = 0
Configure suceeded.
Starting build step.
   Each symbol represents 1024 bytes of output.
    ..................................................  Size: 49K
    ..................................................  Size: 99K
    ..................................................  Size: 149K
    ..................................................  Size: 199K
    ..................................................  Size: 249K
    ..................................................  Size: 299K
    ..................................................  Size: 349K
    ..................................................  Size: 399K
    ..................................................  Size: 449K
    ..................................................  Size: 499K
    ..................................................  Size: 549K
    ..................................................  Size: 599K
    ..................................................  Size: 649K
    ..................................................  Size: 699K
    ..................................................  Size: 749K
    ..................................................  Size: 799K
    ..................................................  Size: 849K
    ..................................................  Size: 899K
    ..................................................  Size: 949K
    ..................................................  Size: 999K
    ..................................................  Size: 1049K
    ..................................................  Size: 1099K
    ..................................................  Size: 1149K
    ..................................................  Size: 1199K
    ..................................................  Size: 1250K
    ..................................................  Size: 1299K
    ..................................................  Size: 1349K
    ..................................................  Size: 1399K
    ..................................................  Size: 1449K
    ..................................................  Size: 1499K
    ..................................................  Size: 1549K
    ..................................................  Size: 1599K
    ..................................................  Size: 1649K
    ..................................................  Size: 1699K
    ..................................................  Size: 1749K
    ..................................................  Size: 1799K
    ..................................................  Size: 1849K
    ..................................................  Size: 1899K
    ..................................................  Size: 1949K
    ..................................................  Size: 1999K
    ..................................................  Size: 2049K
    ..................................................  Size: 2099K
    ..................................................  Size: 2149K
    ......................................... Size of output: 2190K
Build succeeded.
build submit error = 0
Starting testing step.
Tests succeeded.
test submit error = 0
File upload submit error = 0

Enabled Packages:
-- Setting Trilinos_ENABLE_ALL_PACKAGES = ON
-- Setting Trilinos_ENABLE_Sacado = ON

+--------------------------------------------------------------------+
| G e n e r a t e packageEnables.cmake C O M P L E T E D
+--------------------------------------------------------------------+

+==============================================================================+
| E X E C U T E S T A N D A R D P U L L R E Q E S T T E S T
+==============================================================================+

--- Change directory to /scratch/trilinos/jenkins/ascic143/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_serial@2/TFW_testing_single_configure_prototype
--- OK

--- ctest command:
--- cmd = ctest
-S
simple_testing.cmake
-Dbuild_name=PR-9894-test-Trilinos_pullrequest_gcc_7.2.0_serial-3472
-Dskip_by_parts_submit=OFF
-Dskip_update_step=ON
-Ddashboard_model=Experimental
-Ddashboard_track=Pull Request
-DPARALLEL_LEVEL=20
-DTEST_PARALLEL_LEVEL=4
-Dbuild_dir=/scratch/trilinos/jenkins/ascic143/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_serial@2/pull_request_test
-Dconfigure_script=/scratch/trilinos/jenkins/ascic143/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_serial@2/Trilinos/cmake/std/PullRequestLinuxGCC7.2.0SerialTestingSettings.cmake
-Dpackage_enables=../packageEnables.cmake
-Dsubprojects_file=../package_subproject_list.cmake

Done.
Archiving artifacts
[Checks API] No suitable checks publisher found.
Finished: SUCCESS

Console Output (last 100 lines) : Trilinos_pullrequest_gcc_7.2.0_debug # 3990 (click to expand)

CDash URL2 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&display=project&filtercount=2&showfilters=0&filtercombine=and&field1=buildname&compare1=61&value1=PR-9894-test-Trilinos_pullrequest_gcc_7.2.0_debug-3990&field2=buildstamp&compare2=61&value2=20211103-1637-Pull Request-Experimental
CDash URL3 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&filtercount=2&showfilters=0&filtercombine=and&field1=buildname&compare1=61&value1=PR-9894-test-Trilinos_pullrequest_gcc_7.2.0_debug-3990&field2=buildstamp&compare2=61&value2=20211103-1637-Pull Request-Experimental
Starting configure step.
   Each . represents 1024 bytes of output
    ..................................................  Size: 50K
    ..................................................  Size: 100K
    ..................................................  Size: 150K
    ..................................................  Size: 200K
    ..................................................  Size: 250K
    ..................................................  Size: 300K
    ..................................................  Size: 350K
    ..................................................  Size: 400K
    ..................................................  Size: 450K
    ............................... Size of output: 480K
configure submit error = 0
Configure suceeded.
Starting build step.
   Each symbol represents 1024 bytes of output.
    ..................................................  Size: 49K
    ..................................................  Size: 99K
    ..................................................  Size: 149K
    ..................................................  Size: 199K
    ..................................................  Size: 249K
    ..................................................  Size: 299K
    ..................................................  Size: 349K
    ..................................................  Size: 399K
    ..................................................  Size: 449K
    ..................................................  Size: 499K
    ..................................................  Size: 549K
    ..................................................  Size: 599K
    ..................................................  Size: 649K
    ..................................................  Size: 699K
    ..................................................  Size: 749K
    ..................................................  Size: 799K
    ..................................................  Size: 849K
    ..................................................  Size: 899K
    ..................................................  Size: 949K
    ..................................................  Size: 999K
    ..................................................  Size: 1049K
    ..................................................  Size: 1099K
    ..................................................  Size: 1149K
    ..................................................  Size: 1199K
    ..................................................  Size: 1249K
    ..................................................  Size: 1299K
    ..................................................  Size: 1349K
    ..................................................  Size: 1399K
    ..................................................  Size: 1449K
    ..................................................  Size: 1499K
    ..................................................  Size: 1549K
    ..................................................  Size: 1599K
    ..................................................  Size: 1649K
    ..................................................  Size: 1699K
    ..................................................  Size: 1749K
    ..................................................  Size: 1799K
    ..................................................  Size: 1849K
    ..................................................  Size: 1899K
    ....................... Size of output: 1922K
Build succeeded.
build submit error = 0
Starting testing step.
Tests succeeded.
test submit error = 0
File upload submit error = 0

Enabled Packages:
-- Setting Trilinos_ENABLE_ALL_PACKAGES = ON
-- Setting Trilinos_ENABLE_Sacado = ON

+--------------------------------------------------------------------+
| G e n e r a t e packageEnables.cmake C O M P L E T E D
+--------------------------------------------------------------------+

+==============================================================================+
| E X E C U T E S T A N D A R D P U L L R E Q E S T T E S T
+==============================================================================+

--- Change directory to /scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_debug/TFW_testing_single_configure_prototype
--- OK

--- ctest command:
--- cmd = ctest
-S
simple_testing.cmake
-Dbuild_name=PR-9894-test-Trilinos_pullrequest_gcc_7.2.0_debug-3990
-Dskip_by_parts_submit=OFF
-Dskip_update_step=ON
-Ddashboard_model=Experimental
-Ddashboard_track=Pull Request
-DPARALLEL_LEVEL=20
-DTEST_PARALLEL_LEVEL=4
-Dbuild_dir=/scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_debug/pull_request_test
-Dconfigure_script=/scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_debug/Trilinos/cmake/std/PullRequestLinuxGCC7.2.0DebugTestingSettings.cmake
-Dpackage_enables=../packageEnables.cmake
-Dsubprojects_file=../package_subproject_list.cmake

Done.
Archiving artifacts
[Checks API] No suitable checks publisher found.
Finished: SUCCESS

Console Output (last 100 lines) : Trilinos_pullrequest_intel_17.0.1 # 11151 (click to expand)

    ..................................................  Size: 17999K
    ..................................................  Size: 18049K
    ..................................................  Size: 18099K
    ..................................................  Size: 18149K
    ..................................................  Size: 18199K
    ..................................................  Size: 18249K
    ..................................................  Size: 18299K
    ..................................................  Size: 18350K
    ..................................................  Size: 18399K
    ..................................................  Size: 18449K
    ..................................................  Size: 18500K
    ..................................................  Size: 18550K
    ..................................................  Size: 18600K
    ..................................................  Size: 18650K
    ..................................................  Size: 18700K
    ..................................................  Size: 18750K
    ..................................................  Size: 18799K
    ..................................................  Size: 18849K
    ..................................................  Size: 18899K
    ..................................................  Size: 18949K
    ..................................................  Size: 18999K
    ..................................................  Size: 19049K
    ..................................................  Size: 19099K
    ..................................................  Size: 19149K
    ..................................................  Size: 19199K
    ..................................................  Size: 19249K
    ..................................................  Size: 19299K
    ..................................................  Size: 19349K
    ..................................................  Size: 19400K
    ..................................................  Size: 19450K
    ..................................................  Size: 19499K
    ..................................................  Size: 19549K
    ..................................................  Size: 19599K
    ..................................................  Size: 19650K
    ..................................................  Size: 19700K
    ..................................................  Size: 19750K
    ..................................................  Size: 19800K
    ..................................................  Size: 19850K
    ..................................................  Size: 19899K
    ..................................................  Size: 19950K
    ..................................................  Size: 20000K
    ..................................................  Size: 20050K
    ..................................................  Size: 20099K
    ..................................................  Size: 20150K
    ..................................................  Size: 20199K
    ..................................................  Size: 20249K
    ..................................................  Size: 20299K
    ..................................................  Size: 20349K
    ..................................................  Size: 20399K
    ..................................................  Size: 20449K
    ..................................................  Size: 20499K
    ........ Size of output: 20508K
Error(s) when building project
CMake Warning at /scratch/trilinos/jenkins/ascic142/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/TFW_testing_single_configure_prototype/simple_testing.cmake:202 (message):
  Build failed with error 1

build submit error = 0
Starting testing step.
Tests succeeded.
test submit error = 0
File upload submit error = 0

Enabled Packages:
-- Setting Trilinos_ENABLE_ALL_PACKAGES = ON
-- Setting Trilinos_ENABLE_Sacado = ON

+--------------------------------------------------------------------+
| G e n e r a t e packageEnables.cmake C O M P L E T E D
+--------------------------------------------------------------------+

+==============================================================================+
| E X E C U T E S T A N D A R D P U L L R E Q E S T T E S T
+==============================================================================+

--- Change directory to /scratch/trilinos/jenkins/ascic142/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/TFW_testing_single_configure_prototype
--- OK

--- ctest command:
--- cmd = ctest
-S
simple_testing.cmake
-Dbuild_name=PR-9894-test-Trilinos_pullrequest_intel_17.0.1-11151
-Dskip_by_parts_submit=OFF
-Dskip_update_step=ON
-Ddashboard_model=Experimental
-Ddashboard_track=Pull Request
-DPARALLEL_LEVEL=20
-DTEST_PARALLEL_LEVEL=4
-Dbuild_dir=/scratch/trilinos/jenkins/ascic142/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/pull_request_test
-Dconfigure_script=/scratch/trilinos/jenkins/ascic142/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/Trilinos/cmake/std/PullRequestLinuxIntel17.0.1TestingSettings.cmake
-Dpackage_enables=../packageEnables.cmake
-Dsubprojects_file=../package_subproject_list.cmake

--- ctest command failed!
Done.
Build step 'Execute shell' marked build as failure
Archiving artifacts
[Checks API] No suitable checks publisher found.
Finished: FAILURE

Console Output (last 100 lines) : Trilinos_pullrequest_cuda_10.1.105 # 2636 (click to expand)

    ..................................................  Size: 37599K
    ..................................................  Size: 37649K
    ..................................................  Size: 37700K
    ..................................................  Size: 37750K
    ..................................................  Size: 37800K
    ..................................................  Size: 37850K
    ..................................................  Size: 37900K
    ..................................................  Size: 37949K
    ..................................................  Size: 37999K
    ..................................................  Size: 38049K
    ..................................................  Size: 38099K
    ..................................................  Size: 38149K
    ..................................................  Size: 38200K
    ..................................................  Size: 38250K
    ..................................................  Size: 38300K
    ..................................................  Size: 38350K
    ..................................................  Size: 38400K
    ..................................................  Size: 38450K
    ..................................................  Size: 38500K
    ..................................................  Size: 38550K
    ..................................................  Size: 38599K
    ..................................................  Size: 38649K
    ..................................................  Size: 38699K
    ..................................................  Size: 38749K
    ..................................................  Size: 38799K
    ..................................................  Size: 38849K
    ..................................................  Size: 38899K
    ..................................................  Size: 38949K
    ..................................................  Size: 38999K
    ..................................................  Size: 39049K
    ..................................................  Size: 39099K
    ..................................................  Size: 39149K
    ..................................................  Size: 39200K
    ..................................................  Size: 39249K
    ..................................................  Size: 39299K
    ..................................................  Size: 39349K
    ..................................................  Size: 39399K
    ..................................................  Size: 39449K
    ..................................................  Size: 39499K
    ..................................................  Size: 39550K
    ..................................................  Size: 39599K
    ..................................................  Size: 39649K
    ..................................................  Size: 39699K
    ..................................................  Size: 39750K
    ..................................................  Size: 39799K
    ..................................................  Size: 39849K
    ..................................................  Size: 39899K
    ..................................................  Size: 39950K
    ..................................................  Size: 40000K
    ..................................................  Size: 40049K
    ..................................................  Size: 40100K
    ..................................................  Size: 40150K
    ..................................................  Size: 40199K
    ..................................................  Size: 40249K
    ..................................................  Size: 40299K
    ..................................................  Size: 40349K
    ... Size of output: 40353K
Build succeeded.
build submit error = 0
Starting testing step.
Tests succeeded.
test submit error = 0
File upload submit error = 0

Enabled Packages:
-- Setting Trilinos_ENABLE_ALL_PACKAGES = ON
-- Setting Trilinos_ENABLE_Sacado = ON

+--------------------------------------------------------------------+
| G e n e r a t e packageEnables.cmake C O M P L E T E D
+--------------------------------------------------------------------+

+==============================================================================+
| E X E C U T E S T A N D A R D P U L L R E Q E S T T E S T
+==============================================================================+

--- Change directory to /home/trilinos/jenkins/ride/workspace/trilinos-folder/Trilinos_pullrequest_cuda_10.1.105@2/TFW_testing_single_configure_prototype
--- OK

--- ctest command:
--- cmd = ctest
-S
simple_testing.cmake
-Dbuild_name=PR-9894-test-Trilinos_pullrequest_cuda_10.1.105-2636
-Dskip_by_parts_submit=OFF
-Dskip_update_step=ON
-Ddashboard_model=Experimental
-Ddashboard_track=Pull Request
-DPARALLEL_LEVEL=29
-DTEST_PARALLEL_LEVEL=4
-Dbuild_dir=/home/trilinos/jenkins/ride/workspace/trilinos-folder/Trilinos_pullrequest_cuda_10.1.105@2/pull_request_test
-Dconfigure_script=/home/trilinos/jenkins/ride/workspace/trilinos-folder/Trilinos_pullrequest_cuda_10.1.105@2/Trilinos/cmake/std/PullRequestLinuxCuda10.1.105TestingSettings.cmake
-Dpackage_enables=../packageEnables.cmake
-Dsubprojects_file=../package_subproject_list.cmake

Done.
Archiving artifacts
[Checks API] No suitable checks publisher found.
Finished: SUCCESS

Console Output (last 100 lines) : Trilinos_pullrequest_cuda_10.1.105_uvm_off # 1627 (click to expand)

    ..................................................  Size: 18100K
    ..................................................  Size: 18150K
    ..................................................  Size: 18200K
    ..................................................  Size: 18250K
    ..................................................  Size: 18300K
    ..................................................  Size: 18350K
    ..................................................  Size: 18399K
    ..................................................  Size: 18449K
    ..................................................  Size: 18499K
    ..................................................  Size: 18549K
    ..................................................  Size: 18599K
    ..................................................  Size: 18649K
    ..................................................  Size: 18699K
    ..................................................  Size: 18749K
    ..................................................  Size: 18799K
    ..................................................  Size: 18849K
    ..................................................  Size: 18899K
    ..................................................  Size: 18950K
    ..................................................  Size: 19000K
    ..................................................  Size: 19050K
    ..................................................  Size: 19100K
    ..................................................  Size: 19149K
    ..................................................  Size: 19200K
    ..................................................  Size: 19250K
    ..................................................  Size: 19300K
    ..................................................  Size: 19350K
    ..................................................  Size: 19400K
    ..................................................  Size: 19449K
    ..................................................  Size: 19499K
    ..................................................  Size: 19549K
    ..................................................  Size: 19599K
    ..................................................  Size: 19649K
    ..................................................  Size: 19699K
    ..................................................  Size: 19749K
    ..................................................  Size: 19800K
    ..................................................  Size: 19849K
    ..................................................  Size: 19900K
    ..................................................  Size: 19950K
    ..................................................  Size: 19999K
    ..................................................  Size: 20049K
    ..................................................  Size: 20099K
    ..................................................  Size: 20149K
    ..................................................  Size: 20199K
    ..................................................  Size: 20249K
    ..................................................  Size: 20300K
    ..................................................  Size: 20349K
    ..................................................  Size: 20399K
    ..................................................  Size: 20449K
    ..................................................  Size: 20500K
    ..................................................  Size: 20549K
    ..................................................  Size: 20600K
    ..................................................  Size: 20649K
    ..................................................  Size: 20700K
    ..................................................  Size: 20749K
    ..................................................  Size: 20799K
    ..................................................  Size: 20849K
    ..................................... Size of output: 20887K
Build succeeded.
build submit error = 0
Starting testing step.
Tests succeeded.
test submit error = 0
File upload submit error = 0

Enabled Packages:
-- Setting Trilinos_ENABLE_ALL_PACKAGES = ON
-- Setting Trilinos_ENABLE_Sacado = ON

+--------------------------------------------------------------------+
| G e n e r a t e packageEnables.cmake C O M P L E T E D
+--------------------------------------------------------------------+

+==============================================================================+
| E X E C U T E S T A N D A R D P U L L R E Q E S T T E S T
+==============================================================================+

--- Change directory to /home/trilinos/jenkins/ride/workspace/trilinos-folder/Trilinos_pullrequest_cuda_10.1.105_uvm_off@2/TFW_testing_single_configure_prototype
--- OK

--- ctest command:
--- cmd = ctest
-S
simple_testing.cmake
-Dbuild_name=PR-9894-test-Trilinos_pullrequest_cuda_10.1.105_uvm_off-1627
-Dskip_by_parts_submit=OFF
-Dskip_update_step=ON
-Ddashboard_model=Experimental
-Ddashboard_track=Pull Request
-DPARALLEL_LEVEL=29
-DTEST_PARALLEL_LEVEL=4
-Dbuild_dir=/home/trilinos/jenkins/ride/workspace/trilinos-folder/Trilinos_pullrequest_cuda_10.1.105_uvm_off@2/pull_request_test
-Dconfigure_script=/home/trilinos/jenkins/ride/workspace/trilinos-folder/Trilinos_pullrequest_cuda_10.1.105_uvm_off@2/Trilinos/cmake/std/PullRequestLinuxCuda10.1.105uvmOffTestingSettings.cmake
-Dpackage_enables=../packageEnables.cmake
-Dsubprojects_file=../package_subproject_list.cmake

Done.
Archiving artifacts
[Checks API] No suitable checks publisher found.
Finished: SUCCESS

Console Output (last 100 lines) : Trilinos_pullrequest_clang_10.0.0 # 3949 (click to expand)

    ..................................................  Size: 849K
    ..................................................  Size: 899K
    ..................................................  Size: 949K
    ..................................................  Size: 999K
    ..................................................  Size: 1049K
    ..................................................  Size: 1099K
    ..................................................  Size: 1149K
    ..................................................  Size: 1199K
    ..................................................  Size: 1249K
    ..................................................  Size: 1299K
    ..................................................  Size: 1349K
    ..................................................  Size: 1399K
    ..................................................  Size: 1449K
    ..................................................  Size: 1499K
    ..................................................  Size: 1549K
    ..................................................  Size: 1599K
    ..................................................  Size: 1649K
    ..................................................  Size: 1699K
    ..................................................  Size: 1749K
    ..................................................  Size: 1799K
    ..................................................  Size: 1849K
    ..................................................  Size: 1899K
    ..................................................  Size: 1949K
    ..................................................  Size: 1999K
    ..................................................  Size: 2049K
    ..................................................  Size: 2099K
    ..................................................  Size: 2149K
    ..................................................  Size: 2200K
    ..................................................  Size: 2250K
    ..................................................  Size: 2299K
    ..................................................  Size: 2349K
    ..................................................  Size: 2399K
    ..................................................  Size: 2450K
    ..................................................  Size: 2499K
    ..................................................  Size: 2550K
    ..................................................  Size: 2599K
    ..................................................  Size: 2650K
    ..................................................  Size: 2699K
    ..................................................  Size: 2749K
    ..................................................  Size: 2800K
    ..................................................  Size: 2849K
    ..................................................  Size: 2900K
    ..................................................  Size: 2950K
    ..................................................  Size: 2999K
    ..................................................  Size: 3049K
    ..................................................  Size: 3099K
    ..................................................  Size: 3149K
    ..................................................  Size: 3199K
    ..................................................  Size: 3249K
    ..................................................  Size: 3299K
    ..................................................  Size: 3349K
    ..................................................  Size: 3399K
    ..................................................  Size: 3449K
    ..................................................  Size: 3499K
    ..................................................  Size: 3549K
    ..................................................  Size: 3599K
    ......................................... Size of output: 3641K
Build succeeded.
build submit error = 0
Starting testing step.
Tests succeeded.
test submit error = 0
File upload submit error = 0

Enabled Packages:
-- Setting Trilinos_ENABLE_ALL_PACKAGES = ON
-- Setting Trilinos_ENABLE_Sacado = ON

+--------------------------------------------------------------------+
| G e n e r a t e packageEnables.cmake C O M P L E T E D
+--------------------------------------------------------------------+

+==============================================================================+
| E X E C U T E S T A N D A R D P U L L R E Q E S T T E S T
+==============================================================================+

--- Change directory to /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_clang_10.0.0@2/TFW_testing_single_configure_prototype
--- OK

--- ctest command:
--- cmd = ctest
-S
simple_testing.cmake
-Dbuild_name=PR-9894-test-Trilinos_pullrequest_clang_10.0.0-3949
-Dskip_by_parts_submit=OFF
-Dskip_update_step=ON
-Ddashboard_model=Experimental
-Ddashboard_track=Pull Request
-DPARALLEL_LEVEL=29
-DTEST_PARALLEL_LEVEL=4
-Dbuild_dir=/scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_clang_10.0.0@2/pull_request_test
-Dconfigure_script=/scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_clang_10.0.0@2/Trilinos/cmake/std/PullRequestLinuxClang10.0.0TestingSettings.cmake
-Dpackage_enables=../packageEnables.cmake
-Dsubprojects_file=../package_subproject_list.cmake

Done.
Archiving artifacts
[Checks API] No suitable checks publisher found.
Finished: SUCCESS

Console Output (last 100 lines) : python-3 # 585 (click to expand)

+ submit_by_parts() FINISH
+----------------------------------------------------------+
+--------------------------------------+
| ctest-stage-configure.cmake FINISH   |
+--------------------------------------+
+--------------------------------------+
| ctest-stage-build.cmake START        |
+--------------------------------------+
+----------------------------------------------------------+
+ START build step
+----------------------------------------------------------+
   Each symbol represents 1024 bytes of output.
    . Size of output: 0K
+----------------------------------------------------------+
+ END build step - SUCCESS
+----------------------------------------------------------+
+----------------------------------------------------------+
+ submit_by_parts() START
+----------------------------------------------------------+
>>> arg_parts_value: Build
>>> CTEST_DROP_LOCATION : /cdash/submit.php?project=Trilinos
>>> CDash URL1 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&display=project&filtercount=3&showfilters=1&filtercombine=and&field1=site&compare1=61&value1=ascic166&field2=buildname&compare2=61&value2=PR-9894-test-rhel7_sems-gnu-7.2.0-anaconda3-serial_debug_shared_no-kokkos-arch_no-asan_no-complex_no-fpic_no-mpi_no-pt_no-rdc_pr-framework-585&field3=buildstamp&compare3=61&value3=20211103-1638-Pull Request-Experimental
>>> CDash URL2 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&display=project&filtercount=2&showfilters=0&filtercombine=and&field1=buildname&compare1=61&value1=PR-9894-test-rhel7_sems-gnu-7.2.0-anaconda3-serial_debug_shared_no-kokkos-arch_no-asan_no-complex_no-fpic_no-mpi_no-pt_no-rdc_pr-framework-585&field2=buildstamp&compare2=61&value2=20211103-1638-Pull Request-Experimental
>>> CDash URL3 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&filtercount=2&showfilters=0&filtercombine=and&field1=buildname&compare1=61&value1=PR-9894-test-rhel7_sems-gnu-7.2.0-anaconda3-serial_debug_shared_no-kokkos-arch_no-asan_no-complex_no-fpic_no-mpi_no-pt_no-rdc_pr-framework-585&field2=buildstamp&compare2=61&value2=20211103-1638-Pull Request-Experimental
>>> ctest_submit(PARTS        Build
                 RETRY_COUNT  5
                 RETRY_DELAY  3
                 RETURN_VALUE ctest_submit_error)
>>> Build submit: OK
>>> CDash Build-ID : 10188924
+----------------------------------------------------------+
+ submit_by_parts() FINISH
+----------------------------------------------------------+
+--------------------------------------+
| ctest-stage-build.cmake FINISH       |
+--------------------------------------+
+--------------------------------------+
| ctest-stage-test.cmake START         |
+--------------------------------------+
+----------------------------------------------------------+
+ START test step
+----------------------------------------------------------+
+----------------------------------------------------------+
+ END test step - SUCCESS
+----------------------------------------------------------+
+----------------------------------------------------------+
+ submit_by_parts() START
+----------------------------------------------------------+
>>> arg_parts_value: Test
>>> CTEST_DROP_LOCATION : /cdash/submit.php?project=Trilinos
>>> CDash URL1 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&display=project&filtercount=3&showfilters=1&filtercombine=and&field1=site&compare1=61&value1=ascic166&field2=buildname&compare2=61&value2=PR-9894-test-rhel7_sems-gnu-7.2.0-anaconda3-serial_debug_shared_no-kokkos-arch_no-asan_no-complex_no-fpic_no-mpi_no-pt_no-rdc_pr-framework-585&field3=buildstamp&compare3=61&value3=20211103-1638-Pull Request-Experimental
>>> CDash URL2 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&display=project&filtercount=2&showfilters=0&filtercombine=and&field1=buildname&compare1=61&value1=PR-9894-test-rhel7_sems-gnu-7.2.0-anaconda3-serial_debug_shared_no-kokkos-arch_no-asan_no-complex_no-fpic_no-mpi_no-pt_no-rdc_pr-framework-585&field2=buildstamp&compare2=61&value2=20211103-1638-Pull Request-Experimental
>>> CDash URL3 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&filtercount=2&showfilters=0&filtercombine=and&field1=buildname&compare1=61&value1=PR-9894-test-rhel7_sems-gnu-7.2.0-anaconda3-serial_debug_shared_no-kokkos-arch_no-asan_no-complex_no-fpic_no-mpi_no-pt_no-rdc_pr-framework-585&field2=buildstamp&compare2=61&value2=20211103-1638-Pull Request-Experimental
>>> ctest_submit(PARTS        Test
                 RETRY_COUNT  5
                 RETRY_DELAY  3
                 RETURN_VALUE ctest_submit_error)
>>> Test submit: OK
>>> CDash Build-ID : 10188924
+----------------------------------------------------------+
+ submit_by_parts() FINISH
+----------------------------------------------------------+
+----------------------------------------------------------+
+ submit_single_submit() START
+----------------------------------------------------------+
>>> SKIPPED
>>> skip_single_submit : ON
+----------------------------------------------------------+
+ submit_single_submit() FINISH
+----------------------------------------------------------+
+----------------------------------------------------------+
+ submit_upload_config_files() START
+----------------------------------------------------------+
>>> ctest_upload(FILES /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/python-3/pull_request_test/configure_command.txt
                 /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/python-3/generatedPRFragment.cmake
                 /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/python-3/packageEnables.cmake )
>>> ctest_submit(PARTS upload
                 RETRY_COUNT  5
                 RETRY_DELAY  3
                 RETURN_VALUE file_upload_erorr)
>>> Config Files Upload: OK
+----------------------------------------------------------+
+ submit_upload_config_files() FINISH
+----------------------------------------------------------+
>>> captured_cmake_error = 0 (unused)
>>> test_error           = 0
Test(s) passed.
+--------------------------------------+
| ctest-stage-test.cmake FINISH        |
+--------------------------------------+
+--------------------------------------+
| ctest-driver.cmake FINISH            |
+--------------------------------------+
TrilinosPRConfigurationStandard.py:99 execute_test()> --- OK
TrilinosPRConfigurationStandard.py:107 execute_test()> 
PullRequestLinuxDriverTest.py main()> Done.
PRDriver> OK
Archiving artifacts
[Checks API] No suitable checks publisher found.
Finished: SUCCESS


CDash Test Results for PR# 9894.


Wiki: How to Reproduce PR Testing Builds and Errors.

@trilinos-autotester
Copy link
Contributor

Status Flag 'Pull Request AutoTester' - Failure: Timed out waiting for job Trilinos_pullrequest_cuda_weaver_uvm_off to start: Total Wait = 3603

@trilinos-autotester trilinos-autotester removed the AT: RETEST Causes the PR autotester to run a new round of PR tests on the next iteration label Nov 25, 2021
@trilinos-autotester
Copy link
Contributor

Status Flag 'Pull Request AutoTester' - Testing Jenkins Projects:

Pull Request Auto Testing STARTING (click to expand)

Build Information

Test Name: Trilinos_pullrequest_cuda_weaver

  • Build Num: 110
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
FORCE_CLEAN true
PR_LABELS type: enhancement;pkg: Sacado;AT: AUTOMERGE;TriBITS
PULLREQUESTNUM 9894
PULLREQUEST_CDASH_TRACK Pull Request
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tribits-299-modern-cmake-targets-1
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 9f83190
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA b9c308f

Build Information

Test Name: Trilinos_pullrequest_cuda_weaver_uvm_off

  • Build Num: 46
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
FORCE_CLEAN true
PR_LABELS type: enhancement;pkg: Sacado;AT: AUTOMERGE;TriBITS
PULLREQUESTNUM 9894
PULLREQUEST_CDASH_TRACK Pull Request
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tribits-299-modern-cmake-targets-1
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 9f83190
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA b9c308f

Using Repos:

Repo: TRILINOS (bartlettroscoe/Trilinos)
  • Branch: tribits-299-modern-cmake-targets-1
  • SHA: 9f83190
  • Mode: TEST_REPO

Pull Request Author: bartlettroscoe

@trilinos-autotester
Copy link
Contributor

Status Flag 'Pull Request AutoTester' - Testing Jenkins Projects:

Pull Request Auto Testing STARTING (click to expand)

Build Information

Test Name: Trilinos_pullrequest_cuda_weaver

  • Build Num: 110
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
FORCE_CLEAN true
PR_LABELS type: enhancement;pkg: Sacado;AT: AUTOMERGE;TriBITS
PULLREQUESTNUM 9894
PULLREQUEST_CDASH_TRACK Pull Request
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tribits-299-modern-cmake-targets-1
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 9f83190
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA b9c308f

Build Information

Test Name: Trilinos_pullrequest_cuda_weaver_uvm_off

  • Build Num: 46
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
FORCE_CLEAN true
PR_LABELS type: enhancement;pkg: Sacado;AT: AUTOMERGE;TriBITS
PULLREQUESTNUM 9894
PULLREQUEST_CDASH_TRACK Pull Request
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tribits-299-modern-cmake-targets-1
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 9f83190
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA b9c308f

Build Information

Test Name: Trilinos_pullrequest_gcc_8.3.0

  • Build Num: 6071
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS type: enhancement;pkg: Sacado;AT: AUTOMERGE;TriBITS
PULLREQUESTNUM 9894
PULLREQUEST_CDASH_TRACK Pull Request
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tribits-299-modern-cmake-targets-1
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 9f83190
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA b9c308f

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0_serial

  • Build Num: 3603
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS type: enhancement;pkg: Sacado;AT: AUTOMERGE;TriBITS
PULLREQUESTNUM 9894
PULLREQUEST_CDASH_TRACK Pull Request
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tribits-299-modern-cmake-targets-1
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 9f83190
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA b9c308f

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0_debug

  • Build Num: 4123
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS type: enhancement;pkg: Sacado;AT: AUTOMERGE;TriBITS
PULLREQUESTNUM 9894
PULLREQUEST_CDASH_TRACK Pull Request
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tribits-299-modern-cmake-targets-1
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 9f83190
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA b9c308f

Build Information

Test Name: Trilinos_pullrequest_intel_17.0.1

  • Build Num: 11260
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS type: enhancement;pkg: Sacado;AT: AUTOMERGE;TriBITS
PULLREQUESTNUM 9894
PULLREQUEST_CDASH_TRACK Pull Request
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tribits-299-modern-cmake-targets-1
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 9f83190
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA b9c308f

Build Information

Test Name: Trilinos_pullrequest_clang_10.0.0

  • Build Num: 4059
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS type: enhancement;pkg: Sacado;AT: AUTOMERGE;TriBITS
PULLREQUESTNUM 9894
PULLREQUEST_CDASH_TRACK Pull Request
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tribits-299-modern-cmake-targets-1
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 9f83190
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA b9c308f

Build Information

Test Name: python-3

  • Build Num: 694
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS type: enhancement;pkg: Sacado;AT: AUTOMERGE;TriBITS
PULLREQUESTNUM 9894
PULLREQUEST_CDASH_TRACK Pull Request
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tribits-299-modern-cmake-targets-1
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 9f83190
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA b9c308f

Using Repos:

Repo: TRILINOS (bartlettroscoe/Trilinos)
  • Branch: tribits-299-modern-cmake-targets-1
  • SHA: 9f83190
  • Mode: TEST_REPO

Pull Request Author: bartlettroscoe

@trilinos-autotester
Copy link
Contributor

Status Flag 'Pull Request AutoTester' - Jenkins Testing: all Jobs PASSED

Pull Request Auto Testing has PASSED (click to expand)

Build Information

Test Name: Trilinos_pullrequest_cuda_weaver

  • Build Num: 110
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
FORCE_CLEAN true
PR_LABELS type: enhancement;pkg: Sacado;AT: AUTOMERGE;TriBITS
PULLREQUESTNUM 9894
PULLREQUEST_CDASH_TRACK Pull Request
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tribits-299-modern-cmake-targets-1
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 9f83190
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA b9c308f

Build Information

Test Name: Trilinos_pullrequest_cuda_weaver_uvm_off

  • Build Num: 46
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
FORCE_CLEAN true
PR_LABELS type: enhancement;pkg: Sacado;AT: AUTOMERGE;TriBITS
PULLREQUESTNUM 9894
PULLREQUEST_CDASH_TRACK Pull Request
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tribits-299-modern-cmake-targets-1
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 9f83190
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA b9c308f

Build Information

Test Name: Trilinos_pullrequest_gcc_8.3.0

  • Build Num: 6071
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PR_LABELS type: enhancement;pkg: Sacado;AT: AUTOMERGE;TriBITS
PULLREQUESTNUM 9894
PULLREQUEST_CDASH_TRACK Pull Request
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tribits-299-modern-cmake-targets-1
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 9f83190
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA b9c308f

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0_serial

  • Build Num: 3603
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PR_LABELS type: enhancement;pkg: Sacado;AT: AUTOMERGE;TriBITS
PULLREQUESTNUM 9894
PULLREQUEST_CDASH_TRACK Pull Request
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tribits-299-modern-cmake-targets-1
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 9f83190
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA b9c308f

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0_debug

  • Build Num: 4123
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PR_LABELS type: enhancement;pkg: Sacado;AT: AUTOMERGE;TriBITS
PULLREQUESTNUM 9894
PULLREQUEST_CDASH_TRACK Pull Request
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tribits-299-modern-cmake-targets-1
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 9f83190
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA b9c308f

Build Information

Test Name: Trilinos_pullrequest_intel_17.0.1

  • Build Num: 11260
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PR_LABELS type: enhancement;pkg: Sacado;AT: AUTOMERGE;TriBITS
PULLREQUESTNUM 9894
PULLREQUEST_CDASH_TRACK Pull Request
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tribits-299-modern-cmake-targets-1
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 9f83190
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA b9c308f

Build Information

Test Name: Trilinos_pullrequest_clang_10.0.0

  • Build Num: 4059
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PR_LABELS type: enhancement;pkg: Sacado;AT: AUTOMERGE;TriBITS
PULLREQUESTNUM 9894
PULLREQUEST_CDASH_TRACK Pull Request
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tribits-299-modern-cmake-targets-1
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 9f83190
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA b9c308f

Build Information

Test Name: python-3

  • Build Num: 694
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PR_LABELS type: enhancement;pkg: Sacado;AT: AUTOMERGE;TriBITS
PULLREQUESTNUM 9894
PULLREQUEST_CDASH_TRACK Pull Request
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tribits-299-modern-cmake-targets-1
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 9f83190
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA b9c308f


CDash Test Results for PR# 9894.

@trilinos-autotester
Copy link
Contributor

Status Flag 'Pre-Merge Inspection' - SUCCESS: The last commit to this Pull Request has been INSPECTED AND APPROVED by [ e10harvey ]!

@trilinos-autotester
Copy link
Contributor

Status Flag 'Pull Request AutoTester' - Pull Request will be Automerged

@trilinos-autotester trilinos-autotester merged commit db3205b into trilinos:develop Nov 25, 2021
Trilinos TriBITS Refactor automation moved this from In Review to Done Nov 25, 2021
@trilinos-autotester
Copy link
Contributor

Merge on Pull Request# 9894: IS A SUCCESS - Pull Request successfully merged

@trilinos-autotester trilinos-autotester removed the AT: AUTOMERGE Causes the PR autotester to automatically merge the PR branch once approvals are completed label Nov 25, 2021
bartlettroscoe added a commit to bartlettroscoe/Trilinos that referenced this pull request Nov 29, 2021
…/tribits-299-modern-cmake-targets-1"

This reverts commit db3205b, reversing
changes made to 110b6c4 which reverts the PR
merge trilinos#9894.

This is to allow reproducing and addressing the problems described in the new
issues trilinos#9972 and #trilinos#9973 offline to allow the Albany and Nalu Trilinos
integration process, respectively, to continue working in the meantime.
bartlettroscoe added a commit to bartlettroscoe/Trilinos that referenced this pull request Nov 29, 2021
…Trilinos/tribits-299-modern-cmake-targets-1""

This reverts commit fd27a20.

This gets us back to the state of the 'develop' branch after the PR trilinos#9894 that
merged the branch 'tribits-299-modern-cmake-targets-1' was merged (as well as
other PRs in the days after that).

Now I can try to reproduce the errors in issues trilinos#9972 and trilinos#9973.
trilinos-autotester added a commit that referenced this pull request Nov 30, 2021
…299-modern-cmake-targets-1

Automatically Merged using Trilinos Pull Request AutoTester
PR Title: Revert: TriBITS: Pull in partial refactoring to modern CMake targets (TriBITSPub/TriBITS#299) (#9894, #9972, #9973)
PR Author: bartlettroscoe
jmgate pushed a commit to tcad-charon/Trilinos that referenced this pull request Dec 1, 2021
…s:develop' (e953a67).

* trilinos-develop:
  Revert "Merge Pull Request trilinos#9894 from bartlettroscoe/Trilinos/tribits-299-modern-cmake-targets-1"
  Panzer: fix compiler warning, add safety check to q8/q4 converter
  Panzer: allow for mpi subcomm in Q8 to Q4 mesh factory
  NOX: update solver stats
  Panzer: add Quad8 to Quad4 mesh factory
  Tempus: Fix Failing Tests Due to FPE
jmgate pushed a commit to tcad-charon/Trilinos that referenced this pull request Dec 1, 2021
…s:develop' (e953a67).

* trilinos-develop:
  Revert "Merge Pull Request trilinos#9894 from bartlettroscoe/Trilinos/tribits-299-modern-cmake-targets-1"
  Panzer: fix compiler warning, add safety check to q8/q4 converter
  Panzer: allow for mpi subcomm in Q8 to Q4 mesh factory
  NOX: update solver stats
  Panzer: add Quad8 to Quad4 mesh factory
  Tempus: Fix Failing Tests Due to FPE
bartlettroscoe added a commit to TriBITSPub/TriBITS that referenced this pull request Dec 15, 2021
…-linkflags

Fix issues with <tplName>Config.cmake generation for TriBITGS TPLs from trilinos/Trilinos#9894 (#433)
bartlettroscoe added a commit to bartlettroscoe/Trilinos that referenced this pull request Dec 15, 2021
…Trilinos/tribits-299-modern-cmake-targets-1""

This reverts commit fd27a20.

This gets us back to the state of the 'develop' branch after the PR trilinos#9894 that
merged the branch 'tribits-299-modern-cmake-targets-1' was merged (as well as
other PRs in the days after that).

Now I can try to reproduce the errors in issues trilinos#9972 and trilinos#9973.
bartlettroscoe added a commit to bartlettroscoe/Trilinos that referenced this pull request Dec 15, 2021
…targets-1-again (TriBITSPub/TriBITS#433)

Should address all of the issues with the merge of PR trilinos#9894
listed out in TriBITSPub/TriBITS#433 (which is part of
TriBITSPub/TriBITS#299).  This should resolve the failures reported in
trilinos#9972 and trilinos#9973.
PhilMiller pushed a commit to PhilMiller/Trilinos that referenced this pull request Dec 22, 2021
…Trilinos:develop' (8f92205).

* trilinos/develop: (35 commits)
  Piro: some fixes / additions relevant to Schwarz coupling in Albany-LCM.
  Tpetra: Fixed two errors in Tpetra::FECrsMatrix test (trilinos#9965)
  Revert "Merge Pull Request trilinos#9894 from bartlettroscoe/Trilinos/tribits-299-modern-cmake-targets-1"
  Panzer: fix compiler warning, add safety check to q8/q4 converter
  Panzer: allow for mpi subcomm in Q8 to Q4 mesh factory
  change calls for sems-[TPLname] to sems-archive-[TPLname].
  Automatic snapshot commit from tribits at 1241168
  NOX: update solver stats
  Tpetra: remove unnecessary broadcast
  Piro: correcting logic so code does not attempt to construct adjoint model when adjoint model passed in is null.
  Xpetra IO: More fixes for binary reading
  Panzer: add Quad8 to Quad4 mesh factory
  Ifpack2: rebaselining long double test.  Something in Trilinos changes that changed slightly the matrices / vectors defined in this problem.  Verified that precision of result given new matrix/vector is correct.
  Tempus: Fix Failing Tests Due to FPE
  Xpetra: fix bug in binary reader
  Tpetra: use exact nnz per row in matrix reader
  removed outdated information
  MueLu ML translation: Translate Hiptmair
  MueLu RefMaxwell: Use smoother factory for Hiptmair
  Ifpack2 Hiptmair: add subsmoothers to Hiptmair description
  ...
bartlettroscoe added a commit to bartlettroscoe/Trilinos that referenced this pull request Jun 10, 2022
…Trilinos/tribits-299-modern-cmake-targets-1""

This reverts commit fd27a20.

This gets us back to the state of the 'develop' branch after the PR trilinos#9894 that
merged the branch 'tribits-299-modern-cmake-targets-1' was merged (as well as
other PRs in the days after that).

Now I can try to reproduce the errors in issues trilinos#9972 and trilinos#9973.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
pkg: Sacado TriBITS Issues with the TriBITS framework itself, not usage of the TriBITS framework type: enhancement Issue is an enhancement, not a bug
Development

Successfully merging this pull request may close these issues.

None yet

6 participants