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

Trilinos: Fix/Update build stats tools #8638

Merged
merged 46 commits into from
Jun 18, 2021

Conversation

jjellio
Copy link
Contributor

@jjellio jjellio commented Jan 26, 2021

Addresses more of #7376

This patch is rather monolithic, but it isn't easy to decouple things.

The general fixes are:

  1. Enable Fortran support
  2. Enable static library tracking
  3. fix 2 bugs related to the NM parser (and how python opens pipes)

The cmake changes have some redundant code - the function to generate a 'lang' is nearly identical to what I wrote for 'ar' - I generalized it to the point that we could use the more generic form I have. It effectively takes in an extra string variable to know which CMAKE_ variable to set.

I've tested this with a simple Epetra build that builds some Fortran code.

Issues:

  • On PopOS, cmake fails to find the python executable, which then leaves the base BUILD_DIR undefined at wrapper creation time. This seems to be a PopOS/Cmake problem, so for testing I set -DPYTHON_EXECUTABLE=$(which python3)

  • The cmake code I added does not install the ar/ld/ranlib wrappers - this should be a simple change in cmake, but testing w/installations should probably be a separate thing.

  • Trilinos (and this code) will probably have to commit to Python3 (and forget Python2). There could be issues in the future w/ writing the proper 'shebang' for running the python wrappers - they may need to have CMake output PYTHON_EXECUTABLE as input into a configure file so the shebang is correct on various platforms. (and so we know python3 is used)

  • Generating AR/RANLIB wrappers should be skipped if the build is Shared, but it is should be benign to set them anyway.

  • Not sure if CMAKE_LD is ever used (by us), but I did generate a wrapper for it.

This code was developed on a recent pull from Develop w/GCC 10 (not tested w/intel)

@bartlettroscoe

Tasks:

  • Get build issues resolved in the non-serial PR builds.
  • Turn on build-stats for the serial builds as well (just test locally).
  • Debug and fix creation of build_stats.csv file due to different fields (or ordering of fields) in the *.timing files (see here).
  • Address failing Ifpack2 tests in the clang PR build (see here (Appears to have been unrelated to build stats, as all tests are clean now).
  • Create a robust gather_build_stats.py -d <dir-base> -o <build-stats-csv> tool to allow *.timing files with different sets of headers (in different orders) and remove the ./ at the beginning of the paths.
  • Refactor code to reduce duplication and improve understanding (through a new PR against this PR).
  • Enable in all of the ATDM Trilinos builds on this branch.
  • Manually fire off build_stats wrappers and summary on all ATDM Trilinos configurations on all systems (including Intel static builds).
  • Merge this PR branch to the 'atdm-nightly-manual-updates' branch to get this tested in all of the ATDM Trilinos builds.
  • Verify that there are no problems in any of the ATDM Trilinos builds.
  • Run another round of PR testing with build_stats wrappers enabled in all PR builds.
  • [ ] Disable build stats wrappers in all of the PR builds on this branch.... @jwillenbring said it was okay to enable these in the PR builds for now
  • Merge this PR to 'develop'.

@jjellio jjellio added the AT: WIP Causes the PR autotester to not test the PR. (Remove to allow testing to occur.) label Jan 26, 2021
@bartlettroscoe bartlettroscoe added ATDM DevOps Issues that will be worked by the Coordinated ATDM DevOps teams client: ATDM Any issue primarily impacting the ATDM project type: enhancement Issue is an enhancement, not a bug labels Jan 26, 2021
@bartlettroscoe
Copy link
Member

@jjellio, thanks for adding this PR! I will review and test on a few systems. I will then enable this in the ATDM Trilinos builds and the PR builds (for this PR) to ensure it works everywhere (which is the initial goal).

The cmake code I added does not install the ar/ld/ranlib wrappers - this should be a simple change in cmake, but testing w/installations should probably be a separate thing.

We can address that in a follow-up PR. We need to install different wrappers because they need to point to the installed magic_wrapper.py and not the one in the source tree.

Trilinos (and this code) will probably have to commit to Python3 (and forget Python2). There could be issues in the future w/ writing the proper 'shebang' for running the python wrappers - they may need to have CMake output PYTHON_EXECUTABLE as input into a configure file so the shebang is correct on various platforms. (and so we know python3 is used)

If we make it only Python 3, then there are some Trilinos PR builds that we can't enable the build wrappers since they use Python 2.7. If you support Python 2.7 and 3.x, then if you always look for 'python' that will either by the default Python 2.7 on RHEL7-based systems or will be some version of Python 3. Either way, that is fine if you write your Python code to work with Python 2.7 and Python 3.x. I will take a look.

Generating AR/RANLIB wrappers should be skipped if the build is Shared, but it is should be benign to set them anyway.

That is easy to checks for by looking at the var BUILD_SHRAED_LIBS. I will take a look.

Not sure if CMAKE_LD is ever used (by us), but I did generate a wrapper for it.

Would not be hard to manually determine that. We could, for example, set this to a dummy program and then grep the build.ninja file to see if it shows up there.

I will post my initial review next.

Copy link
Member

@bartlettroscoe bartlettroscoe left a comment

Choose a reason for hiding this comment

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

@jjellio, from my prior extensive portability testing of this as part of PR #7508, I am concerned this will not work in all of those builds due to:

  • Moving usr_bin_time_csv_map back inside of class WrapperOpTimer:
  • Changing from #!/usr/bin/env python to #!/usr/bin/env python3

Therefore, before this gets merged, we diffidently need to:

  1. Test this in all of the Trilinos PR builds
  2. Test this in all of the ATDM Trilinos builds

The former is easy. I will just turn on these build-stats wrappers in all of the Trilinos PR builds on this branch and push.

The latter is more difficult since we don't want to break the ATDM Trilinos builds (even for a day). So that will require going to each major platform and manually running all of the builds and posting to CDash.

Also, I am concerned about the warning message about overwriting existing *.timing files since this will be common if doing a rebuild (unless all of the *.timing files get wiped out when configuring with -D Trilinos_REMOVE_BUILD_STATS_TIMING_FILES_ON_FRESH_CONFIGURE=ON). Can we at least make that an optional debug-level warning that is off by default? (We could enable it if the env var MAGIC_WRAPPER_WARN_ON_OVERWRITING_STATS_FILE=1 is set in the user's env?) Otherwise, developers are going to see a ton of these warnings when doing rebuilds in their local build directory and they are going to hate us.

I will create a new branch and PR against this PR for my suggested changes for all of the above for you @jjellio to review and then merge into this branch and PR.

But first I will enable PR testing of what is here so we can see what happens in the PR builds.

Comment on lines 54 to 85
# Generate the build stats compiler wrapper for a ar/ld/ranlib
#
# the only difference between this and lang, is setting the proper
# Cmake variable name, e.g., CMAKE_LANG_COMPILER vs CMAKE_OP
# we can resolve this by taking in name of the variable to set
function(generate_build_stats_wrapper_for_op op_name variable_to_set)

string(TOLOWER "${op_name}" op_lc)
set(compiler_wrapper
"${${PROJECT_NAME}_BINARY_DIR}/build_stat_${op_lc}_wrapper.sh")

# Override the compiler with the wrapper but remember the original compiler
if ("${${variable_to_set}_ORIG}" STREQUAL "")
set(${variable_to_set}_ORIG "${op_lc}"
CACHE FILEPATH "Original non-wrappeed ${op_name}" FORCE )
set(${variable_to_set} "${compiler_wrapper}"
CACHE FILEPATH "Overwritten build stats ${op_name} compiler wrapper" FORCE )
endif()

message("-- " "Generate build stats compiler wrapper for ${op_name}")
set(BUILD_STAT_COMPILER_WRAPPER_INNER_COMPILER "${${variable_to_set}_ORIG}")
configure_file("${BUILD_STATS_SRC_DIR}/build_stat_lang_wrapper.sh.in"
"${compiler_wrapper}" @ONLY)
print_var(${variable_to_set})

# Use the orginal compiler for the installed <XXX>Config.cmake files
# doubt this works w/AR/LD/RANLIB
set(${variable_to_set}_COMPILER_FOR_CONFIG_FILE_INSTALL_DIR
"${${variable_to_set}_ORIG}" CACHE INTERNAL "")
print_var(${variable_to_set}_COMPILER_FOR_CONFIG_FILE_INSTALL_DIR)

endfunction()
Copy link
Member

Choose a reason for hiding this comment

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

We should definently try to eliminate this duplication. I will take a crack at that and push new commits to this PR branch.

Copy link
Contributor Author

@jjellio jjellio Jan 26, 2021

Choose a reason for hiding this comment

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

(edit - this is bonkers - it put my reply in this comment for no good reason)

@@ -57,6 +93,7 @@ macro(get_base_build_dir_for_python)
WORKING_DIRECTORY ${PROJECT_BINARY_DIR}
OUTPUT_VARIABLE BASE_BUILD_DIR_FOR_PYTHON
OUTPUT_STRIP_TRAILING_WHITESPACE)
print_var(BASE_BUILD_DIR_FOR_PYTHON)
Copy link
Member

Choose a reason for hiding this comment

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

We should remove this print statement or at least comment this out since I guess this was just for local debugging?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Ugh, yes. That popped up due to python not being found

commonTools/build_stats/build_stat_lang_wrapper.sh.in Outdated Show resolved Hide resolved
commonTools/build_stats/wrapper/WrapperOpTimer.py Outdated Show resolved Hide resolved
commonTools/build_stats/wrapper/WrapperOpTimer.py Outdated Show resolved Hide resolved
commonTools/build_stats/wrapper/NMParser.py Outdated Show resolved Hide resolved
CACHE FILEPATH "Original non-wrappeed ${op_name}" FORCE )
set(CMAKE_${op_name} "${compiler_wrapper}"
set(${variable_to_set} "${compiler_wrapper}"
CACHE FILEPATH "Overwritten build stats ${op_name} compiler wrapper" FORCE )
endif()

message("-- " "Generate build stats compiler wrapper for ${op_name}")
Copy link
Member

Choose a reason for hiding this comment

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

This is the wrong message if this is not wrapping the compiler. Instead, we should just take "compiler" out of this and other such comments and printed messages.

CACHE FILEPATH "Overwritten build stats ${op_name} compiler wrapper" FORCE )
endif()

message("-- " "Generate build stats compiler wrapper for ${op_name}")
set(BUILD_STAT_COMPILER_WRAPPER_INNER_COMPILER "${CMAKE_${op_name}_ORIG}")
set(BUILD_STAT_COMPILER_WRAPPER_INNER_COMPILER "${${variable_to_set}_ORIG}")
Copy link
Member

Choose a reason for hiding this comment

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

And COMPILER needs to be replaced with OPT since this is not always a compiler now.

Comment on lines 43 to 45
generate_build_stats_wrapper_for_op(LD "CMAKE_LD")
generate_build_stats_wrapper_for_op(AR "CMAKE_AR")
generate_build_stats_wrapper_for_op(RANLIB "CMAKE_RANLIB")
Copy link
Member

Choose a reason for hiding this comment

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

you don't really need quotes around the second args.

Copy link
Member

Choose a reason for hiding this comment

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

When there are no spaces, <something> is identical to `"" when passing in arguments to a CMake command. Putting quotes around things only changes the meaning in an if() statements in certain cases (i.e. if a string is interpreted as a literal vs. the name of a variable). Except for if() statements (and perhaps in a few other special cases), everything is a string in CMake and if there are no spaces, then there is no need for surrounding quotes.

@bartlettroscoe
Copy link
Member

@jjellio, I am testing this locally and it looks like it is broken. I just got:

[34/764] Building CXX object packages/kokkos/core/unit_test/CMakeFiles/KokkosCore_UnitTest_DefaultInit_4.dir/default/TestDefaultDeviceTypeInit_4.cpp.o
FAILED: packages/kokkos/core/unit_test/CMakeFiles/KokkosCore_UnitTest_DefaultInit_4.dir/default/TestDefaultDeviceTypeInit_4.cpp.o 
/ascldap/users/rabartl/Trilinos.base/BUILDS/PR/gcc_7.2.0_debug/build_stat_cxx_wrapper.sh  -DGTEST_HAS_PTHREAD=0 -DGTEST_HAS_TR1_TUPLE=0 -I. -I/ascldap/users/rabartl/Trilinos.base/Trilinos/packages/kokkos/tpls/gtest -Ipackages/kokkos/core/src -I/ascldap/users/rabartl/Trilinos.base/Trilinos/packages/kokkos/core/src -Ipackages/kokkos -Ipackages/kokkos/core/unit_test -I/ascldap/users/rabartl/Trilinos.base/Trilinos/packages/kokkos/core/unit_test -pedantic -Wall -Wno-long-long -Wwrite-strings -Wall -Wno-clobbered -Wno-vla -Wno-pragmas -Wno-unknown-pragmas -Wno-unused-local-typedefs -Wno-literal-suffix -Wno-deprecated-declarations -Wno-misleading-indentation -Wno-int-in-bool-context -Wno-maybe-uninitialized -Wno-nonnull-compare -Wno-address -Wno-inline -Wno-return-type -Werror -DTRILINOS_HIDE_DEPRECATED_HEADER_WARNINGS   -g -O0 -fPIE   -std=c++14 -MD -MT packages/kokkos/core/unit_test/CMakeFiles/KokkosCore_UnitTest_DefaultInit_4.dir/default/TestDefaultDeviceTypeInit_4.cpp.o -MF packages/kokkos/core/unit_test/CMakeFiles/KokkosCore_UnitTest_DefaultInit_4.dir/default/TestDefaultDeviceTypeInit_4.cpp.o.d -o packages/kokkos/core/unit_test/CMakeFiles/KokkosCore_UnitTest_DefaultInit_4.dir/default/TestDefaultDeviceTypeInit_4.cpp.o -c /ascldap/users/rabartl/Trilinos.base/Trilinos/packages/kokkos/core/unit_test/default/TestDefaultDeviceTypeInit_4.cpp
Traceback (most recent call last):
  File "/ascldap/users/rabartl/Trilinos.base/Trilinos/commonTools/build_stats/wrapper/magic_wrapper.py", line 17, in <module>
    from WrapperOpTimer import WrapperOpTimer
  File "/home/rabartl/Trilinos.base/Trilinos/commonTools/build_stats/wrapper/WrapperOpTimer.py", line 145
    print(f"WARNING: File {output_stats_file} exists and will be overwritten")

I will fix and push to your branch.

@bartlettroscoe bartlettroscoe added AT: RETEST Causes the PR autotester to run a new round of PR tests on the next iteration and removed AT: WIP Causes the PR autotester to not test the PR. (Remove to allow testing to occur.) labels Jan 26, 2021
@bartlettroscoe
Copy link
Member

@jjellio, I pushed the new commits 461a243 and ad5eda6 (which were needed for a local build with the Trilinos PR gcc_7.2.0_debug build to even work) and I removed the label AT: WIP so we can see what this does in PR testing. That will tell us how all of this looks.

@trilinos-autotester
Copy link
Contributor

Status Flag 'Pull Request AutoTester' - User Requested Retest - Label AT: RETEST will be reset after testing.

@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: 3350
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: RETEST;ATDM DevOps;client: ATDM;type: enhancement
PULLREQUESTNUM 8638
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH fixbuild-stats2
TRILINOS_SOURCE_REPO https://github.com/jjellio/Trilinos
TRILINOS_SOURCE_SHA 461a243
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 2e2b449

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0_serial

  • Build Num: 974
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: RETEST;ATDM DevOps;client: ATDM;type: enhancement
PULLREQUESTNUM 8638
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH fixbuild-stats2
TRILINOS_SOURCE_REPO https://github.com/jjellio/Trilinos
TRILINOS_SOURCE_SHA 461a243
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 2e2b449

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0_debug

  • Build Num: 1468
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: RETEST;ATDM DevOps;client: ATDM;type: enhancement
PULLREQUESTNUM 8638
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH fixbuild-stats2
TRILINOS_SOURCE_REPO https://github.com/jjellio/Trilinos
TRILINOS_SOURCE_SHA 461a243
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 2e2b449

Build Information

Test Name: Trilinos_pullrequest_intel_17.0.1

  • Build Num: 8821
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: RETEST;ATDM DevOps;client: ATDM;type: enhancement
PULLREQUESTNUM 8638
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH fixbuild-stats2
TRILINOS_SOURCE_REPO https://github.com/jjellio/Trilinos
TRILINOS_SOURCE_SHA 461a243
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 2e2b449

Build Information

Test Name: Trilinos_pullrequest_cuda_10.1.105

  • Build Num: 297
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: RETEST;ATDM DevOps;client: ATDM;type: enhancement
PULLREQUESTNUM 8638
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH fixbuild-stats2
TRILINOS_SOURCE_REPO https://github.com/jjellio/Trilinos
TRILINOS_SOURCE_SHA 461a243
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 2e2b449

Build Information

Test Name: Trilinos_pullrequest_clang_10.0.0

  • Build Num: 1663
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: RETEST;ATDM DevOps;client: ATDM;type: enhancement
PULLREQUESTNUM 8638
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH fixbuild-stats2
TRILINOS_SOURCE_REPO https://github.com/jjellio/Trilinos
TRILINOS_SOURCE_SHA 461a243
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 2e2b449

Build Information

Test Name: Trilinos_pullrequest_python_3

  • Build Num: 4376
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: RETEST;ATDM DevOps;client: ATDM;type: enhancement
PULLREQUESTNUM 8638
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH fixbuild-stats2
TRILINOS_SOURCE_REPO https://github.com/jjellio/Trilinos
TRILINOS_SOURCE_SHA 461a243
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 2e2b449

Using Repos:

Repo: TRILINOS (jjellio/Trilinos)
  • Branch: fixbuild-stats2
  • SHA: 461a243
  • Mode: TEST_REPO

Pull Request Author: jjellio

@bartlettroscoe
Copy link
Member

@jjellio, note that we are already seeing errors in the Python magic_wrapper.py code shown here. We see errors like:

Fatal Python error: Py_Initialize: Unable to get the locale encoding
ModuleNotFoundError: No module named 'encodings'

This might be due to the this script using python3 which is kind of broken when loaded by the SEMS module (due to setting PYTHONPATH).

@jjellio
Copy link
Contributor Author

jjellio commented Jan 26, 2021

Some comments on Python.

I had an Ubuntu machine that I worked on in December and a different one in January. In that time, they removed the symlink from python3 to /usr/bin/python. That caused alot of problems (for Cmake/Tribits - errors obviously came from Tribits, but I think it was just calling Cmake's find).

Do you have a better than idea than 2 versions of the scripts?

Ideally, the 'top level' variable definitions drive the logic (e.g., regex patterns, dicts) - if that got moved to a universal python file (or properties file), then maybe only the logic would get replicated (and changed).

@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: 3350
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: RETEST;ATDM DevOps;client: ATDM;type: enhancement
PULLREQUESTNUM 8638
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH fixbuild-stats2
TRILINOS_SOURCE_REPO https://github.com/jjellio/Trilinos
TRILINOS_SOURCE_SHA 461a243
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 2e2b449

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0_serial

  • Build Num: 974
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: RETEST;ATDM DevOps;client: ATDM;type: enhancement
PULLREQUESTNUM 8638
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH fixbuild-stats2
TRILINOS_SOURCE_REPO https://github.com/jjellio/Trilinos
TRILINOS_SOURCE_SHA 461a243
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 2e2b449

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0_debug

  • Build Num: 1468
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: RETEST;ATDM DevOps;client: ATDM;type: enhancement
PULLREQUESTNUM 8638
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH fixbuild-stats2
TRILINOS_SOURCE_REPO https://github.com/jjellio/Trilinos
TRILINOS_SOURCE_SHA 461a243
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 2e2b449

Build Information

Test Name: Trilinos_pullrequest_intel_17.0.1

  • Build Num: 8821
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: RETEST;ATDM DevOps;client: ATDM;type: enhancement
PULLREQUESTNUM 8638
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH fixbuild-stats2
TRILINOS_SOURCE_REPO https://github.com/jjellio/Trilinos
TRILINOS_SOURCE_SHA 461a243
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 2e2b449

Build Information

Test Name: Trilinos_pullrequest_cuda_10.1.105

  • Build Num: 297
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: RETEST;ATDM DevOps;client: ATDM;type: enhancement
PULLREQUESTNUM 8638
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH fixbuild-stats2
TRILINOS_SOURCE_REPO https://github.com/jjellio/Trilinos
TRILINOS_SOURCE_SHA 461a243
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 2e2b449

Build Information

Test Name: Trilinos_pullrequest_clang_10.0.0

  • Build Num: 1663
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: RETEST;ATDM DevOps;client: ATDM;type: enhancement
PULLREQUESTNUM 8638
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH fixbuild-stats2
TRILINOS_SOURCE_REPO https://github.com/jjellio/Trilinos
TRILINOS_SOURCE_SHA 461a243
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 2e2b449

Build Information

Test Name: Trilinos_pullrequest_python_3

  • Build Num: 4376
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: RETEST;ATDM DevOps;client: ATDM;type: enhancement
PULLREQUESTNUM 8638
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH fixbuild-stats2
TRILINOS_SOURCE_REPO https://github.com/jjellio/Trilinos
TRILINOS_SOURCE_SHA 461a243
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 2e2b449
Console Output (last 100 lines) : Trilinos_pullrequest_gcc_8.3.0 # 3350 (click to expand)

Unable to find required file: /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/pull_request_test/packages/panzer/adapters-stk/test/model_evaluator/PanzerAdaptersSTK_thyra_model_evaluator.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/pull_request_test/packages/panzer/adapters-stk/test/model_evaluator/PanzerAdaptersSTK_explicit_model_evaluator.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/pull_request_test/packages/panzer/adapters-stk/test/solver/PanzerAdaptersSTK_solver.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/pull_request_test/packages/panzer/adapters-stk/test/periodic_bcs/PanzerAdaptersSTK_periodic_bcs.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/pull_request_test/packages/panzer/adapters-stk/example/square_mesh/PanzerAdaptersSTK_square_mesh.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/pull_request_test/packages/panzer/adapters-stk/example/square_mesh/PanzerAdaptersSTK_square_mesh_bc.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/pull_request_test/packages/panzer/adapters-stk/example/PoissonExample/PanzerAdaptersSTK_PoissonExample.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/pull_request_test/packages/panzer/adapters-stk/example/PoissonExample/PanzerAdaptersSTK_PoissonExample.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/pull_request_test/packages/panzer/adapters-stk/example/PoissonExample/PanzerAdaptersSTK_PoissonExample.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/pull_request_test/packages/panzer/adapters-stk/example/PoissonExample/PanzerAdaptersSTK_PoissonExample.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/pull_request_test/packages/panzer/adapters-stk/example/PoissonExample/PanzerAdaptersSTK_PoissonExample.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/pull_request_test/packages/panzer/adapters-stk/example/PoissonExample/PanzerAdaptersSTK_PoissonExample.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/pull_request_test/packages/panzer/adapters-stk/example/PoissonExample/PanzerAdaptersSTK_PoissonExample.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/pull_request_test/packages/panzer/adapters-stk/example/PoissonExample/PanzerAdaptersSTK_PoissonExample.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/pull_request_test/packages/panzer/adapters-stk/example/CurlLaplacianExample/PanzerAdaptersSTK_CurlLaplacianExample.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/pull_request_test/packages/panzer/adapters-stk/example/CurlLaplacianExample/PanzerAdaptersSTK_CurlLaplacianExample.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/pull_request_test/packages/panzer/adapters-stk/example/CurlLaplacianExample/PanzerAdaptersSTK_CurlLaplacianExample.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/pull_request_test/packages/panzer/adapters-stk/example/CurlLaplacianExample/PanzerAdaptersSTK_CurlLaplacianExample.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/pull_request_test/packages/panzer/adapters-stk/example/CurlLaplacianExample/PanzerAdaptersSTK_CurlLaplacianExample.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/pull_request_test/packages/panzer/adapters-stk/example/CurlLaplacianExample/PanzerAdaptersSTK_CurlLaplacianExample.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/pull_request_test/packages/panzer/adapters-stk/example/MixedCurlLaplacianExample/PanzerAdaptersSTK_MixedCurlLaplacianExample.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/pull_request_test/packages/panzer/adapters-stk/example/MixedCurlLaplacianExample/PanzerAdaptersSTK_MixedCurlLaplacianExample.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/pull_request_test/packages/panzer/adapters-stk/example/MixedCurlLaplacianExample/PanzerAdaptersSTK_MixedCurlLaplacianExample.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/pull_request_test/packages/panzer/adapters-stk/example/MixedCurlLaplacianExample/PanzerAdaptersSTK_MixedCurlLaplacianExample.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/pull_request_test/packages/panzer/adapters-stk/example/MixedCurlLaplacianExample/PanzerAdaptersSTK_MixedCurlLaplacianExample.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/pull_request_test/packages/panzer/adapters-stk/example/MixedCurlLaplacianExample/PanzerAdaptersSTK_MixedCurlLaplacianExample.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/pull_request_test/packages/panzer/adapters-stk/example/MixedCurlLaplacianExample/PanzerAdaptersSTK_MixedCurlLaplacianExample.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/pull_request_test/packages/panzer/adapters-stk/example/MixedPoissonExample/PanzerAdaptersSTK_MixedPoissonExample.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/pull_request_test/packages/panzer/adapters-stk/example/MixedPoissonExample/PanzerAdaptersSTK_MixedPoissonExample.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/pull_request_test/packages/panzer/adapters-stk/example/MixedPoissonExample/PanzerAdaptersSTK_MixedPoissonExample.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/pull_request_test/packages/panzer/adapters-stk/example/MixedPoissonExample/PanzerAdaptersSTK_MixedPoissonExample.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/pull_request_test/packages/panzer/adapters-stk/example/MixedPoissonExample/PanzerAdaptersSTK_MixedPoissonExample.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/pull_request_test/packages/panzer/adapters-stk/example/PoissonInterfaceExample/PanzerAdaptersSTK_PoissonInterfaceExample.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/pull_request_test/packages/panzer/adapters-stk/example/PoissonInterfaceExample/PanzerAdaptersSTK_PoissonInterfaceExample.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/pull_request_test/packages/panzer/adapters-stk/example/PoissonInterfaceExample/PanzerAdaptersSTK_PoissonInterfaceExample.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/pull_request_test/packages/panzer/adapters-stk/example/PoissonInterfaceExample/PanzerAdaptersSTK_PoissonInterfaceExample.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/pull_request_test/packages/panzer/adapters-stk/example/PoissonInterfaceTpetra/PanzerAdaptersSTK_PoissonInterfaceTpetra.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/pull_request_test/packages/panzer/adapters-stk/example/PoissonInterfaceTpetra/PanzerAdaptersSTK_PoissonInterfaceTpetra.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/pull_request_test/packages/panzer/adapters-stk/example/PoissonInterfaceTpetra/PanzerAdaptersSTK_PoissonInterfaceTpetra.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/pull_request_test/packages/panzer/adapters-stk/example/PoissonInterfaceTpetra/PanzerAdaptersSTK_PoissonInterfaceTpetra.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/pull_request_test/packages/panzer/adapters-stk/example/assembly_engine/PanzerAdaptersSTK_assembly_example.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/pull_request_test/packages/panzer/adapters-stk/example/main_driver/PanzerAdaptersSTK_main_driver.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/pull_request_test/packages/panzer/adapters-stk/example/main_driver/PanzerAdaptersSTK_main_driver.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/pull_request_test/packages/panzer/adapters-stk/example/main_driver/PanzerAdaptersSTK_main_driver.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/pull_request_test/packages/panzer/adapters-stk/example/main_driver/PanzerAdaptersSTK_main_driver.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/pull_request_test/packages/panzer/adapters-stk/example/main_driver/PanzerAdaptersSTK_main_driver.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/pull_request_test/packages/panzer/adapters-stk/example/main_driver/PanzerAdaptersSTK_main_driver.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/pull_request_test/packages/panzer/adapters-stk/example/main_driver/PanzerAdaptersSTK_main_driver.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/pull_request_test/packages/panzer/adapters-stk/example/main_driver/PanzerAdaptersSTK_main_driver.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/pull_request_test/packages/panzer/adapters-stk/example/ModelEvaluator/PanzerAdaptersSTK_me_main_driver.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/pull_request_test/packages/panzer/mini-em/example/BlockPrec/PanzerMiniEM_BlockPrec.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/pull_request_test/packages/panzer/mini-em/example/BlockPrec/PanzerMiniEM_BlockPrec.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/pull_request_test/packages/adelus/test/vector_random/Adelus_vector_random.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/pull_request_test/packages/trilinoscouplings/examples/ml/NonlinML/TrilinosCouplings_ml_nox_1Delasticity_example.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/pull_request_test/packages/trilinoscouplings/examples/fenl/TrilinosCouplings_fenl_ensemble.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/pull_request_test/packages/trilinoscouplings/examples/fenl/TrilinosCouplings_fenl_pce.exe
CMake Error at /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/TFW_testing_single_configure_prototype/simple_testing.cmake:218 (message):
  Test failed with error -1

test submit error = 0
File upload submit error = 0

Enabled Packages:
-- Setting Trilinos_ENABLE_ALL_PACKAGES = ON
-- Setting Trilinos_ENABLE_TrilinosBuildStats = 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/TFW_testing_single_configure_prototype
--- OK

--- ctest command:
--- cmd = ctest
-S
simple_testing.cmake
-Dbuild_name=PR-8638-test-Trilinos_pullrequest_gcc_8.3.0-3350
-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/pull_request_test
-Dconfigure_script=/scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/Trilinos/cmake/std/PullRequestLinuxGCC8.3.0TestingSettings.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_gcc_7.2.0_serial # 974 (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: 378K
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: 1300K
    ..................................................  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: 2156K
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_TrilinosBuildStats = 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/ascic144/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_serial/TFW_testing_single_configure_prototype
--- OK

--- ctest command:
--- cmd = ctest
-S
simple_testing.cmake
-Dbuild_name=PR-8638-test-Trilinos_pullrequest_gcc_7.2.0_serial-974
-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/ascic144/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_serial/pull_request_test
-Dconfigure_script=/scratch/trilinos/jenkins/ascic144/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_serial/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 # 1468 (click to expand)

  -G "Ninja"
  /scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_debug/Trilinos
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=ascic158&field2=buildname&compare2=61&value2=PR-8638-test-Trilinos_pullrequest_gcc_7.2.0_debug-1468&field3=buildstamp&compare3=61&value3=20210126-1727-Pull Request
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-8638-test-Trilinos_pullrequest_gcc_7.2.0_debug-1468&field2=buildstamp&compare2=61&value2=20210126-1727-Pull Request
CDash URL3 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&filtercount=2&showfilters=0&filtercombine=and&field1=buildname&compare1=61&value1=PR-8638-test-Trilinos_pullrequest_gcc_7.2.0_debug-1468&field2=buildstamp&compare2=61&value2=20210126-1727-Pull Request
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: 455K
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: 450K
    ..................................................  Size: 499K
    ..................................................  Size: 550K
    ..................................................  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 of output: 1725K
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_TrilinosBuildStats = 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/ascic158/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-8638-test-Trilinos_pullrequest_gcc_7.2.0_debug-1468
-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/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_debug/pull_request_test
-Dconfigure_script=/scratch/trilinos/jenkins/ascic158/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 # 8821 (click to expand)

    ..................................................  Size: 18700K
    ..................................................  Size: 18750K
    ..................................................  Size: 18800K
    ..................................................  Size: 18850K
    ..................................................  Size: 18900K
    ..................................................  Size: 18950K
    ..................................................  Size: 18999K
    ..................................................  Size: 19049K
    ..................................................  Size: 19099K
    ..................................................  Size: 19149K
    ..................................................  Size: 19200K
    ..................................................  Size: 19250K
    ..................................................  Size: 19300K
    ..................................................  Size: 19350K
    ..................................................  Size: 19400K
    ..................................................  Size: 19450K
    ..................................................  Size: 19500K
    ..................................................  Size: 19550K
    ..................................................  Size: 19600K
    ..................................................  Size: 19649K
    ..................................................  Size: 19700K
    ..................................................  Size: 19749K
    ..................................................  Size: 19799K
    ..................................................  Size: 19849K
    ..................................................  Size: 19899K
    ..................................................  Size: 19949K
    ..................................................  Size: 19999K
    ..................................................  Size: 20049K
    ..................................................  Size: 20100K
    ..................................................  Size: 20150K
    ........ Size of output: 20158K
Error(s) when building project
CMake Warning at /scratch/trilinos/jenkins/ascic158/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.
Unable to find required file: /scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/pull_request_test/packages/aztecoo/test/AztecOO/AztecOO_RecursiveIterate.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/pull_request_test/packages/aztecoo/test/AztecOO/AztecOO_RecursiveIterate.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/pull_request_test/packages/aztecoo/test/AztecOO/AztecOO_RecursiveIterate.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/pull_request_test/packages/aztecoo/test/AztecOO/AztecOO_RecursiveIterate2.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/pull_request_test/packages/aztecoo/test/AztecOO_SetParameters/AztecOO_AztecOO_SetParameters.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/pull_request_test/packages/aztecoo/test/AztecOO/AztecOO_AztecOO_test.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/pull_request_test/packages/aztecoo/test/AztecOO_StatusTest/AztecOO_AztecOO_StatusTest.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/pull_request_test/packages/aztecoo/test/GMRES_Tests/AztecOO_GMRES.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/pull_request_test/packages/aztecoo/test/AztecOO_LL/AztecOO_AztecOO_test_LL.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/pull_request_test/packages/aztecoo/test/AztecOO_StatusTest_LL/AztecOO_AztecOO_StatusTest_LL.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/pull_request_test/packages/aztecoo/test/GMRES_Tests_LL/AztecOO_GMRES_LL.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/pull_request_test/packages/aztecoo/example/simple_epetra_aztecoo/AztecOO_epetra_crsmatrix.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/pull_request_test/packages/aztecoo/example/UG_Ex1/AztecOO_UG_Ex1.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/pull_request_test/packages/aztecoo/example/AztecOO_UserOpUserMat/AztecOO_Poisson2d.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/pull_request_test/packages/aztecoo/example/simple_epetra_aztecoo_LL/AztecOO_epetra_crsmatrix_LL.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/pull_request_test/packages/aztecoo/example/UG_Ex1_LL/AztecOO_UG_Ex1_LL.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/pull_request_test/packages/aztecoo/example/AztecOO_UserOpUserMat_LL/AztecOO_Poisson2d_LL.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/pull_request_test/packages/komplex/test/simple/Komplex_simple.exe
CMake Error at /scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/TFW_testing_single_configure_prototype/simple_testing.cmake:218 (message):
Test failed with error -1

test submit error = 0
File upload submit error = 0

Enabled Packages:
-- Setting Trilinos_ENABLE_ALL_PACKAGES = ON
-- Setting Trilinos_ENABLE_TrilinosBuildStats = 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/ascic158/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-8638-test-Trilinos_pullrequest_intel_17.0.1-8821
-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/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/pull_request_test
-Dconfigure_script=/scratch/trilinos/jenkins/ascic158/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 # 297 (click to expand)

    ..................................................  Size: 22599K
    ..................................................  Size: 22650K
    ..................................................  Size: 22700K
    ..................................................  Size: 22750K
    ..................................................  Size: 22800K
    ..................................................  Size: 22850K
    ..................................................  Size: 22899K
    ..................................................  Size: 22949K
    ..................................................  Size: 22999K
    ..................................................  Size: 23049K
    ..................................................  Size: 23099K
    ..................................................  Size: 23149K
    ..................................................  Size: 23199K
    ..................................................  Size: 23249K
    ..................................................  Size: 23300K
    ..................................................  Size: 23350K
    ..................................................  Size: 23400K
    ..................................................  Size: 23450K
    ..................................................  Size: 23500K
    ..................................................  Size: 23550K
    ..................................................  Size: 23599K
    ..................................................  Size: 23649K
    ..................................................  Size: 23700K
    ..................................................  Size: 23750K
    ..................................................  Size: 23799K
    ..................................................  Size: 23849K
    ..................................................  Size: 23899K
    ..................................................  Size: 23949K
    ..................................................  Size: 23999K
    ..................................................  Size: 24050K
    ..................................................  Size: 24100K
    ..................................................  Size: 24150K
    ..................................................  Size: 24200K
    ..................................................  Size: 24249K
    ..................................................  Size: 24299K
    ..................................................  Size: 24349K
    ..................................................  Size: 24400K
    ..................................................  Size: 24450K
    ..................................................  Size: 24500K
    ..................................................  Size: 24549K
    ..................................................  Size: 24600K
    ..................................................  Size: 24650K
    ..................................................  Size: 24699K
    ..................................................  Size: 24749K
    ..................................................  Size: 24799K
    ..................................................  Size: 24849K
    ..................................................  Size: 24899K
    ..................................................  Size: 24949K
    ..................................................  Size: 24999K
    ..................................................  Size: 25049K
    ..................................................  Size: 25099K
    ..................................................  Size: 25149K
    ............... Size of output: 25165K
Build succeeded.
build submit error = 0
Starting testing step.
CMake Error at /home/trilinos/jenkins/ride/workspace/trilinos-folder/Trilinos_pullrequest_cuda_10.1.105/TFW_testing_single_configure_prototype/simple_testing.cmake:218 (message):
  Test failed with error -1

test submit error = 0
File upload submit error = 0

Enabled Packages:
-- Setting Trilinos_ENABLE_ALL_PACKAGES = ON
-- Setting Trilinos_ENABLE_TrilinosBuildStats = 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/TFW_testing_single_configure_prototype
--- OK

--- ctest command:
--- cmd = ctest
-S
simple_testing.cmake
-Dbuild_name=PR-8638-test-Trilinos_pullrequest_cuda_10.1.105-297
-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/pull_request_test
-Dconfigure_script=/home/trilinos/jenkins/ride/workspace/trilinos-folder/Trilinos_pullrequest_cuda_10.1.105/Trilinos/cmake/std/PullRequestLinuxCuda10.1.105TestingSettings.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_clang_10.0.0 # 1663 (click to expand)

Unable to find required file: /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_clang_10.0.0/pull_request_test/packages/epetra/example/my_example_LL/Epetra_my_example_LL.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_clang_10.0.0/pull_request_test/packages/epetra/example/Lessons/Lesson01-Init/Epetra_lesson01_mpi_only_through_Epetra.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_clang_10.0.0/pull_request_test/packages/rtop/test/lapack/RTOp_testLapackWrappers.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_clang_10.0.0/pull_request_test/packages/teuchos/core/test/MemoryManagement/TeuchosCore_testTeuchosTestForTermination.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_clang_10.0.0/pull_request_test/packages/aztecoo/test/GMRES_Tests/AztecOO_GMRES.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_clang_10.0.0/pull_request_test/packages/epetra/example/Lessons/Lesson02-Map-Vector/Epetra_lesson02_read_modify_vec.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_clang_10.0.0/pull_request_test/packages/rtop/test/spmd/RTOp_SPMD_apply_op_UnitTests.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_clang_10.0.0/pull_request_test/packages/epetra/example/Lessons/Lesson02-Map-Vector/Epetra_lesson02_init_map_vec.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_clang_10.0.0/pull_request_test/packages/aztecoo/test/AztecOO_SetParameters/AztecOO_AztecOO_SetParameters.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_clang_10.0.0/pull_request_test/packages/thyra/core/test/operator_vector/ThyraCore_DefaultClusteredSpmdProductVectorSpaceUnitTests.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_clang_10.0.0/pull_request_test/packages/rtop/test/lapack/RTOp_testLapackWrappers.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_clang_10.0.0/pull_request_test/packages/thyra/core/test/operator_vector/ThyraCore_DetachedSpmdVectorViewUnitTests.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_clang_10.0.0/pull_request_test/packages/teuchos/comm/test/Comm/TeuchosComm_DefaultMpiComm_TagTests.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_clang_10.0.0/pull_request_test/packages/rtop/test/lapack/RTOp_testLapackWrappers.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_clang_10.0.0/pull_request_test/packages/thyra/core/test/operator_vector/ThyraCore_SpmdLocalDataAccessUnitTests.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_clang_10.0.0/pull_request_test/packages/teuchos/core/test/MemoryManagement/TeuchosCore_testTeuchosTestForTermination.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_clang_10.0.0/pull_request_test/packages/aztecoo/test/GMRES_Tests_LL/AztecOO_GMRES_LL.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_clang_10.0.0/pull_request_test/packages/teuchos/comm/test/TimeMonitor/TeuchosComm_Issue3868.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_clang_10.0.0/pull_request_test/packages/teuchos/parameterlist/test/FancyOutputting/TeuchosParameterList_FancyOutputting_test.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_clang_10.0.0/pull_request_test/packages/teuchos/comm/test/Comm/TeuchosComm_Issue_1029.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_clang_10.0.0/pull_request_test/packages/thyra/core/test/nonlinear/UnitTests/ThyraCore_DefaultFiniteDifferenceModelEvaluator.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_clang_10.0.0/pull_request_test/packages/teuchos/comm/test/Comm/TeuchosComm_reduce.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_clang_10.0.0/pull_request_test/packages/thyra/core/test/operator_vector/ThyraCore_DefaultSpmdVectorSpaceUnitTests.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_clang_10.0.0/pull_request_test/packages/teuchos/core/test/MemoryManagement/TeuchosCore_testTeuchosTestForTermination.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_clang_10.0.0/pull_request_test/packages/rtop/test/lapack/RTOp_testLapackWrappers.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_clang_10.0.0/pull_request_test/packages/teuchos/comm/test/Comm/TeuchosComm_subcommTestMpi.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_clang_10.0.0/pull_request_test/packages/teuchos/comm/test/Comm/TeuchosComm_waterman_mpi.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_clang_10.0.0/pull_request_test/packages/teuchos/comm/test/StackedTimer/TeuchosComm_stacked_timer4.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_clang_10.0.0/pull_request_test/packages/teuchos/comm/test/Comm/TeuchosComm_waterman_teuchoscomm.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_clang_10.0.0/pull_request_test/packages/teuchos/comm/test/Comm/TeuchosComm_scatter.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_clang_10.0.0/pull_request_test/packages/teuchos/comm/test/Comm/TeuchosComm_subcommTestTeuchosComm.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_clang_10.0.0/pull_request_test/packages/thyra/core/test/operator_vector/ThyraCore_DefaultClusteredSpmdProductVectorSpaceUnitTests.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_clang_10.0.0/pull_request_test/packages/teuchos/comm/test/Comm/TeuchosComm_reduceAllInPlace.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_clang_10.0.0/pull_request_test/packages/teuchos/comm/test/Comm/TeuchosComm_waterman_teuchoscomm.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_clang_10.0.0/pull_request_test/packages/teuchos/remainder/test/LinearSolverSetupFailure/TeuchosRemainder_LinearSolverSetupFailure.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_clang_10.0.0/pull_request_test/packages/teuchos/comm/test/Comm/TeuchosComm_waterman_mpi.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_clang_10.0.0/pull_request_test/packages/sacado/test/UnitTests/Sacado_ViewFactoryTests.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_clang_10.0.0/pull_request_test/packages/zoltan/example/C/Zoltan_simpleGRAPH.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_clang_10.0.0/pull_request_test/packages/teuchos/core/test/TabularOutputter/TeuchosCore_TabularOutputterUnitTests.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_clang_10.0.0/pull_request_test/packages/zoltan/example/C/Zoltan_simplePHG.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_clang_10.0.0/pull_request_test/packages/teuchos/core/test/UnitTest/TeuchosCore_GlobalMPISessionUnitTests.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_clang_10.0.0/pull_request_test/packages/zoltan/example/C/Zoltan_migrateGRAPH.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_clang_10.0.0/pull_request_test/packages/teuchos/remainder/test/SolverFactory/TeuchosRemainder_SolverFactory.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_clang_10.0.0/pull_request_test/packages/teuchos/core/test/Allocator/TeuchosCore_Allocator_atexit.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_clang_10.0.0/pull_request_test/packages/zoltan/example/C/Zoltan_simpleHIER.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_clang_10.0.0/pull_request_test/packages/zoltan/example/C/Zoltan_simpleRCB.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_clang_10.0.0/pull_request_test/packages/zoltan/example/C/Zoltan_simpleBLOCK.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_clang_10.0.0/pull_request_test/packages/zoltan/example/C/Zoltan_problemGRAPH.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_clang_10.0.0/pull_request_test/packages/zoltan/example/CPP/Zoltan_exampleBLOCK.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_clang_10.0.0/pull_request_test/packages/zoltan/test/misc_tests/Zoltan_test_get_callbacks.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_clang_10.0.0/pull_request_test/packages/belos/test/Util/Belos_Aztec_to_Belos_param.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_clang_10.0.0/pull_request_test/packages/thyra/core/test/operator_vector/ThyraCore_test_scalar_product.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_clang_10.0.0/pull_request_test/packages/epetra/example/Lessons/Lesson01-Init/Epetra_lesson01_no_mpi.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_clang_10.0.0/pull_request_test/packages/teuchos/core/example/ExplicitInstantiation/four_files/TeuchosCore_EvilFourFileImplicit.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_clang_10.0.0/pull_request_test/packages/teuchos/core/example/ExplicitInstantiation/four_files/TeuchosCore_EvilFourFileExplicit.exe
Unable to find required file: /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_clang_10.0.0/pull_request_test/packages/ifpack/test/AztecOO/Ifpack_ifp_aztecoo.exe
CMake Error at /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_clang_10.0.0/TFW_testing_single_configure_prototype/simple_testing.cmake:218 (message):
  Test failed with error -1

test submit error = 0
File upload submit error = 0

Enabled Packages:
-- Setting Trilinos_ENABLE_ALL_PACKAGES = ON
-- Setting Trilinos_ENABLE_TrilinosBuildStats = 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/TFW_testing_single_configure_prototype
--- OK

--- ctest command:
--- cmd = ctest
-S
simple_testing.cmake
-Dbuild_name=PR-8638-test-Trilinos_pullrequest_clang_10.0.0-1663
-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/pull_request_test
-Dconfigure_script=/scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_clang_10.0.0/Trilinos/cmake/std/PullRequestLinuxClang10.0.0TestingSettings.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_python_3 # 4376 (click to expand)

--- JOB_OWNER = prwolfe
--- EXECUTOR_NUMBER
--- JOB_COOWNERS = prwolfe,trilinos
--- NODE_LABELS
--- GIT_URL
--- LOGNAME
--- CVS_RSH
--- QTLIB
--- HUDSON_HOME
--- SSH_CONNECTION
--- NODE_NAME
--- MODULESHOME = /usr/share/Modules
--- SEMS_MODULEFILES_ROOT = /projects/sems/modulefiles
--- LESSOPEN
--- JOB_DISPLAY_URL = https://ascic-jenkins.sandia.gov/job/trilinos-folder/job/Trilinos_pullrequest_python_3/display/redirect
--- BUILD_NUMBER = 4376
--- TRILINOS_SOURCE_BRANCH = fixbuild-stats2
--- JOB_COOWNERS_EMAILS = prwolfe@sandia.gov,trilinos@sandia.gov
--- HUDSON_COOKIE
--- ROOT_BUILD_CAUSE_MANUALTRIGGER = true
--- XDG_RUNTIME_DIR
--- NODE_COOWNERS_EMAILS
--- FORCE_CLEAN = false
--- BASH_FUNC_module()
--- _
--- LOADEDMODULES
--- _LMFILES_
--- CC = gcc
--- CXX = g++
--- F77 = gfortran
--- F90 = gfortran
--- FC = gfortran
--- LD_LIBRARY_PATH = /projects/sems/install/rhel7-x86_64/sems/utility/cmake/3.10.3/lib:/projects/sems/install/rhel7-x86_64/sems/utility/git/2.10.1/lib:/projects/sems/install/rhel7-x86_64/atdm/utility/ninja_fortran/1.7.2/lib:/projects/sems/install/rhel7-x86_64/sems/compiler/gcc/7.2.0/base/lib64:/projects/sems/install/rhel7-x86_64/sems/compiler/gcc/7.2.0/base/lib
--- SEMS_COMPILER_NAME = gcc
--- SEMS_COMPILER_ROOT = /projects/sems/install/rhel7-x86_64/sems/compiler/gcc/7.2.0/base
--- SEMS_COMPILER_VERSION = 7.2.0
--- SEMS_GCC_LOCAL_COMPILER_VERSION = 4.8.5
--- SEMS_GCC_LOCAL_PYTHON_VERSION = 2.7.5
--- SEMS_GCC_ROOT = /projects/sems/install/rhel7-x86_64/sems/compiler/gcc/7.2.0/base
--- SERIAL_CC = gcc
--- SERIAL_CXX = g++
--- SERIAL_F77 = gfortran
--- SERIAL_F90 = gfortran
--- SERIAL_FC = gfortran
--- SEMS_NINJA_FORTRAN_LOCAL_COMPILER_VERSION = 4.8.5
--- SEMS_NINJA_FORTRAN_LOCAL_PYTHON_VERSION = 2.7.5
--- SEMS_NINJA_FORTRAN_ROOT = /projects/sems/install/rhel7-x86_64/atdm/utility/ninja_fortran/1.7.2
--- SEMS_NINJA_FORTRAN_VERSION = 1.7.2
--- SEMS_GIT_LOCAL_COMPILER_VERSION = 4.8.5
--- SEMS_GIT_LOCAL_PYTHON_VERSION = 2.7.5
--- SEMS_GIT_ROOT = /projects/sems/install/rhel7-x86_64/sems/utility/git/2.10.1
--- SEMS_GIT_VERSION = 2.10.1
--- SEMS_CMAKE_LOCAL_COMPILER_VERSION = 4.8.5
--- SEMS_CMAKE_LOCAL_PYTHON_VERSION = 2.7.5
--- SEMS_CMAKE_ROOT = /projects/sems/install/rhel7-x86_64/sems/utility/cmake/3.10.3
--- SEMS_CMAKE_VERSION = 3.10.3

+--------------------------------------------------------------------+
| E N V I R O N M E N T S E T U P C O M P L E T E
+--------------------------------------------------------------------+
+--------------------------------------------------------------------+
| G e n e r a t e packageEnables.cmake S T A R T I N G
+--------------------------------------------------------------------+

Enabled Packages:
-- Setting Trilinos_ENABLE_TrilinosFrameworkTests = 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_python_3/TFW_testing_single_configure_prototype
--- OK

--- ctest command:
--- cmd = ctest
-S
simple_testing.cmake
-Dbuild_name=PR-8638-test-Trilinos_pullrequest_python_3-4376
-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_python_3/pull_request_test
-Dconfigure_script=/scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_python_3/Trilinos/cmake/std/PullRequestLinuxPython3.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


CDash Test Results for PR# 8638.


Wiki: How to Reproduce PR Testing Builds and Errors.

@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 Jan 26, 2021
@bartlettroscoe
Copy link
Member

bartlettroscoe commented Jan 26, 2021

I had an Ubuntu machine that I worked on in December and a different one in January. In that time, they removed the symlink from python3 to /usr/bin/python

So on your machine there is no python in the path at all?

In any case, you can fix this for your account by doing:

$ cd ~/
$ mkdir bin/
$ cd bin/
$ mkdir python3-link/
$ cd python3-link/
$ ln -s $(which python3) python

Then when you set up your env just add:

$ export PATH=$HOME/bin/python3-link:$PATH

That is what I am doing to get a python in the path that is actually Python3 on my COE RHEL7 machine using the SEMS modules.

Does that work for you?

@bartlettroscoe
Copy link
Member

@jjellio, I just pushed fca3d22 to see if this fixes the Python errors:

Fatal Python error: Py_Initialize: Unable to get the locale encoding
ModuleNotFoundError: No module named 'encodings'

we are seeing in the PR builds here.

@jjellio
Copy link
Contributor Author

jjellio commented Jan 26, 2021

Ross, I can make python found - the problem is there seems to be ambiguity as to whether 1) python will be guaranteed in the future, and 2) whether python will point to python2 or python3. Ubuntu seems to be saying no python and you should use python3.

I don't really follow this kind of news, so I have no idea what the broader landscape will do. on SNL machines we can fix it, but those things are usually short term (as production machines outside our reach are added).

I fixed all of this by setting -D PYTHON_EXECUTABLE=$(which python3) - that does nothing to fix the problem with how to write the shebang. IMO, the more robust way would be to make the scripts 'configure files' and have the shebang be:

#!@PYTHON_EXECUTABLE@

That opens the door to module problems (loaded X later used Y). I guess the wrapper could add another check

#!@PYTHON_EXECUTABLE@
# or use a better python variable (maybe module path?)
if [[ "$(which $(basename @PYTHON_EXCUTABLE@))" != "@PYTHON_EXCUTABLE@" ]]; then
echo "Mismatch of python likely!"
fi

This is pretty obnoxious

@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: 3357
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS ATDM DevOps;client: ATDM;type: enhancement
PULLREQUESTNUM 8638
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH fixbuild-stats2
TRILINOS_SOURCE_REPO https://github.com/jjellio/Trilinos
TRILINOS_SOURCE_SHA fca3d22
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 2e2b449

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0_serial

  • Build Num: 981
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS ATDM DevOps;client: ATDM;type: enhancement
PULLREQUESTNUM 8638
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH fixbuild-stats2
TRILINOS_SOURCE_REPO https://github.com/jjellio/Trilinos
TRILINOS_SOURCE_SHA fca3d22
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 2e2b449

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0_debug

  • Build Num: 1475
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS ATDM DevOps;client: ATDM;type: enhancement
PULLREQUESTNUM 8638
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH fixbuild-stats2
TRILINOS_SOURCE_REPO https://github.com/jjellio/Trilinos
TRILINOS_SOURCE_SHA fca3d22
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 2e2b449

Build Information

Test Name: Trilinos_pullrequest_intel_17.0.1

  • Build Num: 8828
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS ATDM DevOps;client: ATDM;type: enhancement
PULLREQUESTNUM 8638
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH fixbuild-stats2
TRILINOS_SOURCE_REPO https://github.com/jjellio/Trilinos
TRILINOS_SOURCE_SHA fca3d22
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 2e2b449

Build Information

Test Name: Trilinos_pullrequest_cuda_10.1.105

  • Build Num: 304
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS ATDM DevOps;client: ATDM;type: enhancement
PULLREQUESTNUM 8638
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH fixbuild-stats2
TRILINOS_SOURCE_REPO https://github.com/jjellio/Trilinos
TRILINOS_SOURCE_SHA fca3d22
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 2e2b449

Build Information

Test Name: Trilinos_pullrequest_clang_10.0.0

  • Build Num: 1669
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS ATDM DevOps;client: ATDM;type: enhancement
PULLREQUESTNUM 8638
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH fixbuild-stats2
TRILINOS_SOURCE_REPO https://github.com/jjellio/Trilinos
TRILINOS_SOURCE_SHA fca3d22
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 2e2b449

Build Information

Test Name: Trilinos_pullrequest_python_3

  • Build Num: 4382
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS ATDM DevOps;client: ATDM;type: enhancement
PULLREQUESTNUM 8638
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH fixbuild-stats2
TRILINOS_SOURCE_REPO https://github.com/jjellio/Trilinos
TRILINOS_SOURCE_SHA fca3d22
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 2e2b449

Using Repos:

Repo: TRILINOS (jjellio/Trilinos)
  • Branch: fixbuild-stats2
  • SHA: fca3d22
  • Mode: TEST_REPO

Pull Request Author: jjellio

@bartlettroscoe
Copy link
Member

Ross, I can make python found - the problem is there seems to be ambiguity as to whether 1) python will be guaranteed in the future, and 2) whether python will point to python2 or python3. Ubuntu seems to be saying no python and you should use python3.

As long as we are using RHEL7 at SNL we will always have a 'python' in the path. If we write our Python code to work with Python 2.7 or 3.x, we should be good to go (as long as the envs are not setting PYTHONHOME which seems to be screwing things up at least with the SEMS Python 3 modules.

For now, let's just do what works on SNL systems and the people can hack their env to get it working on other systems (like creating a symlink python pointing to $(which python3)). Here is an interesting conversation about what python should point to (it points to nothing). What a mess.

Perhaps the best thing to do to make the build wrappers explicitly call Python as:

  "@PYTHON_EXECUTABLE@" \
    "@BUILD_STATS_SRC_DIR@/wrapper/magic_wrapper.py" \
    "----base-build-dir=${base_build_dir}" "----op=${cmd}" "$@"

instead of as:

  "@BUILD_STATS_SRC_DIR@/wrapper/magic_wrapper.py" \
    "----base-build-dir=${base_build_dir}" "----op=${cmd}" "$@"

in build_stat_lang_wrapper.sh.in? I think that solves the problem. (No one should ever call magic_wrapper.py manually.)

@bartlettroscoe
Copy link
Member

Sorry, I closed this on accident.

@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: 4767
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;AT: RETEST;ATDM DevOps;client: ATDM;type: enhancement
PULLREQUESTNUM 8638
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH fixbuild-stats2
TRILINOS_SOURCE_REPO https://github.com/jjellio/Trilinos
TRILINOS_SOURCE_SHA 6ba83c3
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 0e8c945

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0_serial

  • Build Num: 2297
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;AT: RETEST;ATDM DevOps;client: ATDM;type: enhancement
PULLREQUESTNUM 8638
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH fixbuild-stats2
TRILINOS_SOURCE_REPO https://github.com/jjellio/Trilinos
TRILINOS_SOURCE_SHA 6ba83c3
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 0e8c945

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0_debug

  • Build Num: 2778
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;AT: RETEST;ATDM DevOps;client: ATDM;type: enhancement
PULLREQUESTNUM 8638
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH fixbuild-stats2
TRILINOS_SOURCE_REPO https://github.com/jjellio/Trilinos
TRILINOS_SOURCE_SHA 6ba83c3
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 0e8c945

Build Information

Test Name: Trilinos_pullrequest_intel_17.0.1

  • Build Num: 10082
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;AT: RETEST;ATDM DevOps;client: ATDM;type: enhancement
PULLREQUESTNUM 8638
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH fixbuild-stats2
TRILINOS_SOURCE_REPO https://github.com/jjellio/Trilinos
TRILINOS_SOURCE_SHA 6ba83c3
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 0e8c945

Build Information

Test Name: Trilinos_pullrequest_cuda_10.1.105

  • Build Num: 1494
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;AT: RETEST;ATDM DevOps;client: ATDM;type: enhancement
PULLREQUESTNUM 8638
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH fixbuild-stats2
TRILINOS_SOURCE_REPO https://github.com/jjellio/Trilinos
TRILINOS_SOURCE_SHA 6ba83c3
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 0e8c945

Build Information

Test Name: Trilinos_pullrequest_cuda_10.1.105_uvm_off

  • Build Num: 491
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;AT: RETEST;ATDM DevOps;client: ATDM;type: enhancement
PULLREQUESTNUM 8638
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH fixbuild-stats2
TRILINOS_SOURCE_REPO https://github.com/jjellio/Trilinos
TRILINOS_SOURCE_SHA 6ba83c3
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 0e8c945

Build Information

Test Name: Trilinos_pullrequest_clang_10.0.0

  • Build Num: 2859
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;AT: RETEST;ATDM DevOps;client: ATDM;type: enhancement
PULLREQUESTNUM 8638
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH fixbuild-stats2
TRILINOS_SOURCE_REPO https://github.com/jjellio/Trilinos
TRILINOS_SOURCE_SHA 6ba83c3
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 0e8c945

Build Information

Test Name: Trilinos_pullrequest_python_3

  • Build Num: 5427
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;AT: RETEST;ATDM DevOps;client: ATDM;type: enhancement
PULLREQUESTNUM 8638
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH fixbuild-stats2
TRILINOS_SOURCE_REPO https://github.com/jjellio/Trilinos
TRILINOS_SOURCE_SHA 6ba83c3
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 0e8c945

Using Repos:

Repo: TRILINOS (jjellio/Trilinos)
  • Branch: fixbuild-stats2
  • SHA: 6ba83c3
  • Mode: TEST_REPO

Pull Request Author: jjellio

@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: 4767
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;AT: RETEST;ATDM DevOps;client: ATDM;type: enhancement
PULLREQUESTNUM 8638
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH fixbuild-stats2
TRILINOS_SOURCE_REPO https://github.com/jjellio/Trilinos
TRILINOS_SOURCE_SHA 6ba83c3
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 0e8c945

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0_serial

  • Build Num: 2297
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;AT: RETEST;ATDM DevOps;client: ATDM;type: enhancement
PULLREQUESTNUM 8638
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH fixbuild-stats2
TRILINOS_SOURCE_REPO https://github.com/jjellio/Trilinos
TRILINOS_SOURCE_SHA 6ba83c3
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 0e8c945

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0_debug

  • Build Num: 2778
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;AT: RETEST;ATDM DevOps;client: ATDM;type: enhancement
PULLREQUESTNUM 8638
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH fixbuild-stats2
TRILINOS_SOURCE_REPO https://github.com/jjellio/Trilinos
TRILINOS_SOURCE_SHA 6ba83c3
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 0e8c945

Build Information

Test Name: Trilinos_pullrequest_intel_17.0.1

  • Build Num: 10082
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;AT: RETEST;ATDM DevOps;client: ATDM;type: enhancement
PULLREQUESTNUM 8638
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH fixbuild-stats2
TRILINOS_SOURCE_REPO https://github.com/jjellio/Trilinos
TRILINOS_SOURCE_SHA 6ba83c3
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 0e8c945

Build Information

Test Name: Trilinos_pullrequest_cuda_10.1.105

  • Build Num: 1494
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;AT: RETEST;ATDM DevOps;client: ATDM;type: enhancement
PULLREQUESTNUM 8638
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH fixbuild-stats2
TRILINOS_SOURCE_REPO https://github.com/jjellio/Trilinos
TRILINOS_SOURCE_SHA 6ba83c3
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 0e8c945

Build Information

Test Name: Trilinos_pullrequest_cuda_10.1.105_uvm_off

  • Build Num: 491
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;AT: RETEST;ATDM DevOps;client: ATDM;type: enhancement
PULLREQUESTNUM 8638
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH fixbuild-stats2
TRILINOS_SOURCE_REPO https://github.com/jjellio/Trilinos
TRILINOS_SOURCE_SHA 6ba83c3
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 0e8c945

Build Information

Test Name: Trilinos_pullrequest_clang_10.0.0

  • Build Num: 2859
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;AT: RETEST;ATDM DevOps;client: ATDM;type: enhancement
PULLREQUESTNUM 8638
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH fixbuild-stats2
TRILINOS_SOURCE_REPO https://github.com/jjellio/Trilinos
TRILINOS_SOURCE_SHA 6ba83c3
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 0e8c945

Build Information

Test Name: Trilinos_pullrequest_python_3

  • Build Num: 5427
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;AT: RETEST;ATDM DevOps;client: ATDM;type: enhancement
PULLREQUESTNUM 8638
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH fixbuild-stats2
TRILINOS_SOURCE_REPO https://github.com/jjellio/Trilinos
TRILINOS_SOURCE_SHA 6ba83c3
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 0e8c945
Console Output (last 100 lines) : Trilinos_pullrequest_gcc_8.3.0 # 4767 (click to expand)

    ..................................................  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: 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: 2939K
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_TrilinosATDMConfigTests = ON
-- Setting Trilinos_ENABLE_TrilinosBuildStats = 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-8638-test-Trilinos_pullrequest_gcc_8.3.0-4767
-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 # 2297 (click to expand)

    ..................................................  Size: 50K
    ..................................................  Size: 100K
    ..................................................  Size: 150K
    ..................................................  Size: 200K
    ..................................................  Size: 250K
    ..................................................  Size: 300K
    ..................................................  Size: 350K
    ................................................. Size of output: 398K
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: 1949K
    ..................................................  Size: 1999K
    ..................................................  Size: 2049K
    ..................................................  Size: 2099K
    ..................................................  Size: 2149K
    ........................................... Size of output: 2192K
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_TrilinosATDMConfigTests = ON
-- Setting Trilinos_ENABLE_TrilinosBuildStats = 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-8638-test-Trilinos_pullrequest_gcc_7.2.0_serial-2297
-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 # 2778 (click to expand)

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=tr-test-4.novalocal&field2=buildname&compare2=61&value2=PR-8638-test-Trilinos_pullrequest_gcc_7.2.0_debug-2778&field3=buildstamp&compare3=61&value3=20210617-1357-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-8638-test-Trilinos_pullrequest_gcc_7.2.0_debug-2778&field2=buildstamp&compare2=61&value2=20210617-1357-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-8638-test-Trilinos_pullrequest_gcc_7.2.0_debug-2778&field2=buildstamp&compare2=61&value2=20210617-1357-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: 478K
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 of output: 1764K
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_TrilinosATDMConfigTests = ON
-- Setting Trilinos_ENABLE_TrilinosBuildStats = 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-8638-test-Trilinos_pullrequest_gcc_7.2.0_debug-2778
-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 # 10082 (click to expand)

B) Get the set of changed files

Current directory: /scratch/trilinos/jenkins/ascic142/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/Trilinos

git diff --name-only origin/develop..HEAD > /scratch/trilinos/jenkins/ascic142/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/changed-files.txt

Wrote file 'changed-files.txt'

Current directory: /scratch/trilinos/jenkins/ascic142/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1

C) Get the unfiltered list of changed Trilinos packages (including 'ALL_PACKAGES')

CHANGED_PACKAGES_FULL_LIST='ALL_PACKAGES,TrilinosATDMConfigTests,TrilinosBuildStats'

D) Filter list of changed packages to get only the PT packages

CHANGED_PACKAGES_ST_LIST='ALL_PACKAGES,TrilinosATDMConfigTests,TrilinosBuildStats'

E) Generate the packageEnables.cmake enables file

Wrote file 'packageEnables.cmake'

F) Generate the package_subproject_list.cmake file

Wrote file 'package_subproject_list.cmake'
Build name = PR-8638-test-Trilinos_pullrequest_intel_17.0.1-10082
Cur dir = /scratch/trilinos/jenkins/ascic142/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/TFW_testing_single_configure_prototype
Source dir = /scratch/trilinos/jenkins/ascic142/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/Trilinos
Binary dir = /scratch/trilinos/jenkins/ascic142/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/pull_request_test
Parallel level = 20
Testing Parallel level = 4
skip_by_parts_submit = OFF
skip_single_submit = ON
skip_update_step = ON
skip_upload_config_files = OFF
skip_clean_build_dir = ON
Subproject count = 61
Dashboard model = Experimental
Dashboard track = Pull Request
Running configuration:
/projects/sems/install/rhel7-x86_64/sems/utility/cmake/3.17.1/bin/cmake
-C "/scratch/trilinos/jenkins/ascic142/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/Trilinos/cmake/std/PullRequestLinuxIntel17.0.1TestingSettings.cmake"
-C "/scratch/trilinos/jenkins/ascic142/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/packageEnables.cmake"
-DTrilinos_ENABLE_TESTS:BOOL=ON
-DTrilinos_PARALLEL_LINK_JOBS_LIMIT:STRING=2
-G "Ninja"
/scratch/trilinos/jenkins/ascic142/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/Trilinos
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=ascic142&field2=buildname&compare2=61&value2=PR-8638-test-Trilinos_pullrequest_intel_17.0.1-10082&field3=buildstamp&compare3=61&value3=20210617-1358-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-8638-test-Trilinos_pullrequest_intel_17.0.1-10082&field2=buildstamp&compare2=61&value2=20210617-1358-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-8638-test-Trilinos_pullrequest_intel_17.0.1-10082&field2=buildstamp&compare2=61&value2=20210617-1358-Pull Request-Experimental
Starting configure step.
Each . represents 1024 bytes of output
.................................................. Size: 50K
.......................... Size of output: 75K
Error(s) when configuring the project
configure submit error = 0
CMake Error at /scratch/trilinos/jenkins/ascic142/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/TFW_testing_single_configure_prototype/simple_testing.cmake:194 (message):
Configure failed with error -1

Enabled Packages:
-- Setting Trilinos_ENABLE_ALL_PACKAGES = ON
-- Setting Trilinos_ENABLE_TrilinosATDMConfigTests = ON
-- Setting Trilinos_ENABLE_TrilinosBuildStats = 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-8638-test-Trilinos_pullrequest_intel_17.0.1-10082
-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 # 1494 (click to expand)

    ..................................................  Size: 36900K
    ..................................................  Size: 36949K
    ..................................................  Size: 37000K
    ..................................................  Size: 37050K
    ..................................................  Size: 37100K
    ..................................................  Size: 37150K
    ..................................................  Size: 37200K
    ..................................................  Size: 37249K
    ..................................................  Size: 37299K
    ..................................................  Size: 37349K
    ..................................................  Size: 37399K
    ..................................................  Size: 37450K
    ..................................................  Size: 37500K
    ..................................................  Size: 37550K
    ..................................................  Size: 37600K
    ..................................................  Size: 37650K
    ..................................................  Size: 37700K
    ..................................................  Size: 37750K
    ..................................................  Size: 37800K
    ..................................................  Size: 37850K
    ..................................................  Size: 37900K
    ..................................................  Size: 37949K
    ..................................................  Size: 37999K
    ..................................................  Size: 38049K
    ..................................................  Size: 38099K
    ..................................................  Size: 38149K
    ..................................................  Size: 38199K
    ..................................................  Size: 38249K
    ..................................................  Size: 38299K
    ..................................................  Size: 38349K
    ..................................................  Size: 38399K
    ..................................................  Size: 38449K
    ..................................................  Size: 38499K
    ..................................................  Size: 38549K
    ..................................................  Size: 38599K
    ..................................................  Size: 38649K
    ..................................................  Size: 38699K
    ..................................................  Size: 38750K
    ..................................................  Size: 38799K
    ..................................................  Size: 38849K
    ..................................................  Size: 38900K
    ..................................................  Size: 38950K
    ..................................................  Size: 38999K
    ..................................................  Size: 39049K
    ..................................................  Size: 39099K
    ..................................................  Size: 39150K
    ..................................................  Size: 39199K
    ..................................................  Size: 39249K
    ..................................................  Size: 39299K
    ..................................................  Size: 39350K
    ..................................................  Size: 39399K
    ..................................................  Size: 39450K
    ..................................................  Size: 39499K
    ..................................................  Size: 39549K
    ..................................................  Size: 39600K
    ....................... Size of output: 39622K
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_TrilinosATDMConfigTests = ON
-- Setting Trilinos_ENABLE_TrilinosBuildStats = 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-8638-test-Trilinos_pullrequest_cuda_10.1.105-1494
-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 # 491 (click to expand)

    ..................................................  Size: 18800K
    ..................................................  Size: 18850K
    ..................................................  Size: 18900K
    ..................................................  Size: 18950K
    ..................................................  Size: 19000K
    ..................................................  Size: 19050K
    ..................................................  Size: 19100K
    ..................................................  Size: 19150K
    ..................................................  Size: 19200K
    ..................................................  Size: 19250K
    ..................................................  Size: 19300K
    ..................................................  Size: 19350K
    ..................................................  Size: 19399K
    ..................................................  Size: 19449K
    ..................................................  Size: 19499K
    ..................................................  Size: 19550K
    ..................................................  Size: 19600K
    ..................................................  Size: 19650K
    ..................................................  Size: 19699K
    ..................................................  Size: 19749K
    ..................................................  Size: 19800K
    ..................................................  Size: 19849K
    ..................................................  Size: 19899K
    ..................................................  Size: 19949K
    ..................................................  Size: 19999K
    ..................................................  Size: 20050K
    ..................................................  Size: 20100K
    ..................................................  Size: 20150K
    ..................................................  Size: 20200K
    ..................................................  Size: 20250K
    ..................................................  Size: 20299K
    ..................................................  Size: 20350K
    ..................................................  Size: 20400K
    ..................................................  Size: 20450K
    ..................................................  Size: 20500K
    ..................................................  Size: 20550K
    ..................................................  Size: 20600K
    ..................................................  Size: 20650K
    ..................................................  Size: 20700K
    ..................................................  Size: 20750K
    ..................................................  Size: 20800K
    ..................................................  Size: 20850K
    ..................................................  Size: 20900K
    ..................................................  Size: 20950K
    ..................................................  Size: 21000K
    ..................................................  Size: 21050K
    ..................................................  Size: 21100K
    ..................................................  Size: 21150K
    ..................................................  Size: 21200K
    ..................................................  Size: 21250K
    ..................................................  Size: 21300K
    ..................................................  Size: 21350K
    ..................................................  Size: 21400K
    ..................................................  Size: 21449K
    ..................................................  Size: 21499K
    ................................................ Size of output: 21548K
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_TrilinosATDMConfigTests = ON
-- Setting Trilinos_ENABLE_TrilinosBuildStats = 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/TFW_testing_single_configure_prototype
--- OK

--- ctest command:
--- cmd = ctest
-S
simple_testing.cmake
-Dbuild_name=PR-8638-test-Trilinos_pullrequest_cuda_10.1.105_uvm_off-491
-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/pull_request_test
-Dconfigure_script=/home/trilinos/jenkins/ride/workspace/trilinos-folder/Trilinos_pullrequest_cuda_10.1.105_uvm_off/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 # 2859 (click to expand)

    ..................................................  Size: 5599K
    ..................................................  Size: 5649K
    ..................................................  Size: 5699K
    ..................................................  Size: 5749K
    ..................................................  Size: 5799K
    ..................................................  Size: 5850K
    ..................................................  Size: 5900K
    ..................................................  Size: 5949K
    ..................................................  Size: 6000K
    ..................................................  Size: 6050K
    ..................................................  Size: 6099K
    ..................................................  Size: 6149K
    ..................................................  Size: 6199K
    ..................................................  Size: 6249K
    ..................................................  Size: 6300K
    ..................................................  Size: 6350K
    ..................................................  Size: 6399K
    ..................................................  Size: 6449K
    ..................................................  Size: 6500K
    ..................................................  Size: 6549K
    ..................................................  Size: 6600K
    ..................................................  Size: 6649K
    ..................................................  Size: 6699K
    ..................................................  Size: 6749K
    ..................................................  Size: 6800K
    ..................................................  Size: 6850K
    ..................................................  Size: 6899K
    ..................................................  Size: 6949K
    ..................................................  Size: 6999K
    ..................................................  Size: 7049K
    ..................................................  Size: 7100K
    ..................................................  Size: 7150K
    ..................................................  Size: 7199K
    ..................................................  Size: 7249K
    ..................................................  Size: 7299K
    ..................................................  Size: 7349K
    ..................................................  Size: 7399K
    ..................................................  Size: 7450K
    ..................................................  Size: 7499K
    ..................................................  Size: 7549K
    ..................................................  Size: 7599K
    ..................................................  Size: 7649K
    ..................................................  Size: 7699K
    ..................................................  Size: 7749K
    ..................................................  Size: 7799K
    ..................................................  Size: 7849K
    ..................................................  Size: 7900K
    ..................................................  Size: 7950K
    ..................................................  Size: 7999K
    ..................................................  Size: 8049K
    ..................................................  Size: 8099K
    ..................................................  Size: 8149K
    ..................................................  Size: 8199K
    ..................................................  Size: 8249K
    ..................................................  Size: 8299K
    ............................................. Size of output: 8345K
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_TrilinosATDMConfigTests = ON
-- Setting Trilinos_ENABLE_TrilinosBuildStats = 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-8638-test-Trilinos_pullrequest_clang_10.0.0-2859
-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) : Trilinos_pullrequest_python_3 # 5427 (click to expand)

--- NODE_LABELS
--- GIT_URL
--- PERL_LOCAL_LIB_ROOT
--- LOGNAME
--- CVS_RSH
--- QTLIB
--- XDG_DATA_DIRS
--- HUDSON_HOME
--- SSH_CONNECTION
--- NODE_NAME
--- MODULESHOME = /usr/share/Modules
--- SEMS_MODULEFILES_ROOT = /projects/sems/modulefiles
--- LESSOPEN
--- JOB_DISPLAY_URL = https://ascic-jenkins.sandia.gov/job/trilinos-folder/job/Trilinos_pullrequest_python_3/display/redirect
--- BUILD_NUMBER = 5427
--- TRILINOS_SOURCE_BRANCH = fixbuild-stats2
--- JOB_COOWNERS_EMAILS = prwolfe@sandia.gov,trilinos@sandia.gov
--- HUDSON_COOKIE
--- ROOT_BUILD_CAUSE_MANUALTRIGGER = true
--- XDG_RUNTIME_DIR
--- NODE_COOWNERS_EMAILS
--- QT_PLUGIN_PATH = /usr/lib64/kde4/plugins:/usr/lib/kde4/plugins
--- PERL_MM_OPT
--- FORCE_CLEAN = false
--- BASH_FUNC_module()
--- _
--- LOADEDMODULES
--- _LMFILES_
--- CC = gcc
--- CXX = g++
--- F77 = gfortran
--- F90 = gfortran
--- FC = gfortran
--- LD_LIBRARY_PATH = /projects/sems/install/rhel7-x86_64/sems/utility/cmake/3.17.1/lib:/projects/sems/install/rhel7-x86_64/sems/utility/git/2.10.1/lib:/projects/sems/install/rhel7-x86_64/atdm/utility/ninja_fortran/1.7.2/lib:/projects/sems/install/rhel7-x86_64/sems/compiler/gcc/7.2.0/base/lib64:/projects/sems/install/rhel7-x86_64/sems/compiler/gcc/7.2.0/base/lib
--- SEMS_COMPILER_NAME = gcc
--- SEMS_COMPILER_ROOT = /projects/sems/install/rhel7-x86_64/sems/compiler/gcc/7.2.0/base
--- SEMS_COMPILER_VERSION = 7.2.0
--- SEMS_GCC_LOCAL_COMPILER_VERSION = 4.8.5
--- SEMS_GCC_LOCAL_PYTHON_VERSION = 2.7.5
--- SEMS_GCC_ROOT = /projects/sems/install/rhel7-x86_64/sems/compiler/gcc/7.2.0/base
--- SERIAL_CC = gcc
--- SERIAL_CXX = g++
--- SERIAL_F77 = gfortran
--- SERIAL_F90 = gfortran
--- SERIAL_FC = gfortran
--- SEMS_NINJA_FORTRAN_LOCAL_COMPILER_VERSION = 4.8.5
--- SEMS_NINJA_FORTRAN_LOCAL_PYTHON_VERSION = 2.7.5
--- SEMS_NINJA_FORTRAN_ROOT = /projects/sems/install/rhel7-x86_64/atdm/utility/ninja_fortran/1.7.2
--- SEMS_NINJA_FORTRAN_VERSION = 1.7.2
--- SEMS_GIT_LOCAL_COMPILER_VERSION = 4.8.5
--- SEMS_GIT_LOCAL_PYTHON_VERSION = 2.7.5
--- SEMS_GIT_ROOT = /projects/sems/install/rhel7-x86_64/sems/utility/git/2.10.1
--- SEMS_GIT_VERSION = 2.10.1
--- SEMS_CMAKE_LOCAL_COMPILER_VERSION = 4.8.5
--- SEMS_CMAKE_LOCAL_PYTHON_VERSION = 2.7.5
--- SEMS_CMAKE_ROOT = /projects/sems/install/rhel7-x86_64/sems/utility/cmake/3.17.1
--- SEMS_CMAKE_VERSION = 3.17.1

+--------------------------------------------------------------------+
| E N V I R O N M E N T S E T U P C O M P L E T E
+--------------------------------------------------------------------+
+--------------------------------------------------------------------+
| G e n e r a t e packageEnables.cmake S T A R T I N G
+--------------------------------------------------------------------+

Enabled Packages:
-- Setting Trilinos_ENABLE_TrilinosFrameworkTests = 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_python_3/TFW_testing_single_configure_prototype
--- OK

--- ctest command:
--- cmd = ctest
-S
simple_testing.cmake
-Dbuild_name=PR-8638-test-Trilinos_pullrequest_python_3-5427
-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_python_3/pull_request_test
-Dconfigure_script=/scratch/trilinos/jenkins/ascic142/workspace/trilinos-folder/Trilinos_pullrequest_python_3/Trilinos/cmake/std/PullRequestLinuxPython3.cmake
-Dpackage_enables=../packageEnables.cmake
-Dsubprojects_file=../package_subproject_list.cmake

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


CDash Test Results for PR# 8638.


Wiki: How to Reproduce PR Testing Builds and Errors.

@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 Jun 17, 2021
@bartlettroscoe bartlettroscoe added the AT: RETEST Causes the PR autotester to run a new round of PR tests on the next iteration label Jun 17, 2021
@trilinos-autotester
Copy link
Contributor

Status Flag 'Pull Request AutoTester' - User Requested Retest - Label AT: RETEST will be reset after testing.

@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: 4784
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;AT: RETEST;ATDM DevOps;client: ATDM;type: enhancement
PULLREQUESTNUM 8638
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH fixbuild-stats2
TRILINOS_SOURCE_REPO https://github.com/jjellio/Trilinos
TRILINOS_SOURCE_SHA 6ba83c3
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 0e8c945

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0_serial

  • Build Num: 2314
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;AT: RETEST;ATDM DevOps;client: ATDM;type: enhancement
PULLREQUESTNUM 8638
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH fixbuild-stats2
TRILINOS_SOURCE_REPO https://github.com/jjellio/Trilinos
TRILINOS_SOURCE_SHA 6ba83c3
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 0e8c945

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0_debug

  • Build Num: 2795
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;AT: RETEST;ATDM DevOps;client: ATDM;type: enhancement
PULLREQUESTNUM 8638
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH fixbuild-stats2
TRILINOS_SOURCE_REPO https://github.com/jjellio/Trilinos
TRILINOS_SOURCE_SHA 6ba83c3
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 0e8c945

Build Information

Test Name: Trilinos_pullrequest_intel_17.0.1

  • Build Num: 10092
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;AT: RETEST;ATDM DevOps;client: ATDM;type: enhancement
PULLREQUESTNUM 8638
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH fixbuild-stats2
TRILINOS_SOURCE_REPO https://github.com/jjellio/Trilinos
TRILINOS_SOURCE_SHA 6ba83c3
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 0e8c945

Build Information

Test Name: Trilinos_pullrequest_cuda_10.1.105

  • Build Num: 1504
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;AT: RETEST;ATDM DevOps;client: ATDM;type: enhancement
PULLREQUESTNUM 8638
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH fixbuild-stats2
TRILINOS_SOURCE_REPO https://github.com/jjellio/Trilinos
TRILINOS_SOURCE_SHA 6ba83c3
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 0e8c945

Build Information

Test Name: Trilinos_pullrequest_cuda_10.1.105_uvm_off

  • Build Num: 501
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;AT: RETEST;ATDM DevOps;client: ATDM;type: enhancement
PULLREQUESTNUM 8638
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH fixbuild-stats2
TRILINOS_SOURCE_REPO https://github.com/jjellio/Trilinos
TRILINOS_SOURCE_SHA 6ba83c3
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 0e8c945

Build Information

Test Name: Trilinos_pullrequest_clang_10.0.0

  • Build Num: 2869
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;AT: RETEST;ATDM DevOps;client: ATDM;type: enhancement
PULLREQUESTNUM 8638
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH fixbuild-stats2
TRILINOS_SOURCE_REPO https://github.com/jjellio/Trilinos
TRILINOS_SOURCE_SHA 6ba83c3
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 0e8c945

Build Information

Test Name: Trilinos_pullrequest_python_3

  • Build Num: 5436
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;AT: RETEST;ATDM DevOps;client: ATDM;type: enhancement
PULLREQUESTNUM 8638
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH fixbuild-stats2
TRILINOS_SOURCE_REPO https://github.com/jjellio/Trilinos
TRILINOS_SOURCE_SHA 6ba83c3
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 0e8c945

Using Repos:

Repo: TRILINOS (jjellio/Trilinos)
  • Branch: fixbuild-stats2
  • SHA: 6ba83c3
  • Mode: TEST_REPO

Pull Request Author: jjellio

@bartlettroscoe
Copy link
Member

CC: @jjellio

At the Trilinos Developers meeting last Tuesday on 6/15/2021, @jwillenbring seemed to give his approval for turning on these build stats wrappers for the PR builds. Therefore, I will leave the commit f7f0ff2 that enables the build stats wrappers in all of the PR builds and allow this PR to merge.

And with PR testing finally working again, I think this thing will merge!

Copy link
Member

@bartlettroscoe bartlettroscoe left a comment

Choose a reason for hiding this comment

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

I think we are safe to merge and allow these build stats wrappers to run in all ATDM Trilinos and PR builds submitting data to CDash.

I approve!

@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: 4784
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;AT: RETEST;ATDM DevOps;client: ATDM;type: enhancement
PULLREQUESTNUM 8638
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH fixbuild-stats2
TRILINOS_SOURCE_REPO https://github.com/jjellio/Trilinos
TRILINOS_SOURCE_SHA 6ba83c3
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 0e8c945

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0_serial

  • Build Num: 2314
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;AT: RETEST;ATDM DevOps;client: ATDM;type: enhancement
PULLREQUESTNUM 8638
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH fixbuild-stats2
TRILINOS_SOURCE_REPO https://github.com/jjellio/Trilinos
TRILINOS_SOURCE_SHA 6ba83c3
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 0e8c945

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0_debug

  • Build Num: 2795
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;AT: RETEST;ATDM DevOps;client: ATDM;type: enhancement
PULLREQUESTNUM 8638
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH fixbuild-stats2
TRILINOS_SOURCE_REPO https://github.com/jjellio/Trilinos
TRILINOS_SOURCE_SHA 6ba83c3
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 0e8c945

Build Information

Test Name: Trilinos_pullrequest_intel_17.0.1

  • Build Num: 10092
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;AT: RETEST;ATDM DevOps;client: ATDM;type: enhancement
PULLREQUESTNUM 8638
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH fixbuild-stats2
TRILINOS_SOURCE_REPO https://github.com/jjellio/Trilinos
TRILINOS_SOURCE_SHA 6ba83c3
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 0e8c945

Build Information

Test Name: Trilinos_pullrequest_cuda_10.1.105

  • Build Num: 1504
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;AT: RETEST;ATDM DevOps;client: ATDM;type: enhancement
PULLREQUESTNUM 8638
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH fixbuild-stats2
TRILINOS_SOURCE_REPO https://github.com/jjellio/Trilinos
TRILINOS_SOURCE_SHA 6ba83c3
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 0e8c945

Build Information

Test Name: Trilinos_pullrequest_cuda_10.1.105_uvm_off

  • Build Num: 501
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;AT: RETEST;ATDM DevOps;client: ATDM;type: enhancement
PULLREQUESTNUM 8638
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH fixbuild-stats2
TRILINOS_SOURCE_REPO https://github.com/jjellio/Trilinos
TRILINOS_SOURCE_SHA 6ba83c3
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 0e8c945

Build Information

Test Name: Trilinos_pullrequest_clang_10.0.0

  • Build Num: 2869
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;AT: RETEST;ATDM DevOps;client: ATDM;type: enhancement
PULLREQUESTNUM 8638
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH fixbuild-stats2
TRILINOS_SOURCE_REPO https://github.com/jjellio/Trilinos
TRILINOS_SOURCE_SHA 6ba83c3
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 0e8c945

Build Information

Test Name: Trilinos_pullrequest_python_3

  • Build Num: 5436
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;AT: RETEST;ATDM DevOps;client: ATDM;type: enhancement
PULLREQUESTNUM 8638
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH fixbuild-stats2
TRILINOS_SOURCE_REPO https://github.com/jjellio/Trilinos
TRILINOS_SOURCE_SHA 6ba83c3
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 0e8c945
Console Output (last 100 lines) : Trilinos_pullrequest_gcc_8.3.0 # 4784 (click to expand)

    ..................................................  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: 1400K
    ..................................................  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: 2938K
Build succeeded.
build submit error = 0
Starting testing step.
CMake Error at /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/TFW_testing_single_configure_prototype/simple_testing.cmake:218 (message):
  Test failed with error -1

test submit error = 0
File upload submit error = 0

Enabled Packages:
-- Setting Trilinos_ENABLE_ALL_PACKAGES = ON
-- Setting Trilinos_ENABLE_TrilinosATDMConfigTests = ON
-- Setting Trilinos_ENABLE_TrilinosBuildStats = 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/TFW_testing_single_configure_prototype
--- OK

--- ctest command:
--- cmd = ctest
-S
simple_testing.cmake
-Dbuild_name=PR-8638-test-Trilinos_pullrequest_gcc_8.3.0-4784
-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/pull_request_test
-Dconfigure_script=/scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/Trilinos/cmake/std/PullRequestLinuxGCC8.3.0TestingSettings.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_gcc_7.2.0_serial # 2314 (click to expand)

    ..................................................  Size: 50K
    ..................................................  Size: 100K
    ..................................................  Size: 150K
    ..................................................  Size: 200K
    ..................................................  Size: 250K
    ..................................................  Size: 300K
    ..................................................  Size: 350K
    ................................................. Size of output: 398K
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: 2192K
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_TrilinosATDMConfigTests = ON
-- Setting Trilinos_ENABLE_TrilinosBuildStats = 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-8638-test-Trilinos_pullrequest_gcc_7.2.0_serial-2314
-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 # 2795 (click to expand)

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=tr-test-4.novalocal&field2=buildname&compare2=61&value2=PR-8638-test-Trilinos_pullrequest_gcc_7.2.0_debug-2795&field3=buildstamp&compare3=61&value3=20210617-2205-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-8638-test-Trilinos_pullrequest_gcc_7.2.0_debug-2795&field2=buildstamp&compare2=61&value2=20210617-2205-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-8638-test-Trilinos_pullrequest_gcc_7.2.0_debug-2795&field2=buildstamp&compare2=61&value2=20210617-2205-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: 478K
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 of output: 1757K
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_TrilinosATDMConfigTests = ON
-- Setting Trilinos_ENABLE_TrilinosBuildStats = 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-8638-test-Trilinos_pullrequest_gcc_7.2.0_debug-2795
-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 # 10092 (click to expand)

    ..................................................  Size: 21550K
    ..................................................  Size: 21599K
    ..................................................  Size: 21649K
    ..................................................  Size: 21700K
    ..................................................  Size: 21750K
    ..................................................  Size: 21800K
    ..................................................  Size: 21850K
    ..................................................  Size: 21899K
    ..................................................  Size: 21949K
    ..................................................  Size: 21999K
    ..................................................  Size: 22049K
    ..................................................  Size: 22099K
    ..................................................  Size: 22149K
    ..................................................  Size: 22199K
    ..................................................  Size: 22249K
    ..................................................  Size: 22299K
    ..................................................  Size: 22349K
    ..................................................  Size: 22400K
    ..................................................  Size: 22450K
    ..................................................  Size: 22500K
    ..................................................  Size: 22550K
    ..................................................  Size: 22600K
    ..................................................  Size: 22649K
    ..................................................  Size: 22699K
    ..................................................  Size: 22749K
    ..................................................  Size: 22799K
    ..................................................  Size: 22849K
    ..................................................  Size: 22899K
    ..................................................  Size: 22950K
    ..................................................  Size: 23000K
    ..................................................  Size: 23050K
    ..................................................  Size: 23100K
    ..................................................  Size: 23150K
    ..................................................  Size: 23200K
    ..................................................  Size: 23250K
    ..................................................  Size: 23300K
    ..................................................  Size: 23350K
    ..................................................  Size: 23400K
    ..................................................  Size: 23450K
    ..................................................  Size: 23500K
    ..................................................  Size: 23550K
    ..................................................  Size: 23600K
    ..................................................  Size: 23650K
    ..................................................  Size: 23700K
    ..................................................  Size: 23750K
    ..................................................  Size: 23800K
    ..................................................  Size: 23849K
    ..................................................  Size: 23899K
    ..................................................  Size: 23949K
    ..................................................  Size: 24000K
    ..................................................  Size: 24049K
    ..................................................  Size: 24099K
    ..................................................  Size: 24149K
    ..................................................  Size: 24199K
    ..................................................  Size: 24249K
    .................... Size of output: 24270K
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_TrilinosATDMConfigTests = ON
-- Setting Trilinos_ENABLE_TrilinosBuildStats = 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/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1@2/TFW_testing_single_configure_prototype
--- OK

--- ctest command:
--- cmd = ctest
-S
simple_testing.cmake
-Dbuild_name=PR-8638-test-Trilinos_pullrequest_intel_17.0.1-10092
-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/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1@2/pull_request_test
-Dconfigure_script=/scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1@2/Trilinos/cmake/std/PullRequestLinuxIntel17.0.1TestingSettings.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 # 1504 (click to expand)

    ..................................................  Size: 16099K
    ..................................................  Size: 16149K
    ..................................................  Size: 16199K
    ..................................................  Size: 16249K
    ..................................................  Size: 16300K
    ..................................................  Size: 16349K
    ..................................................  Size: 16399K
    ..................................................  Size: 16449K
    ..................................................  Size: 16499K
    ..................................................  Size: 16549K
    ..................................................  Size: 16599K
    ..................................................  Size: 16650K
    ..................................................  Size: 16700K
    ..................................................  Size: 16749K
    ..................................................  Size: 16799K
    ..................................................  Size: 16849K
    ..................................................  Size: 16899K
    ..................................................  Size: 16949K
    ..................................................  Size: 17000K
    ..................................................  Size: 17050K
    ..................................................  Size: 17100K
    ..................................................  Size: 17150K
    ..................................................  Size: 17200K
    ..................................................  Size: 17250K
    ..................................................  Size: 17300K
    ..................................................  Size: 17350K
    ..................................................  Size: 17399K
    ..................................................  Size: 17449K
    ..................................................  Size: 17499K
    ..................................................  Size: 17549K
    ..................................................  Size: 17600K
    ..................................................  Size: 17650K
    ..................................................  Size: 17700K
    ..................................................  Size: 17750K
    ..................................................  Size: 17800K
    ..................................................  Size: 17849K
    ..................................................  Size: 17899K
    ..................................................  Size: 17949K
    ..................................................  Size: 17999K
    ..................................................  Size: 18050K
    ..................................................  Size: 18100K
    ..................................................  Size: 18150K
    ..................................................  Size: 18200K
    ..................................................  Size: 18249K
    ..................................................  Size: 18299K
    ..................................................  Size: 18349K
    ..................................................  Size: 18399K
    ..................................................  Size: 18450K
    ..................................................  Size: 18500K
    ..................................................  Size: 18549K
    ..................................................  Size: 18600K
    ..................................................  Size: 18650K
    ..................................................  Size: 18699K
    ..................................................  Size: 18750K
    ..................................................  Size: 18799K
    ......................................... Size of output: 18841K
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_TrilinosATDMConfigTests = ON
-- Setting Trilinos_ENABLE_TrilinosBuildStats = 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-8638-test-Trilinos_pullrequest_cuda_10.1.105-1504
-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 # 501 (click to expand)

    ..................................................  Size: 18699K
    ..................................................  Size: 18750K
    ..................................................  Size: 18800K
    ..................................................  Size: 18850K
    ..................................................  Size: 18900K
    ..................................................  Size: 18950K
    ..................................................  Size: 19000K
    ..................................................  Size: 19050K
    ..................................................  Size: 19100K
    ..................................................  Size: 19150K
    ..................................................  Size: 19200K
    ..................................................  Size: 19250K
    ..................................................  Size: 19300K
    ..................................................  Size: 19350K
    ..................................................  Size: 19400K
    ..................................................  Size: 19450K
    ..................................................  Size: 19499K
    ..................................................  Size: 19549K
    ..................................................  Size: 19599K
    ..................................................  Size: 19649K
    ..................................................  Size: 19699K
    ..................................................  Size: 19749K
    ..................................................  Size: 19799K
    ..................................................  Size: 19849K
    ..................................................  Size: 19899K
    ..................................................  Size: 19950K
    ..................................................  Size: 20000K
    ..................................................  Size: 20050K
    ..................................................  Size: 20100K
    ..................................................  Size: 20149K
    ..................................................  Size: 20199K
    ..................................................  Size: 20249K
    ..................................................  Size: 20299K
    ..................................................  Size: 20349K
    ..................................................  Size: 20400K
    ..................................................  Size: 20450K
    ..................................................  Size: 20500K
    ..................................................  Size: 20550K
    ..................................................  Size: 20600K
    ..................................................  Size: 20650K
    ..................................................  Size: 20700K
    ..................................................  Size: 20750K
    ..................................................  Size: 20800K
    ..................................................  Size: 20849K
    ..................................................  Size: 20899K
    ..................................................  Size: 20949K
    ..................................................  Size: 20999K
    ..................................................  Size: 21049K
    ..................................................  Size: 21099K
    ..................................................  Size: 21150K
    ..................................................  Size: 21199K
    ..................................................  Size: 21249K
    ..................................................  Size: 21299K
    ..................................................  Size: 21349K
    ..................................................  Size: 21399K
    ......... Size of output: 21408K
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_TrilinosATDMConfigTests = ON
-- Setting Trilinos_ENABLE_TrilinosBuildStats = 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/TFW_testing_single_configure_prototype
--- OK

--- ctest command:
--- cmd = ctest
-S
simple_testing.cmake
-Dbuild_name=PR-8638-test-Trilinos_pullrequest_cuda_10.1.105_uvm_off-501
-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/pull_request_test
-Dconfigure_script=/home/trilinos/jenkins/ride/workspace/trilinos-folder/Trilinos_pullrequest_cuda_10.1.105_uvm_off/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 # 2869 (click to expand)

    ..................................................  Size: 5749K
    ..................................................  Size: 5800K
    ..................................................  Size: 5849K
    ..................................................  Size: 5900K
    ..................................................  Size: 5949K
    ..................................................  Size: 6000K
    ..................................................  Size: 6049K
    ..................................................  Size: 6100K
    ..................................................  Size: 6150K
    ..................................................  Size: 6199K
    ..................................................  Size: 6250K
    ..................................................  Size: 6299K
    ..................................................  Size: 6350K
    ..................................................  Size: 6399K
    ..................................................  Size: 6450K
    ..................................................  Size: 6499K
    ..................................................  Size: 6549K
    ..................................................  Size: 6599K
    ..................................................  Size: 6650K
    ..................................................  Size: 6700K
    ..................................................  Size: 6750K
    ..................................................  Size: 6799K
    ..................................................  Size: 6849K
    ..................................................  Size: 6900K
    ..................................................  Size: 6950K
    ..................................................  Size: 7000K
    ..................................................  Size: 7049K
    ..................................................  Size: 7099K
    ..................................................  Size: 7149K
    ..................................................  Size: 7199K
    ..................................................  Size: 7249K
    ..................................................  Size: 7299K
    ..................................................  Size: 7349K
    ..................................................  Size: 7400K
    ..................................................  Size: 7449K
    ..................................................  Size: 7499K
    ..................................................  Size: 7550K
    ..................................................  Size: 7600K
    ..................................................  Size: 7650K
    ..................................................  Size: 7700K
    ..................................................  Size: 7749K
    ..................................................  Size: 7799K
    ..................................................  Size: 7849K
    ..................................................  Size: 7899K
    ..................................................  Size: 7949K
    ..................................................  Size: 7999K
    ..................................................  Size: 8049K
    ..................................................  Size: 8099K
    ..................................................  Size: 8149K
    ..................................................  Size: 8199K
    ..................................................  Size: 8249K
    .................................... Size of output: 8285K
Build succeeded.
build submit error = 0
Starting testing step.
CMake Error at /scratch/trilinos/jenkins/tr-test-9/workspace/trilinos-folder/Trilinos_pullrequest_clang_10.0.0/TFW_testing_single_configure_prototype/simple_testing.cmake:218 (message):
  Test failed with error -1

test submit error = 0
File upload submit error = 0

Enabled Packages:
-- Setting Trilinos_ENABLE_ALL_PACKAGES = ON
-- Setting Trilinos_ENABLE_TrilinosATDMConfigTests = ON
-- Setting Trilinos_ENABLE_TrilinosBuildStats = 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-9/workspace/trilinos-folder/Trilinos_pullrequest_clang_10.0.0/TFW_testing_single_configure_prototype
--- OK

--- ctest command:
--- cmd = ctest
-S
simple_testing.cmake
-Dbuild_name=PR-8638-test-Trilinos_pullrequest_clang_10.0.0-2869
-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-9/workspace/trilinos-folder/Trilinos_pullrequest_clang_10.0.0/pull_request_test
-Dconfigure_script=/scratch/trilinos/jenkins/tr-test-9/workspace/trilinos-folder/Trilinos_pullrequest_clang_10.0.0/Trilinos/cmake/std/PullRequestLinuxClang10.0.0TestingSettings.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_python_3 # 5436 (click to expand)

--- NODE_LABELS
--- GIT_URL
--- PERL_LOCAL_LIB_ROOT
--- LOGNAME
--- CVS_RSH
--- QTLIB
--- XDG_DATA_DIRS
--- HUDSON_HOME
--- SSH_CONNECTION
--- NODE_NAME
--- MODULESHOME = /usr/share/Modules
--- SEMS_MODULEFILES_ROOT = /projects/sems/modulefiles
--- LESSOPEN
--- JOB_DISPLAY_URL = https://ascic-jenkins.sandia.gov/job/trilinos-folder/job/Trilinos_pullrequest_python_3/display/redirect
--- BUILD_NUMBER = 5436
--- TRILINOS_SOURCE_BRANCH = fixbuild-stats2
--- JOB_COOWNERS_EMAILS = prwolfe@sandia.gov,trilinos@sandia.gov
--- HUDSON_COOKIE
--- ROOT_BUILD_CAUSE_MANUALTRIGGER = true
--- XDG_RUNTIME_DIR
--- NODE_COOWNERS_EMAILS
--- QT_PLUGIN_PATH = /usr/lib64/kde4/plugins:/usr/lib/kde4/plugins
--- PERL_MM_OPT
--- FORCE_CLEAN = false
--- BASH_FUNC_module()
--- _
--- LOADEDMODULES
--- _LMFILES_
--- CC = gcc
--- CXX = g++
--- F77 = gfortran
--- F90 = gfortran
--- FC = gfortran
--- LD_LIBRARY_PATH = /projects/sems/install/rhel7-x86_64/sems/utility/cmake/3.17.1/lib:/projects/sems/install/rhel7-x86_64/sems/utility/git/2.10.1/lib:/projects/sems/install/rhel7-x86_64/atdm/utility/ninja_fortran/1.7.2/lib:/projects/sems/install/rhel7-x86_64/sems/compiler/gcc/7.2.0/base/lib64:/projects/sems/install/rhel7-x86_64/sems/compiler/gcc/7.2.0/base/lib
--- SEMS_COMPILER_NAME = gcc
--- SEMS_COMPILER_ROOT = /projects/sems/install/rhel7-x86_64/sems/compiler/gcc/7.2.0/base
--- SEMS_COMPILER_VERSION = 7.2.0
--- SEMS_GCC_LOCAL_COMPILER_VERSION = 4.8.5
--- SEMS_GCC_LOCAL_PYTHON_VERSION = 2.7.5
--- SEMS_GCC_ROOT = /projects/sems/install/rhel7-x86_64/sems/compiler/gcc/7.2.0/base
--- SERIAL_CC = gcc
--- SERIAL_CXX = g++
--- SERIAL_F77 = gfortran
--- SERIAL_F90 = gfortran
--- SERIAL_FC = gfortran
--- SEMS_NINJA_FORTRAN_LOCAL_COMPILER_VERSION = 4.8.5
--- SEMS_NINJA_FORTRAN_LOCAL_PYTHON_VERSION = 2.7.5
--- SEMS_NINJA_FORTRAN_ROOT = /projects/sems/install/rhel7-x86_64/atdm/utility/ninja_fortran/1.7.2
--- SEMS_NINJA_FORTRAN_VERSION = 1.7.2
--- SEMS_GIT_LOCAL_COMPILER_VERSION = 4.8.5
--- SEMS_GIT_LOCAL_PYTHON_VERSION = 2.7.5
--- SEMS_GIT_ROOT = /projects/sems/install/rhel7-x86_64/sems/utility/git/2.10.1
--- SEMS_GIT_VERSION = 2.10.1
--- SEMS_CMAKE_LOCAL_COMPILER_VERSION = 4.8.5
--- SEMS_CMAKE_LOCAL_PYTHON_VERSION = 2.7.5
--- SEMS_CMAKE_ROOT = /projects/sems/install/rhel7-x86_64/sems/utility/cmake/3.17.1
--- SEMS_CMAKE_VERSION = 3.17.1

+--------------------------------------------------------------------+
| E N V I R O N M E N T S E T U P C O M P L E T E
+--------------------------------------------------------------------+
+--------------------------------------------------------------------+
| G e n e r a t e packageEnables.cmake S T A R T I N G
+--------------------------------------------------------------------+

Enabled Packages:
-- Setting Trilinos_ENABLE_TrilinosFrameworkTests = 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_python_3/TFW_testing_single_configure_prototype
--- OK

--- ctest command:
--- cmd = ctest
-S
simple_testing.cmake
-Dbuild_name=PR-8638-test-Trilinos_pullrequest_python_3-5436
-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_python_3/pull_request_test
-Dconfigure_script=/scratch/trilinos/jenkins/ascic142/workspace/trilinos-folder/Trilinos_pullrequest_python_3/Trilinos/cmake/std/PullRequestLinuxPython3.cmake
-Dpackage_enables=../packageEnables.cmake
-Dsubprojects_file=../package_subproject_list.cmake

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


CDash Test Results for PR# 8638.


Wiki: How to Reproduce PR Testing Builds and Errors.

@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 Jun 18, 2021
@bartlettroscoe bartlettroscoe added the AT: RETEST Causes the PR autotester to run a new round of PR tests on the next iteration label Jun 18, 2021
@bartlettroscoe
Copy link
Member

bartlettroscoe commented Jun 18, 2021

FYI: Looks like we have some new randomly failing tests in Trilinos breaking the PR builds (see #9306, #9307) :-( I set AT: RESTEST to try this again. (Let's see what the new auto-tester does. Will it rerun all of the builds from scratch?)

@trilinos-autotester
Copy link
Contributor

Status Flag 'Pull Request AutoTester' - User Requested Retest - Label AT: RETEST will be reset after testing.

@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: 4795
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;AT: RETEST;ATDM DevOps;client: ATDM;type: enhancement
PULLREQUESTNUM 8638
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH fixbuild-stats2
TRILINOS_SOURCE_REPO https://github.com/jjellio/Trilinos
TRILINOS_SOURCE_SHA 6ba83c3
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 0e8c945

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0_serial

  • Build Num: 2325
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;AT: RETEST;ATDM DevOps;client: ATDM;type: enhancement
PULLREQUESTNUM 8638
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH fixbuild-stats2
TRILINOS_SOURCE_REPO https://github.com/jjellio/Trilinos
TRILINOS_SOURCE_SHA 6ba83c3
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 0e8c945

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0_debug

  • Build Num: 2806
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;AT: RETEST;ATDM DevOps;client: ATDM;type: enhancement
PULLREQUESTNUM 8638
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH fixbuild-stats2
TRILINOS_SOURCE_REPO https://github.com/jjellio/Trilinos
TRILINOS_SOURCE_SHA 6ba83c3
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 0e8c945

Build Information

Test Name: Trilinos_pullrequest_intel_17.0.1

  • Build Num: 10100
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;AT: RETEST;ATDM DevOps;client: ATDM;type: enhancement
PULLREQUESTNUM 8638
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH fixbuild-stats2
TRILINOS_SOURCE_REPO https://github.com/jjellio/Trilinos
TRILINOS_SOURCE_SHA 6ba83c3
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 0e8c945

Build Information

Test Name: Trilinos_pullrequest_cuda_10.1.105

  • Build Num: 1512
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;AT: RETEST;ATDM DevOps;client: ATDM;type: enhancement
PULLREQUESTNUM 8638
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH fixbuild-stats2
TRILINOS_SOURCE_REPO https://github.com/jjellio/Trilinos
TRILINOS_SOURCE_SHA 6ba83c3
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 0e8c945

Build Information

Test Name: Trilinos_pullrequest_cuda_10.1.105_uvm_off

  • Build Num: 509
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;AT: RETEST;ATDM DevOps;client: ATDM;type: enhancement
PULLREQUESTNUM 8638
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH fixbuild-stats2
TRILINOS_SOURCE_REPO https://github.com/jjellio/Trilinos
TRILINOS_SOURCE_SHA 6ba83c3
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 0e8c945

Build Information

Test Name: Trilinos_pullrequest_clang_10.0.0

  • Build Num: 2877
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;AT: RETEST;ATDM DevOps;client: ATDM;type: enhancement
PULLREQUESTNUM 8638
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH fixbuild-stats2
TRILINOS_SOURCE_REPO https://github.com/jjellio/Trilinos
TRILINOS_SOURCE_SHA 6ba83c3
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 0e8c945

Build Information

Test Name: Trilinos_pullrequest_python_3

  • Build Num: 5444
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;AT: RETEST;ATDM DevOps;client: ATDM;type: enhancement
PULLREQUESTNUM 8638
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH fixbuild-stats2
TRILINOS_SOURCE_REPO https://github.com/jjellio/Trilinos
TRILINOS_SOURCE_SHA 6ba83c3
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 0e8c945

Using Repos:

Repo: TRILINOS (jjellio/Trilinos)
  • Branch: fixbuild-stats2
  • SHA: 6ba83c3
  • Mode: TEST_REPO

Pull Request Author: jjellio

@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: 4795
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;AT: RETEST;ATDM DevOps;client: ATDM;type: enhancement
PULLREQUESTNUM 8638
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH fixbuild-stats2
TRILINOS_SOURCE_REPO https://github.com/jjellio/Trilinos
TRILINOS_SOURCE_SHA 6ba83c3
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 0e8c945

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0_serial

  • Build Num: 2325
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;AT: RETEST;ATDM DevOps;client: ATDM;type: enhancement
PULLREQUESTNUM 8638
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH fixbuild-stats2
TRILINOS_SOURCE_REPO https://github.com/jjellio/Trilinos
TRILINOS_SOURCE_SHA 6ba83c3
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 0e8c945

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0_debug

  • Build Num: 2806
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;AT: RETEST;ATDM DevOps;client: ATDM;type: enhancement
PULLREQUESTNUM 8638
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH fixbuild-stats2
TRILINOS_SOURCE_REPO https://github.com/jjellio/Trilinos
TRILINOS_SOURCE_SHA 6ba83c3
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 0e8c945

Build Information

Test Name: Trilinos_pullrequest_intel_17.0.1

  • Build Num: 10100
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;AT: RETEST;ATDM DevOps;client: ATDM;type: enhancement
PULLREQUESTNUM 8638
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH fixbuild-stats2
TRILINOS_SOURCE_REPO https://github.com/jjellio/Trilinos
TRILINOS_SOURCE_SHA 6ba83c3
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 0e8c945

Build Information

Test Name: Trilinos_pullrequest_cuda_10.1.105

  • Build Num: 1512
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;AT: RETEST;ATDM DevOps;client: ATDM;type: enhancement
PULLREQUESTNUM 8638
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH fixbuild-stats2
TRILINOS_SOURCE_REPO https://github.com/jjellio/Trilinos
TRILINOS_SOURCE_SHA 6ba83c3
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 0e8c945

Build Information

Test Name: Trilinos_pullrequest_cuda_10.1.105_uvm_off

  • Build Num: 509
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;AT: RETEST;ATDM DevOps;client: ATDM;type: enhancement
PULLREQUESTNUM 8638
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH fixbuild-stats2
TRILINOS_SOURCE_REPO https://github.com/jjellio/Trilinos
TRILINOS_SOURCE_SHA 6ba83c3
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 0e8c945

Build Information

Test Name: Trilinos_pullrequest_clang_10.0.0

  • Build Num: 2877
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;AT: RETEST;ATDM DevOps;client: ATDM;type: enhancement
PULLREQUESTNUM 8638
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH fixbuild-stats2
TRILINOS_SOURCE_REPO https://github.com/jjellio/Trilinos
TRILINOS_SOURCE_SHA 6ba83c3
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 0e8c945

Build Information

Test Name: Trilinos_pullrequest_python_3

  • Build Num: 5444
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;AT: RETEST;ATDM DevOps;client: ATDM;type: enhancement
PULLREQUESTNUM 8638
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH fixbuild-stats2
TRILINOS_SOURCE_REPO https://github.com/jjellio/Trilinos
TRILINOS_SOURCE_SHA 6ba83c3
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 0e8c945


CDash Test Results for PR# 8638.

@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 Jun 18, 2021
@trilinos-autotester
Copy link
Contributor

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

@trilinos-autotester
Copy link
Contributor

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

@trilinos-autotester trilinos-autotester merged commit c278dd4 into trilinos:develop Jun 18, 2021
@trilinos-autotester
Copy link
Contributor

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
ATDM DevOps Issues that will be worked by the Coordinated ATDM DevOps teams client: ATDM Any issue primarily impacting the ATDM project type: enhancement Issue is an enhancement, not a bug
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants