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

Build stats compiler wrappers and summary (#7376, CDOFA-119) #7508

Merged
merged 47 commits into from
Dec 10, 2020

Conversation

bartlettroscoe
Copy link
Member

@bartlettroscoe bartlettroscoe commented Jun 9, 2020

This adds basic build wrappers to generate build stats as a byproduct of building and then gathers them up and posts them to CDash (#7376.)

This creates a new TriBITS package called TrilinosBuildStats and its only purpose is to provide a way to gather build status, summarize the results, and have them posted to CDash.

Tasks

  • Create module Trilinos/commonTools/build_stats/BuildStatsWrappers.cmake that will create build_stat_c_wrapper.sh, build_stat_cxx_wrapper.sh, and build_stat_fortran.wrapper.sh (if Fortarn is supported) from the template file build_stat_lang_wrapper.sh.in:
    • Add env var and CMake cache var Trilinos_USE_BUILD_PERF_WRAPPERS to turn on generation and usage of build wrappers [Done]
    • Use and then force-set the CMake cache vars CMAKE_<LANG>_COMPILER (and set cache vars CMAKE_<LANG>_COMPILER_ORIG and make sure that CMAKE_<LANG>_COMPILER_ORIG is empty in the cache before you do thsi or re-configures will be broken) [Done]
    • Call CMake functions in BuildStatWrappers.cmake from Trilinos/cmake/CallbackSetupExtraOptions.cmake to generate the build wrappers and set CMAKE_<LANG>_COMPILER[_ORIG] vars [Done]
  • Create simple shell script Trilinos/commonTools/build_stats/gather-build-stats.sh' that gets copied into <build-dir>/gather-build-stats.sh that generates the 'build_status.csv' as per https://sems-atlassian-srn.sandia.gov/browse/CDOFA-119?focusedCommentId=58261&page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#comment-58261 [Done]
  • Create a new package TrilinosBuildStats under Trilinos/commonTools/build_stats/ will run 'gather-build-stats.sh' and then attach it as a file to the single test 'TrilinosBuildStats_Results' [Done]
  • Create simple Python tool summarize_build_stats.py and add that to the TrilinosBuildStats_Results test [Done]
  • Test configure, build, and test with just setting env var Trilinos_USE_BUILD_PERF_WRAPPERS_DEFAULT [Done]
  • Install the build_stat_<lang>_wrapper.sh and 'gather-build-stats.sh' scripts under <prefix>/bin/ [Done]
  • Post an SNL Kitware Issue for problems posting and accessing attached files to tests ... https://gitlab.kitware.com/snl/project-1/-/issues/148 [Done]
  • Create a custom target 'gather-build-stats' that will automatically run as the last target in part of the default 'all' target and will call 'gather-build-stats.sh'.
  • Create a tool summarize_build_stats.py that will be called by the TrilinosBuildStats_Results test and will give basic build stats for all of Trilinos and for each package.
  • Turn on build stats in Trilinos PR builds so that we can see that on CDash.
  • Enable and try out with several ATDM Trilinos envs.
  • Write beginning of documentation.
  • Clean up and rebase branch '7376-build-stats', merge in updated 'tribits_github_snapshot'.
  • Merge to 'atdm-nightly-manual-updates' to get testing in ATDM Trilinos builds.
  • Disable build stats in several ATDM Trilinos builds:
    • intel builds on 'cee-rhel6'
    • intel on 'cts1'
    • intel builds on 'ats1'
  • Disable build stats in the 'intel_17.0.1' PR build
  • Make magic_wrapper.py propagate the return code from the inner build command.
  • Make sure that CTestCustom.cmake is getting created in the ctest -S build directory before calling CTEST_READ_CUSTOM_FILES() and check this on 'vortex' (where the test results are getting clipped at 1024 bytes) ...
  • Extend tool summarize_build_stats.py to include stats for each Trilinos package (can just bin by <pkg_dir> matching packages/<pkg_dir>/ for now using --bin-by-subdirs-under=<dir1>,<dir2>,... and then use --bin-by-subdirs-under=commonTools,packages for Trilinos) ...
  • Set up PR for final testing and merging.
  • Fix bug related to './' at the beginning of 'FileName' field.
  • Address failures in PR builds related to build wrappers ... Can't reproduce them locally ... After I figure out that the wrong Python is being used (see Can't reproduce non-CUDA PR builds on SNL COE RHEL7 machines with just the SEMS modules #8429) I was able to reproduce errors.
  • Fix errors in build stats wrapper script and in summarize_build_stats.py for Python 3.6+
  • Implement option <Project>_REMOVE_BUILD_STATS_TIMING_FILES_ON_FRESH_CONFIGURE with a default to 'OFF' that will remove *.timing files on fresh configure and set to ON in PR builds that will remove corrupted *timing file(s) in the 'cuda_9.2' build.
  • Watch the PR builds to see if the 'cuda_9.2' build is now passing for the TrilinosBuildStats_Results test.
  • Turn off the build stats compiler wrappers in all PR builds to be safe for now to allow this PR to get merged faster.
  • Wait for another round of passing PR builds.
  • Get someone to review and approve to 'develop'. (Since this is only turned on in the ATDM Trilinos builds, this should be very safe to do.)

Other tasks can be accomplished in follow-on PRs (see #7376).

@bartlettroscoe bartlettroscoe added type: enhancement Issue is an enhancement, not a bug client: ATDM Any issue primarily impacting the ATDM project ATDM DevOps Issues that will be worked by the Coordinated ATDM DevOps teams labels Jun 9, 2020
@bartlettroscoe bartlettroscoe requested a review from jjellio June 9, 2020 23:26
@bartlettroscoe bartlettroscoe self-assigned this Jun 9, 2020
@bartlettroscoe
Copy link
Member Author

Below are some of the testing details so far.

Details for work on 6/9/2020: (click to expand)

Testing this out with:

$ cd /home/rabartl/Trilinos.base/BUILDS/ATDM/SEMS-RHEL6/CHECKIN/

$ ./checkin-test-atdm.sh gnu-openmp-shared-dbg-pt \
  --enable-packages=TeuchosCore --configure

$ cd gnu-openmp-shared-dbg-pt/

$ . load-env.sh 
Hostname 'crf450.srn.sandia.gov' matches known ATDM host 'crf450.srn.sandia.gov' and system 'sems-rhel6'
Setting compiler and build options for build-name 'gnu-openmp-shared-dbg-pt'
Using SEMS RHEL6 compiler stack GNU-7.2.0 to build DEBUG code with Kokkos node type OPENMP

$ rm -r CMake*

$ time ./do-configure.base \
  -DTrilinos_USE_BUILD_PERF_WRAPPERS=ON \
  -DTrilinos_ENABLE_TeuchosCore=ON \
  &> configure.out

real    0m6.845s
user    0m5.065s
sys     0m6.790s

$ time ninja &> make.out

real    0m14.579s
user    4m7.747s
sys     1m29.223s

That produced the files:

$ find . -name "*.timing"
./packages/kokkos/core/src/libkokkoscore.so.3.1.1.mpicxx.timing
./packages/kokkos/core/src/CMakeFiles/kokkoscore.dir/OpenMP/Kokkos_OpenMP_Task.cpp.o.mpicxx.timing
./packages/kokkos/core/src/CMakeFiles/kokkoscore.dir/OpenMP/Kokkos_OpenMP_Exec.cpp.o.mpicxx.timing
./packages/kokkos/core/src/CMakeFiles/kokkoscore.dir/impl/Kokkos_MemoryPool.cpp.o.mpicxx.timing
...
./packages/teuchos/core/src/CMakeFiles/teuchoscore.dir/Teuchos_Describable.cpp.o.mpicxx.timing
./packages/teuchos/core/src/CMakeFiles/teuchoscore.dir/Teuchos_CommandLineProcessor.cpp.o.mpicxx.timing
./packages/teuchos/core/src/CMakeFiles/teuchoscore.dir/Teuchos_UnitTestRepository.cpp.o.mpicxx.timing
./packages/teuchos/core/src/CMakeFiles/teuchoscore.dir/Teuchos_Range1D.cpp.o.mpicxx.timing
./packages/teuchos/core/src/CMakeFiles/teuchoscore.dir/Teuchos_StrUtils.cpp.o.mpicxx.timing
./packages/teuchos/core/src/libteuchoscore.so.12.17.mpicxx.timing

$ find . -name "*.timing" |  wc -l
187

Okay, I also add a TrilinosBuildStats package with a test TrilinosBuildStats_Results that posts the attached file <build_dir>/build_stats.csv. I ran it as:

$ make dashboard

and it posed to:

The test TrilinosBuildStats_Result posted to:

and it shows the attached file build_stats.csv and it shows a link. However, when I click the link, I get a 500 error.

If I look at the Tests.xml file in the local build directory:

~/Trilinos.base/BUILDS/ATDM/SEMS-RHEL6/CHECKIN/gnu-openmp-shared-dbg-pt/Testing/20200609-2038/Test.xml

which shows:

<Test Status="passed">
	<Name>TrilinosBuildStats_Results</Name>
	<Path>./commonTools/build_stats</Path>
	<FullName>./commonTools/build_stats/TrilinosBuildStats_Results</FullName>
	<FullCommandLine>/ascldap/users/projects/sems/install/rhel6-x86_64/sems/utility/cmake/3.12.2/bin/cmake "-DTEST_CONFIG=" "-P" "/ascldap/users/rabartl/Trilinos.base/BUILDS/ATDM/SEMS-RHEL6/CHECKIN/gnu-openmp-shared-dbg-pt/commonTools/build_stats/TrilinosBuildStats_Results.cmake"</FullCommandLine>
	<Results>
		<NamedMeasurement type="numeric/double" name="Execution Time">
			<Value>0.259006</Value>
		</NamedMeasurement>
		<NamedMeasurement type="text/string" name="Pass Reason">
			<Value>Required regular expression found.Regex=[OVERALL FINAL RESULT: TEST PASSED .TrilinosBuildStats_Results.

		</NamedMeasurement>
		<NamedMeasurement type="numeric/double" name="Processors">
			<Value>1</Value>
		</NamedMeasurement>
		<NamedMeasurement type="text/string" name="Completion Status">
			<Value>Completed</Value>
		</NamedMeasurement>
		<NamedMeasurement type="text/string" name="Command Line">
			<Value>/ascldap/users/projects/sems/install/rhel6-x86_64/sems/utility/cmake/3.12.2/bin/cmake "-DTEST_CONFIG=" "-P" "/ascldap/users/rabartl/Trilinos.base/BUILDS/ATDM/SEMS-RHEL6/CHECKIN/gnu-openmp-shared-dbg-pt/commonTools/build_stats/TrilinosBuildStats_Results.cmake"</Value>
		</NamedMeasurement>
		<Measurement>
			<Value encoding="base64" compression="gzip">eJzNVDtv2zAQ3vkriCxpB4Xp0sGAB1qmEyGyZJB0HykCgZYONhGJNEgqaf99qNouArTeZKA3kMQd7+67J/o2MiFEmxdlamiwBB8mWDrdamP9rNdtI4IKvuLg+zZ4hAS0UIfjV5IOJ145u4egwU8QximV7K7kGRN4imdUZGlkrniZMiFKPjA/RYbMlqxcSxxpiudsQde5RIhDZ1+02WL4qX0YHq/WPQ93o110a90vfE12tgPi1Ea50JIT1puN8kBm6yyfC0LlfEkEW4qE37P8M0nvWfqQFWRr+iRCNd0+8TvloEmazTbZB1LbrrNGWtt6shmirvwQNjmfiWuEUgfqN0gDr/81UN4bM2ALQ7EGC8o0PpaZCVndIjQdmRA6WT46nuAronzdNmpPeg/Oj5yUrQo7cNW7fNz43RWKbXaKXJt/FOiioKL7ZGRClzB5KNUEcwi9M7E7GogTefuHv1Le49rpAE6rKHkEZ7F79/nHigrB5k9nNWj+lX4X1YJmeVUWVVEWj4yXFWdyzYu/1Q9tG/UOgku0Z/mFcZrneJEVNMecibh8DuNwdIo/nJ+njwiNv4DfAO+hx70=</Value>
		</Measurement>
	</Results>
	<NamedMeasurement name="Attached File" encoding="base64" compression="tar/gzip" filename="build_stats.csv" type="file">
		<Value>H4sIAI/z314AA+19WX...vnnn3/++eeff/7/+PN/ALJwmhYAagEA====</Value>

	</NamedMeasurement>
	<Labels>
		<Label>TrilinosBuildStats</Label>
	</Labels>
</Test>

So it looks like that file build_stats.csv did get defined but not sure how you access that once on CDAsh.

I will ask Kitware about how to view and access attached files for tests on CDsah.

I tested this with:

$ rm -r build_stat* packages install

$ rm -r CMake* *.out ; time env Trilinos_USE_BUILD_PERF_WRAPPERS_DEFAULT=ON ./do-configure.base -DTrilinos_ENABLE_TeuchosCore=ON -DCMAKE_INSTALL_PREFIX=$PWD/install &> configure.out && time ninja &> make.out && time make install &> make.install.out && time ctest -j16 &> ctest.out ; grep -A 100 "failed out of" ctest.out 

real    0m6.973s
user    0m5.139s
sys     0m6.851s

real    0m15.201s
user    4m8.556s
sys     0m49.003s

real    0m0.233s
user    0m0.053s
sys     0m0.177s

real    0m3.408s
user    0m2.456s
sys     0m4.713s
100% tests passed, 0 tests failed out of 60

Subproject Time Summary:
Teuchos               =  45.58 sec*proc (59 tests)
TrilinosBuildStats    =   0.04 sec*proc (1 test)

Total Test time (real) =   3.40 sec

The install directory shows:

$ ls -w1 install/bin/
build_stat_c_wrapper.sh
build_stat_cxx_wrapper.sh
build_stat_fortran_wrapper.sh
gather_build_stats.sh
nvcc_wrapper

So I think that this will make it easy for downstream customers of Trilinos to use these build script wrappers, even if they are not set in the TrilinosConfig.cmake file.

I also tested Trilinos without this:

$ rm -r CMake* *.out ; time env ./do-configure.base -DTrilinos_ENABLE_TeuchosCore=ON -DCMAKE_INSTALL_PREFIX=$PWD/install &> configure.out && time ninja &> make.out && time make install &> make.install.out && time ctest -j16 &> ctest.out ; grep -A 100 "failed out of" ctest.out

real    0m6.629s
user    0m4.953s
sys     0m5.953s

real    0m14.172s
user    4m3.808s
sys     0m42.765s

real    0m0.127s
user    0m0.032s
sys     0m0.094s

real    0m2.361s
user    0m2.398s
sys     0m3.975s
100% tests passed, 0 tests failed out of 59

Subproject Time Summary:
Teuchos    =  19.34 sec*proc (59 tests)

Total Test time (real) =   2.35 sec

I think this is a good place to create a WIP PR and get some feedback.

@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_4.8.4

  • Build Num: 6981
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
COMPILER_MODULE sems-gcc/4.8.4
JENKINS_BUILD_TYPE Release
JENKINS_COMM_TYPE MPI
JENKINS_DO_COMPLEX OFF
JENKINS_JOB_TYPE Experimental
MPI_MODULE sems-openmpi/1.8.7
PULLREQUESTNUM 7508
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH 7376-build-stats
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 64d4502
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 7ba2010

Build Information

Test Name: Trilinos_pullrequest_intel_17.0.1

  • Build Num: 6791
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 7508
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH 7376-build-stats
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 64d4502
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 7ba2010

Build Information

Test Name: Trilinos_pullrequest_gcc_4.9.3_SERIAL

  • Build Num: 5216
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 7508
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH 7376-build-stats
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 64d4502
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 7ba2010

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0

  • Build Num: 5063
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 7508
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH 7376-build-stats
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 64d4502
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 7ba2010

Build Information

Test Name: Trilinos_pullrequest_gcc_8.3.0

  • Build Num: 1252
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 7508
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH 7376-build-stats
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 64d4502
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 7ba2010

Build Information

Test Name: Trilinos_pullrequest_cuda_9.2

  • Build Num: 4547
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 7508
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH 7376-build-stats
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 64d4502
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 7ba2010

Build Information

Test Name: Trilinos_pullrequest_clang_9.0.0

  • Build Num: 922
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 7508
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH 7376-build-stats
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 64d4502
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 7ba2010

Build Information

Test Name: Trilinos_pullrequest_python_2

  • Build Num: 2662
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 7508
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH 7376-build-stats
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 64d4502
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 7ba2010

Build Information

Test Name: Trilinos_pullrequest_python_3

  • Build Num: 2671
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 7508
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH 7376-build-stats
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 64d4502
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 7ba2010

Using Repos:

Repo: TRILINOS (bartlettroscoe/Trilinos)
  • Branch: 7376-build-stats
  • SHA: 64d4502
  • Mode: TEST_REPO

Pull Request Author: bartlettroscoe

@jjellio
Copy link
Contributor

jjellio commented Jun 10, 2020

Nice!

I could have sworn this worked w/Python 2.6 on LLNL's systems. I'm guessing whatever the problem is can probably be fixed if needed.

If we have a respectable Python installation, then using Pandas to write a summary script is pretty easy. Without pandas, it shouldn't be too hard.

How is this going to work for installed Trilinos? If ATDM installs, then using Trilinos_CXX_COMPILER, what will it point to?

jjellio
jjellio previously approved these changes Jun 10, 2020
@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_4.8.4

  • Build Num: 6981
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
COMPILER_MODULE sems-gcc/4.8.4
JENKINS_BUILD_TYPE Release
JENKINS_COMM_TYPE MPI
JENKINS_DO_COMPLEX OFF
JENKINS_JOB_TYPE Experimental
MPI_MODULE sems-openmpi/1.8.7
PULLREQUESTNUM 7508
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH 7376-build-stats
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 64d4502
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 7ba2010

Build Information

Test Name: Trilinos_pullrequest_intel_17.0.1

  • Build Num: 6791
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 7508
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH 7376-build-stats
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 64d4502
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 7ba2010

Build Information

Test Name: Trilinos_pullrequest_gcc_4.9.3_SERIAL

  • Build Num: 5216
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 7508
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH 7376-build-stats
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 64d4502
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 7ba2010

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0

  • Build Num: 5063
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 7508
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH 7376-build-stats
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 64d4502
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 7ba2010

Build Information

Test Name: Trilinos_pullrequest_gcc_8.3.0

  • Build Num: 1252
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 7508
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH 7376-build-stats
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 64d4502
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 7ba2010

Build Information

Test Name: Trilinos_pullrequest_cuda_9.2

  • Build Num: 4547
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 7508
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH 7376-build-stats
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 64d4502
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 7ba2010

Build Information

Test Name: Trilinos_pullrequest_clang_9.0.0

  • Build Num: 922
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 7508
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH 7376-build-stats
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 64d4502
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 7ba2010

Build Information

Test Name: Trilinos_pullrequest_python_2

  • Build Num: 2662
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 7508
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH 7376-build-stats
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 64d4502
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 7ba2010

Build Information

Test Name: Trilinos_pullrequest_python_3

  • Build Num: 2671
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 7508
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH 7376-build-stats
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 64d4502
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 7ba2010
Console Output (last 100 lines) : Trilinos_pullrequest_gcc_4.8.4 # 6981 (click to expand)

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-7508-test-Trilinos_pullrequest_gcc_4.8.4-6981
Cur dir = /scratch/trilinos/jenkins/tr-test-7/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/TFW_testing_single_configure_prototype
Source dir = /scratch/trilinos/jenkins/tr-test-7/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/Trilinos
Binary dir = /scratch/trilinos/jenkins/tr-test-7/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/pull_request_test
Parallel level = 20
Testing Parallel level = 10
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 = 59
Dashboard model = Experimental
Dashboard track = Pull Request
Running configuration:
/projects/sems/install/rhel7-x86_64/sems/utility/cmake/3.10.3/bin/cmake
-C "/scratch/trilinos/jenkins/tr-test-7/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/Trilinos/cmake/std/PullRequestLinuxGCC4.8.4TestingSettings.cmake"
-C "/scratch/trilinos/jenkins/tr-test-7/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/packageEnables.cmake"
-DTrilinos_ENABLE_TESTS:BOOL=ON
-DTrilinos_PARALLEL_LINK_JOBS_LIMIT:STRING=2
-G "Ninja"
/scratch/trilinos/jenkins/tr-test-7/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/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=tr-test-7.novalocal&field2=buildname&compare2=61&value2=PR-7508-test-Trilinos_pullrequest_gcc_4.8.4-6981&field3=buildstamp&compare3=61&value3=20200609-2334-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-7508-test-Trilinos_pullrequest_gcc_4.8.4-6981&field2=buildstamp&compare2=61&value2=20200609-2334-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-7508-test-Trilinos_pullrequest_gcc_4.8.4-6981&field2=buildstamp&compare2=61&value2=20200609-2334-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: 454K
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 of output: 228K
Build succeeded.
build submit error = 0
Starting testing step.
CMake Error: archive_read_disk_entry_from_file 'build_stats.csv': Can't lstat build_stats.csv
Error creating tar while encoding file: /scratch/trilinos/jenkins/tr-test-7/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/pull_request_test/build_stats.csv
CMake Error at /scratch/trilinos/jenkins/tr-test-7/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/TFW_testing_single_configure_prototype/simple_testing.cmake:218 (message):
Test failed with error -1

test submit error = 0
File upload submit error = 0
uest_gcc_4.8.4@tmp
SEMS_CMAKE_VERSION = 3.10.3
HISTCONTROL = ignoredups
SERIAL_CXX = g++
PWD = /scratch/trilinos/jenkins/tr-test-7/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4
JENKINS_SERVER_COOKIE = 248910a9cd8de38c
BUILD_DISPLAY_NAME = #6981
PULLREQUESTNUM = 7508
SEMS_SUPERLU_INCLUDE_PATH = /projects/sems/install/rhel7-x86_64/sems/tpl/superlu/4.3/gcc/4.8.4/base/include

==========================================================================================
None
PULLREQUEST_CDASH_TRACK is set. Setting CDASH_TRACK=Pull Request
Enabled packages:
-- Setting Trilinos_ENABLE_ALL_PACKAGES = ON
-- Setting Trilinos_ENABLE_TrilinosATDMConfigTests = ON
-- Setting Trilinos_ENABLE_TrilinosBuildStats = ON

Set CWD = /scratch/trilinos/jenkins/tr-test-7/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/TFW_testing_single_configure_prototype
Traceback (most recent call last):
File "/scratch/trilinos/jenkins/tr-test-7/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/Trilinos/cmake/std/PullRequestLinuxDriverTest.py", line 701, in
returnValue = run()
File "/scratch/trilinos/jenkins/tr-test-7/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/Trilinos/cmake/std/PullRequestLinuxDriverTest.py", line 694, in run
'-Dsubprojects_file=../package_subproject_list.cmake'])
File "/projects/sems/install/rhel7-x86_64/sems/compiler/python/2.7.9/lib/python2.7/subprocess.py", line 540, in check_call
raise CalledProcessError(retcode, cmd)
subprocess.CalledProcessError: Command '['ctest', '-S', 'simple_testing.cmake', '-Dbuild_name=PR-7508-test-Trilinos_pullrequest_gcc_4.8.4-6981', '-Dskip_by_parts_submit=OFF', '-Dskip_update_step=ON', '-Ddashboard_model=Experimental', '-Ddashboard_track=Pull Request', '-DPARALLEL_LEVEL=20', '-DTEST_PARALLEL_LEVEL=10', '-Dbuild_dir=/scratch/trilinos/jenkins/tr-test-7/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/pull_request_test', '-Dconfigure_script=/scratch/trilinos/jenkins/tr-test-7/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/Trilinos/cmake/std/PullRequestLinuxGCC4.8.4TestingSettings.cmake', '-Dpackage_enables=../packageEnables.cmake', '-Dsubprojects_file=../package_subproject_list.cmake']' returned non-zero exit status 255
Build step 'Execute shell' marked build as failure
Archiving artifacts
Finished: FAILURE

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

    ..................................................  Size: 2099K
    ..................................................  Size: 2150K
    ..................................................  Size: 2199K
    ..................................................  Size: 2249K
    ..................................................  Size: 2300K
    ..................................................  Size: 2349K
    ..................................................  Size: 2399K
    ..................................................  Size: 2449K
    ..................................................  Size: 2500K
    ..................................................  Size: 2549K
    ..................................................  Size: 2599K
    ..................................................  Size: 2649K
    ..................................................  Size: 2700K
    ..................................................  Size: 2750K
    ..................................................  Size: 2799K
    ..................................................  Size: 2850K
    ..................................................  Size: 2900K
    ..................................................  Size: 2950K
    ..................................................  Size: 3000K
    ..................................................  Size: 3050K
    ..................................................  Size: 3099K
    ..................................................  Size: 3149K
    ..................................................  Size: 3200K
    ..................................................  Size: 3249K
    ..................................................  Size: 3299K
    ..................................................  Size: 3350K
    ..................................................  Size: 3400K
    ..................................................  Size: 3450K
    ..................................................  Size: 3500K
    ..................................................  Size: 3550K
    ..................................................  Size: 3600K
    ..................................................  Size: 3650K
    ..................................................  Size: 3700K
    ..................................................  Size: 3750K
    ..................................................  Size: 3799K
    ..................................................  Size: 3849K
    ..................................................  Size: 3900K
    ..................................................  Size: 3949K
    ..................................................  Size: 3999K
    ..................................................  Size: 4049K
    ..................................................  Size: 4099K
    .. Size of output: 4102K
Build succeeded.
build submit error = 0
Starting testing step.
CMake Error: archive_read_disk_entry_from_file 'build_stats.csv': Can't lstat build_stats.csv
Error creating tar while encoding file: /scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/pull_request_test/build_stats.csv
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
E_PATH = /projects/sems/install/rhel6-x86_64/sems/tpl/netcdf/4.7.3/intel/17.0.1/mpich/3.2/parallel/include
MKL_LIB = /projects/sems/install/rhel6-x86_64/sems/compiler/intel/17.0.1/base/mkl/lib/intel64
MODULE_VERSION_STACK = 3.2.10
SEMS_MPICH_ROOT = /projects/sems/install/rhel6-x86_64/sems/compiler/intel/17.0.1/mpich/3.2
JOB_COOWNERS_EMAILS = prwolfe@sandia.gov,trilinos@sandia.gov
SEMS_PARMETIS_LOCAL_COMPILER_VERSION = 4.4.7
SEMS_PARMETIS_LOCAL_PYTHON_VERSION = 2.6.6
SEMS_NETCDF_LIBRARY_PATH = /projects/sems/install/rhel6-x86_64/sems/tpl/netcdf/4.7.3/intel/17.0.1/mpich/3.2/parallel/lib
GIT_URL = https://github.com/trilinos/Trilinos
SEMS_INTEL_LOCAL_PYTHON_VERSION = 2.6.6
SEMS_BOOST_LIBRARY_PATH = /projects/sems/install/rhel6-x86_64/sems/tpl/boost/1.63.0/intel/17.0.1/base/lib
SEMS_GCC_LOCAL_COMPILER_VERSION = 4.4.7
SNLSYSTEM = cee
MPIF77 = mpif77
SEMS_HDF5_ROOT = /projects/sems/install/rhel6-x86_64/sems/tpl/hdf5/1.10.6/intel/17.0.1/mpich/3.2/parallel
SEMS_SCOTCH_INCLUDE_PATH = /projects/sems/install/rhel6-x86_64/sems/tpl/scotch/6.0.3/intel/17.0.1/mpich/3.2/nopthread_64bit_parallel/include
LOADEDMODULES = sems-env:sems-git/2.10.1:sems-python/2.7.9:sems-gcc/4.9.3:sems-intel/17.0.1:sems-mpich/3.2:sems-boost/1.63.0/base:sems-zlib/1.2.8/base:sems-hdf5/1.10.6/parallel:sems-netcdf/4.7.3/parallel:sems-parmetis/4.0.3/parallel:sems-scotch/6.0.3/nopthread_64bit_parallel:sems-superlu/4.3/base:sems-cmake/3.10.3:atdm-env:atdm-ninja_fortran/1.7.2
WORKSPACE_TMP = /scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1@tmp
SEMS_CMAKE_VERSION = 3.10.3
HISTCONTROL = ignoredups
SERIAL_CXX = icpc
PWD = /scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1
JENKINS_SERVER_COOKIE = 248910a9cd8de38c
BUILD_DISPLAY_NAME = #6791
PULLREQUESTNUM = 7508
SEMS_SUPERLU_INCLUDE_PATH = /projects/sems/install/rhel6-x86_64/sems/tpl/superlu/4.3/intel/17.0.1/base/include

==========================================================================================
None
PULLREQUEST_CDASH_TRACK is set. Setting CDASH_TRACK=Pull Request
Enabled packages:
-- Setting Trilinos_ENABLE_ALL_PACKAGES = ON
-- Setting Trilinos_ENABLE_TrilinosATDMConfigTests = ON
-- Setting Trilinos_ENABLE_TrilinosBuildStats = ON

Set CWD = /scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/TFW_testing_single_configure_prototype
Traceback (most recent call last):
File "/scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/Trilinos/cmake/std/PullRequestLinuxDriverTest.py", line 701, in
returnValue = run()
File "/scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/Trilinos/cmake/std/PullRequestLinuxDriverTest.py", line 694, in run
'-Dsubprojects_file=../package_subproject_list.cmake'])
File "/projects/sems/install/rhel6-x86_64/sems/compiler/python/2.7.9/lib/python2.7/subprocess.py", line 540, in check_call
raise CalledProcessError(retcode, cmd)
subprocess.CalledProcessError: Command '['ctest', '-S', 'simple_testing.cmake', '-Dbuild_name=PR-7508-test-Trilinos_pullrequest_intel_17.0.1-6791', '-Dskip_by_parts_submit=OFF', '-Dskip_update_step=ON', '-Ddashboard_model=Experimental', '-Ddashboard_track=Pull Request', '-DPARALLEL_LEVEL=20', '-DTEST_PARALLEL_LEVEL=10', '-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/PullRequestLinuxIntelTestingSettings.cmake', '-Dpackage_enables=../packageEnables.cmake', '-Dsubprojects_file=../package_subproject_list.cmake']' returned non-zero exit status 255
Build step 'Execute shell' marked build as failure
Archiving artifacts
Finished: FAILURE

Console Output (last 100 lines) : Trilinos_pullrequest_gcc_4.9.3_SERIAL # 5216 (click to expand)

Wrote file 'package_subproject_list.cmake'
Build name = PR-7508-test-Trilinos_pullrequest_gcc_4.9.3_SERIAL-5216
Cur dir = /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/TFW_testing_single_configure_prototype
Source dir = /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/Trilinos
Binary dir = /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/pull_request_test
Parallel level = 20
Testing Parallel level = 10
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 = 59
Dashboard model = Experimental
Dashboard track = Pull Request
Running configuration:
/projects/sems/install/rhel7-x86_64/sems/utility/cmake/3.10.3/bin/cmake
-C "/scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/Trilinos/cmake/std/PullRequestLinuxGCC4.9.3TestingSettingsSERIAL.cmake"
-C "/scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/packageEnables.cmake"
-DTrilinos_ENABLE_TESTS:BOOL=ON
-DTrilinos_PARALLEL_LINK_JOBS_LIMIT:STRING=2
-G "Ninja"
/scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/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=ascic166&field2=buildname&compare2=61&value2=PR-7508-test-Trilinos_pullrequest_gcc_4.9.3_SERIAL-5216&field3=buildstamp&compare3=61&value3=20200609-2335-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-7508-test-Trilinos_pullrequest_gcc_4.9.3_SERIAL-5216&field2=buildstamp&compare2=61&value2=20200609-2335-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-7508-test-Trilinos_pullrequest_gcc_4.9.3_SERIAL-5216&field2=buildstamp&compare2=61&value2=20200609-2335-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 of output: 380K
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 of output: 311K
Build succeeded.
build submit error = 0
Starting testing step.
CMake Error: archive_read_disk_entry_from_file 'build_stats.csv': Can't lstat build_stats.csv
Error creating tar while encoding file: /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/pull_request_test/build_stats.csv
CMake Error at /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/TFW_testing_single_configure_prototype/simple_testing.cmake:218 (message):
Test failed with error -1

test submit error = 0
File upload submit error = 0
TH = /projects/sems/install/rhel7-x86_64/sems/tpl/netcdf/4.7.3/gcc/4.9.3/base/include
MODULE_VERSION_STACK = 3.2.10
JOB_COOWNERS_EMAILS = wcmclen@sandia.gov,trilinos@sandia.gov
SEMS_NETCDF_LIBRARY_PATH = /projects/sems/install/rhel7-x86_64/sems/tpl/netcdf/4.7.3/gcc/4.9.3/base/lib
GIT_BRANCH = origin/develop
SEMS_BOOST_LIBRARY_PATH = /projects/sems/install/rhel7-x86_64/sems/tpl/boost/1.63.0/gcc/4.9.3/base/lib
SEMS_GCC_LOCAL_COMPILER_VERSION = 4.8.5
SNLSYSTEM = cee
SEMS_HDF5_ROOT = /projects/sems/install/rhel7-x86_64/sems/tpl/hdf5/1.10.6/gcc/4.9.3/base
LOADEDMODULES = sems-env:sems-git/2.10.1:sems-python/2.7.9:sems-gcc/4.9.3:sems-boost/1.63.0/base:sems-zlib/1.2.8/base:sems-hdf5/1.10.6/base:sems-netcdf/4.7.3/base:sems-metis/5.1.0/base:sems-superlu/4.3/base:sems-cmake/3.10.3:atdm-env:atdm-ninja_fortran/1.7.2
WORKSPACE_TMP = /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL@tmp
SEMS_CMAKE_VERSION = 3.10.3
HISTCONTROL = ignoredups
SERIAL_CXX = g++
PWD = /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL
JENKINS_SERVER_COOKIE = 248910a9cd8de38c
BUILD_DISPLAY_NAME = #5216
PULLREQUESTNUM = 7508
SEMS_SUPERLU_INCLUDE_PATH = /projects/sems/install/rhel7-x86_64/sems/tpl/superlu/4.3/gcc/4.9.3/base/include

==========================================================================================
None
PULLREQUEST_CDASH_TRACK is set. Setting CDASH_TRACK=Pull Request
Enabled packages:
-- Setting Trilinos_ENABLE_ALL_PACKAGES = ON
-- Setting Trilinos_ENABLE_TrilinosATDMConfigTests = ON
-- Setting Trilinos_ENABLE_TrilinosBuildStats = ON

Set CWD = /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/TFW_testing_single_configure_prototype
Traceback (most recent call last):
File "/scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/Trilinos/cmake/std/PullRequestLinuxDriverTest.py", line 701, in
returnValue = run()
File "/scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/Trilinos/cmake/std/PullRequestLinuxDriverTest.py", line 694, in run
'-Dsubprojects_file=../package_subproject_list.cmake'])
File "/projects/sems/install/rhel7-x86_64/sems/compiler/python/2.7.9/lib/python2.7/subprocess.py", line 540, in check_call
raise CalledProcessError(retcode, cmd)
subprocess.CalledProcessError: Command '['ctest', '-S', 'simple_testing.cmake', '-Dbuild_name=PR-7508-test-Trilinos_pullrequest_gcc_4.9.3_SERIAL-5216', '-Dskip_by_parts_submit=OFF', '-Dskip_update_step=ON', '-Ddashboard_model=Experimental', '-Ddashboard_track=Pull Request', '-DPARALLEL_LEVEL=20', '-DTEST_PARALLEL_LEVEL=10', '-Dbuild_dir=/scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/pull_request_test', '-Dconfigure_script=/scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/Trilinos/cmake/std/PullRequestLinuxGCC4.9.3TestingSettingsSERIAL.cmake', '-Dpackage_enables=../packageEnables.cmake', '-Dsubprojects_file=../package_subproject_list.cmake']' returned non-zero exit status 255
Build step 'Execute shell' marked build as failure
Archiving artifacts
Finished: FAILURE

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

Wrote file 'packageEnables.cmake'

F) Generate the package_subproject_list.cmake file

Wrote file 'package_subproject_list.cmake'
Build name = PR-7508-test-Trilinos_pullrequest_gcc_7.2.0-5063
Cur dir = /scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/TFW_testing_single_configure_prototype
Source dir = /scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/Trilinos
Binary dir = /scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/pull_request_test
Parallel level = 13
Testing Parallel level = 10
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 = 59
Dashboard model = Experimental
Dashboard track = Pull Request
Running configuration:
/projects/sems/install/rhel6-x86_64/sems/utility/cmake/3.10.3/bin/cmake
-C "/scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/Trilinos/cmake/std/PullRequestLinuxGCC7.2.0TestingSettings.cmake"
-C "/scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/packageEnables.cmake"
-DTrilinos_ENABLE_TESTS:BOOL=ON
-DTrilinos_PARALLEL_LINK_JOBS_LIMIT:STRING=2
-G "Ninja"
/scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/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-7508-test-Trilinos_pullrequest_gcc_7.2.0-5063&field3=buildstamp&compare3=61&value3=20200609-2335-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-7508-test-Trilinos_pullrequest_gcc_7.2.0-5063&field2=buildstamp&compare2=61&value2=20200609-2335-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-7508-test-Trilinos_pullrequest_gcc_7.2.0-5063&field2=buildstamp&compare2=61&value2=20200609-2335-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 of output: 441K
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 of output: 400K
Build succeeded.
build submit error = 0
Starting testing step.
CMake Error: archive_read_disk_entry_from_file 'build_stats.csv': Can't lstat build_stats.csv
Error creating tar while encoding file: /scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/pull_request_test/build_stats.csv
CMake Error at /scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.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
/sems/tpl/hdf5/1.10.6/gcc/7.2.0/openmpi/1.10.1/parallel
SEMS_SCOTCH_INCLUDE_PATH = /projects/sems/install/rhel6-x86_64/sems/tpl/scotch/6.0.3/gcc/7.2.0/openmpi/1.10.1/nopthread_64bit_parallel/include
LOADEDMODULES = sems-env:sems-git/2.10.1:sems-python/2.7.9:sems-gcc/7.2.0:sems-openmpi/1.10.1:sems-boost/1.63.0/base:sems-zlib/1.2.8/base:sems-hdf5/1.10.6/parallel:sems-netcdf/4.7.3/parallel:sems-parmetis/4.0.3/parallel:sems-scotch/6.0.3/nopthread_64bit_parallel:sems-superlu/4.3/base:sems-cmake/3.10.3:atdm-env:atdm-ninja_fortran/1.7.2
WORKSPACE_TMP = /scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0@tmp
SEMS_CMAKE_VERSION = 3.10.3
HISTCONTROL = ignoredups
SERIAL_CXX = g++
PWD = /scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0
JENKINS_SERVER_COOKIE = 248910a9cd8de38c
BUILD_DISPLAY_NAME = #5063
PULLREQUESTNUM = 7508
SEMS_SUPERLU_INCLUDE_PATH = /projects/sems/install/rhel6-x86_64/sems/tpl/superlu/4.3/gcc/7.2.0/base/include

==========================================================================================
None
PULLREQUEST_CDASH_TRACK is set. Setting CDASH_TRACK=Pull Request
Enabled packages:
-- Setting Trilinos_ENABLE_ALL_PACKAGES = ON
-- Setting Trilinos_ENABLE_TrilinosATDMConfigTests = ON
-- Setting Trilinos_ENABLE_TrilinosBuildStats = ON

Set CWD = /scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/TFW_testing_single_configure_prototype
Traceback (most recent call last):
File "/scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/Trilinos/cmake/std/PullRequestLinuxDriverTest.py", line 701, in
returnValue = run()
File "/scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/Trilinos/cmake/std/PullRequestLinuxDriverTest.py", line 694, in run
'-Dsubprojects_file=../package_subproject_list.cmake'])
File "/projects/sems/install/rhel6-x86_64/sems/compiler/python/2.7.9/lib/python2.7/subprocess.py", line 540, in check_call
raise CalledProcessError(retcode, cmd)
subprocess.CalledProcessError: Command '['ctest', '-S', 'simple_testing.cmake', '-Dbuild_name=PR-7508-test-Trilinos_pullrequest_gcc_7.2.0-5063', '-Dskip_by_parts_submit=OFF', '-Dskip_update_step=ON', '-Ddashboard_model=Experimental', '-Ddashboard_track=Pull Request', '-DPARALLEL_LEVEL=13', '-DTEST_PARALLEL_LEVEL=10', '-Dbuild_dir=/scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/pull_request_test', '-Dconfigure_script=/scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/Trilinos/cmake/std/PullRequestLinuxGCC7.2.0TestingSettings.cmake', '-Dpackage_enables=../packageEnables.cmake', '-Dsubprojects_file=../package_subproject_list.cmake']' returned non-zero exit status 255
Build step 'Execute shell' marked build as failure
Archiving artifacts
Finished: FAILURE

Console Output (last 100 lines) : Trilinos_pullrequest_gcc_8.3.0 # 1252 (click to expand)

Cur dir                  = /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/TFW_testing_single_configure_prototype
Source dir               = /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/Trilinos
Binary dir               = /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/pull_request_test
Parallel level           = 20
Testing Parallel level   = 10
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         = 59
Dashboard model          = Experimental
Dashboard track          = Pull Request
Running configuration:
/projects/sems/install/rhel7-x86_64/sems/utility/cmake/3.10.3/bin/cmake 
  -C "/scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/Trilinos/cmake/std/PullRequestLinuxGCC8.3.0TestingSettings.cmake"
  -C "/scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/packageEnables.cmake"
  -DTrilinos_ENABLE_TESTS:BOOL=ON
  -DTrilinos_PARALLEL_LINK_JOBS_LIMIT:STRING=2
  -G "Ninja"
  /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/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=ascic166&field2=buildname&compare2=61&value2=PR-7508-test-Trilinos_pullrequest_gcc_8.3.0-1252&field3=buildstamp&compare3=61&value3=20200609-2335-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-7508-test-Trilinos_pullrequest_gcc_8.3.0-1252&field2=buildstamp&compare2=61&value2=20200609-2335-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-7508-test-Trilinos_pullrequest_gcc_8.3.0-1252&field2=buildstamp&compare2=61&value2=20200609-2335-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 of output: 441K
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 of output: 341K
Build succeeded.
build submit error = 0
Starting testing step.
CMake Error: archive_read_disk_entry_from_file 'build_stats.csv': Can't lstat build_stats.csv
Error creating tar while encoding file: /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/pull_request_test/build_stats.csv
CMake Error at /scratch/trilinos/jenkins/ascic166/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
RS_EMAILS = HRSwant@sandia.gov,trilinos@sandia.gov
SEMS_PARMETIS_LOCAL_COMPILER_VERSION = 4.8.5
SEMS_PARMETIS_LOCAL_PYTHON_VERSION = 2.7.5
SEMS_NETCDF_LIBRARY_PATH = /projects/sems/install/rhel7-x86_64/sems/tpl/netcdf/4.7.3/gcc/8.3.0/openmpi/1.10.1/parallel/lib
GIT_BRANCH = origin/develop
SEMS_BOOST_LIBRARY_PATH = /projects/sems/install/rhel7-x86_64/sems/tpl/boost/1.66.0/gcc/8.3.0/base/lib
SEMS_GCC_LOCAL_COMPILER_VERSION = 4.8.5
SNLSYSTEM = cee
MPIF77 = mpif77
SEMS_HDF5_ROOT = /projects/sems/install/rhel7-x86_64/sems/tpl/hdf5/1.10.6/gcc/8.3.0/openmpi/1.10.1/parallel
SEMS_SCOTCH_INCLUDE_PATH = /projects/sems/install/rhel7-x86_64/sems/tpl/scotch/6.0.3/gcc/8.3.0/openmpi/1.10.1/nopthread_64bit_parallel/include
LOADEDMODULES = sems-env:sems-git/2.10.1:sems-python/2.7.9:sems-gcc/8.3.0:sems-openmpi/1.10.1:sems-boost/1.66.0/base:sems-zlib/1.2.8/base:sems-hdf5/1.10.6/parallel:sems-netcdf/4.7.3/parallel:sems-parmetis/4.0.3/parallel:sems-scotch/6.0.3/nopthread_64bit_parallel:sems-superlu/4.3/base:sems-cmake/3.10.3:atdm-env:atdm-ninja_fortran/1.7.2
WORKSPACE_TMP = /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0@tmp
SEMS_CMAKE_VERSION = 3.10.3
HISTCONTROL = ignoredups
SERIAL_CXX = g++
PWD = /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0
JENKINS_SERVER_COOKIE = 248910a9cd8de38c
BUILD_DISPLAY_NAME = #1252
PULLREQUESTNUM = 7508
SEMS_SUPERLU_INCLUDE_PATH = /projects/sems/install/rhel7-x86_64/sems/tpl/superlu/4.3/gcc/8.3.0/base/include

==========================================================================================
None
PULLREQUEST_CDASH_TRACK is set. Setting CDASH_TRACK=Pull Request
Enabled packages:
-- Setting Trilinos_ENABLE_ALL_PACKAGES = ON
-- Setting Trilinos_ENABLE_TrilinosATDMConfigTests = ON
-- Setting Trilinos_ENABLE_TrilinosBuildStats = ON

Set CWD = /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/TFW_testing_single_configure_prototype
Traceback (most recent call last):
File "/scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/Trilinos/cmake/std/PullRequestLinuxDriverTest.py", line 701, in
returnValue = run()
File "/scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/Trilinos/cmake/std/PullRequestLinuxDriverTest.py", line 694, in run
'-Dsubprojects_file=../package_subproject_list.cmake'])
File "/projects/sems/install/rhel7-x86_64/sems/compiler/python/2.7.9/lib/python2.7/subprocess.py", line 540, in check_call
raise CalledProcessError(retcode, cmd)
subprocess.CalledProcessError: Command '['ctest', '-S', 'simple_testing.cmake', '-Dbuild_name=PR-7508-test-Trilinos_pullrequest_gcc_8.3.0-1252', '-Dskip_by_parts_submit=OFF', '-Dskip_update_step=ON', '-Ddashboard_model=Experimental', '-Ddashboard_track=Pull Request', '-DPARALLEL_LEVEL=20', '-DTEST_PARALLEL_LEVEL=10', '-Dbuild_dir=/scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/pull_request_test', '-Dconfigure_script=/scratch/trilinos/jenkins/ascic166/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']' returned non-zero exit status 255
Build step 'Execute shell' marked build as failure
Archiving artifacts
Finished: FAILURE

Console Output (last 100 lines) : Trilinos_pullrequest_cuda_9.2 # 4547 (click to expand)

CMake Error: archive_read_disk_entry_from_file 'build_stats.csv': Can't lstat build_stats.csv
Error creating tar while encoding file: /home/trilinos/jenkins/ride/workspace/trilinos-folder/Trilinos_pullrequest_cuda_9.2/pull_request_test/build_stats.csv
CMake Error at /home/trilinos/jenkins/ride/workspace/trilinos-folder/Trilinos_pullrequest_cuda_9.2/TFW_testing_single_configure_prototype/simple_testing.cmake:218 (message):
  Test failed with error -1

test submit error = 0
File upload submit error = 0
de10 ride10 ride10 ride10 ride10 ride10
METIS_ROOT = /home/projects/ppc64le-pwr8/metis/5.0.1/gcc/7.2.0
NODE_OWNER_EMAIL = ceeadmin@sandia.gov
LSB_EXIT_PRE_ABORT = 99
TRILINOS_SOURCE_REPO = https://github.com/bartlettroscoe/Trilinos
PARMETIS_HOME = /home/projects/ppc64le-pwr8-nvidia/parmetis/4.0.3/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88
FC_VERSION = 7.2.0
LSB_JOBFILENAME = /ascldap/users/trilinos/.lsbatch/1591745766.4655
BLAS_ROOT = /home/projects/ppc64le-pwr8/netlib/3.8.0/gcc/7.2.0
GIT_CHECKOUT_DIR = Trilinos
LSB_AFFINITY_HOSTFILE = /ascldap/users/trilinos/.lsbatch/1591745766.4655.hostAffinityFile
PARMETIS_ROOT = /home/projects/ppc64le-pwr8-nvidia/parmetis/4.0.3/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88
LSF_ENVDIR = /opt/lsf/conf
MPI_VENDOR = openmpi
PYTHON = /home/projects/ppc64le/python/2.7.12/bin/python
CXX_VENDOR = gcc
HDF5_ROOT = /home/projects/ppc64le-pwr8-nvidia/hdf5/1.8.20/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88
HOSTTYPE = LINUXPPC64LE
SSH_CLIENT = 205.137.81.17 44298 22
JENKINS_URL = https://ascic-jenkins.sandia.gov/
LOGNAME = trilinos
LSF_LIM_API_NTRIES = 1
PATH = /ascldap/users/rabartl/install/white-ride/cmake-3.11.2/bin:/ascldap/users/rabartl/install/white-ride/ninja-1.8.2/bin:/home/projects/ppc64le/valgrind/3.12.0/bin:/home/projects/ppc64le/cmake/3.9.6/bin:/home/projects/ppc64le-pwr8-nvidia/parmetis/4.0.3/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88/bin:/home/projects/ppc64le-pwr8/metis/5.0.1/gcc/7.2.0/bin:/home/projects/ppc64le-pwr8-nvidia/netcdf/4.6.1/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88/bin:/home/projects/ppc64le-pwr8-nvidia/hdf5/1.8.20/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88/bin:/home/projects/ppc64le-pwr8-nvidia/pnetcdf-exo/1.9.0/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88/bin:/home/projects/ppc64le-pwr8-nvidia/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88/bin:/home/projects/ppc64le/java/ibm/sdk/8.0.0/bin:/home/projects/ppc64le/papi/5.5.1/bin:/home/projects/ppc64le/gcc/7.2.0/bin:/home/projects/ppc64le/binutils/2.30.0/bin:/home/projects/ppc64le-pwr8-nvidia/cuda/9.2.88/bin:/home/projects/ppc64le/python/2.7.12/bin:/home/projects/ppc64le/git/2.10.1/bin:/opt/lsf/10.1/linux3.10-glibc2.17-ppc64le/bin:/opt/lsf/10.1/linux3.10-glibc2.17-ppc64le/etc:/usr/local/bin:/usr/bin:/opt/ibutils/bin:/usr/local/sbin:/usr/sbin:/ascldap/users/trilinos/.local/bin:/ascldap/users/trilinos/bin
LSB_QUEUE = rhel7F
LSF_JOB_TIMESTAMP_VALUE = 1591745766
LSB_EXEC_HOSTTYPE = LINUXPPC64LE
GIT_PREVIOUS_SUCCESSFUL_COMMIT = 7ba2010fcc115c100e61e5fe57e23c4a3149fa1e
LSB_DJOB_HOSTFILE = /ascldap/users/trilinos/.lsbatch/1591745766.4655.hostfile
no_proxy = localhost,localnets,127.0.0.1,169.254.0.0/16,forge.sandia.gov
LSF_LIBDIR = /opt/lsf/10.1/linux3.10-glibc2.17-ppc64le/lib
CGNS_VERSION = 20180521
LSB_SUB_USER = trilinos
NODE_LABELS = ride-trilinos trilinos-ride
GIT_BRANCH_2 = origin/pull_request_changes
GIT_CHECKOUT_DIR_1 = TFW_single_configure_support_scripts
GIT_CHECKOUT_DIR_2 = TFW_testing_single_configure_prototype
JOB_OWNER_EMAIL = HRSwant@sandia.gov
PULLREQUEST_CDASH_TRACK = Pull Request
BUILD_ID = 4547
SBD_KRB5CCNAME_VAL =
LSB_RES_GET_FANOUT_INFO = Y
RUN_DISPLAY_URL = https://ascic-jenkins.sandia.gov/job/trilinos-folder/job/Trilinos_pullrequest_cuda_9.2/4547/display/redirect
JOB_COOWNERS_EMAILS = HRSwant@sandia.gov,trilinos@sandia.gov
LSB_BATCH_JID = 4655
MPI_HOME = /home/projects/ppc64le-pwr8-nvidia/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88
SUPERLU_HOME = /home/projects/ppc64le-pwr8/superlu/4.3.0/gcc/7.2.0
F77_VENDOR = gcc
KRB5CCNAME = FILE:/tmp/krb5cc_91724_bqNHm8maFh
BINUTILS_VERSION = 2.30.0
GIT_BRANCH = origin/develop
CMAKE_ROOT = /home/projects/ppc64le/cmake/3.9.6
BOOST_ROOT = /home/projects/ppc64le-pwr8/boost/1.65.1/gcc/7.2.0
VALGRIND_ROOT = /home/projects/ppc64le/valgrind/3.12.0
MPIF77 = /home/projects/ppc64le-pwr8-nvidia/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88/bin/mpif77
PARMETIS_VERSION = 4.0.3
LSB_JOBNAME = trilinos-folder/Trilinos_pullrequest_cuda_9.2
LOADEDMODULES = git/2.10.1:python/2.7.12:cuda/9.2.88:binutils/2.30.0:gcc/7.2.0:papi/5.5.1:java/ibm/sdk/8.0.0:openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88:pnetcdf-exo/1.9.0/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88:zlib/1.2.8:hdf5/1.8.20/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88:netcdf/4.6.1/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88:cgns/20180521/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88:netlib/3.8.0/gcc/7.2.0:superlu/4.3.0/gcc/7.2.0:boost/1.65.1/gcc/7.2.0:metis/5.0.1/gcc/7.2.0:parmetis/4.0.3/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88:cmake/3.9.6:valgrind/3.12.0:devpack/20180521/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88
WORKSPACE_TMP = /home/trilinos/jenkins/ride/workspace/trilinos-folder/Trilinos_pullrequest_cuda_9.2@tmp
GIT_BRANCH_1 = origin/master
CUDA_MANAGED_FORCE_DEVICE_ALLOC = 1
HISTCONTROL = ignoredups
PWD = /home/trilinos/jenkins/ride/workspace/trilinos-folder/Trilinos_pullrequest_cuda_9.2
LS_EXECCWD = /home/trilinos/jenkins/ride/workspace/trilinos-folder/Trilinos_pullrequest_cuda_9.2
JENKINS_SERVER_COOKIE = 248910a9cd8de38c
BUILD_DISPLAY_NAME = #4547
CXX_VERSION = 7.2.0
PYTHON_ROOT = /home/projects/ppc64le/python/2.7.12
OMPI_CXX = /home/trilinos/jenkins/ride/workspace/trilinos-folder/Trilinos_pullrequest_cuda_9.2/Trilinos/packages/kokkos/bin/nvcc_wrapper
SUPERLU_VERSION = 4.3.0
PULLREQUESTNUM = 7508
BINARY_TYPE_HPC =

==========================================================================================
None
PULLREQUEST_CDASH_TRACK is set. Setting CDASH_TRACK=Pull Request
Enabled packages:
-- Setting Trilinos_ENABLE_ALL_PACKAGES = ON
-- Setting Trilinos_ENABLE_TrilinosATDMConfigTests = ON
-- Setting Trilinos_ENABLE_TrilinosBuildStats = ON

Set CWD = /home/trilinos/jenkins/ride/workspace/trilinos-folder/Trilinos_pullrequest_cuda_9.2/TFW_testing_single_configure_prototype
Traceback (most recent call last):
File "/home/trilinos/jenkins/ride/workspace/trilinos-folder/Trilinos_pullrequest_cuda_9.2/Trilinos/cmake/std/PullRequestLinuxDriverTest.py", line 701, in
returnValue = run()
File "/home/trilinos/jenkins/ride/workspace/trilinos-folder/Trilinos_pullrequest_cuda_9.2/Trilinos/cmake/std/PullRequestLinuxDriverTest.py", line 694, in run
'-Dsubprojects_file=../package_subproject_list.cmake'])
File "/home/projects/ppc64le/python/2.7.12/lib/python2.7/subprocess.py", line 541, in check_call
raise CalledProcessError(retcode, cmd)
subprocess.CalledProcessError: Command '['ctest', '-S', 'simple_testing.cmake', '-Dbuild_name=PR-7508-test-Trilinos_pullrequest_cuda_9.2-4547', '-Dskip_by_parts_submit=OFF', '-Dskip_update_step=ON', '-Ddashboard_model=Experimental', '-Ddashboard_track=Pull Request', '-DPARALLEL_LEVEL=64', '-DTEST_PARALLEL_LEVEL=8', '-Dbuild_dir=/home/trilinos/jenkins/ride/workspace/trilinos-folder/Trilinos_pullrequest_cuda_9.2/pull_request_test', '-Dconfigure_script=/home/trilinos/jenkins/ride/workspace/trilinos-folder/Trilinos_pullrequest_cuda_9.2/Trilinos/cmake/std/PullRequestLinuxCuda9.2TestingSettings.cmake', '-Dpackage_enables=../packageEnables.cmake', '-Dsubprojects_file=../package_subproject_list.cmake']' returned non-zero exit status 255
Build step 'Execute shell' marked build as failure
Archiving artifacts
Finished: FAILURE

Console Output (last 100 lines) : Trilinos_pullrequest_clang_9.0.0 # 922 (click to expand)

Build name               = PR-7508-test-Trilinos_pullrequest_clang_9.0.0-922
Cur dir                  = /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_clang_9.0.0/TFW_testing_single_configure_prototype
Source dir               = /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_clang_9.0.0/Trilinos
Binary dir               = /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_clang_9.0.0/pull_request_test
Parallel level           = 10
Testing Parallel level   = 10
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         = 59
Dashboard model          = Experimental
Dashboard track          = Pull Request
Running configuration:
/projects/sems/install/rhel6-x86_64/sems/utility/cmake/3.12.2/bin/cmake 
  -C "/scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_clang_9.0.0/Trilinos/cmake/std/PullRequestLinuxClang9.0.0TestingSettings.cmake"
  -C "/scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_clang_9.0.0/packageEnables.cmake"
  -DTrilinos_ENABLE_TESTS:BOOL=ON
  -DTrilinos_PARALLEL_LINK_JOBS_LIMIT:STRING=2
  -G "Ninja"
  /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_clang_9.0.0/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=ascic141&field2=buildname&compare2=61&value2=PR-7508-test-Trilinos_pullrequest_clang_9.0.0-922&field3=buildstamp&compare3=61&value3=20200609-2336-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-7508-test-Trilinos_pullrequest_clang_9.0.0-922&field2=buildstamp&compare2=61&value2=20200609-2336-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-7508-test-Trilinos_pullrequest_clang_9.0.0-922&field2=buildstamp&compare2=61&value2=20200609-2336-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 of output: 437K
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 of output: 228K
Build succeeded.
build submit error = 0
Starting testing step.
CMake Error: archive_read_disk_entry_from_file 'build_stats.csv': Can't lstat build_stats.csv
Error creating tar while encoding file: /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_clang_9.0.0/pull_request_test/build_stats.csv
CMake Error at /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_clang_9.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
3.2.10
JOB_COOWNERS_EMAILS = HRSwant@sandia.gov,trilinos@sandia.gov
SEMS_PARMETIS_LOCAL_COMPILER_VERSION = 4.4.7
SEMS_PARMETIS_LOCAL_PYTHON_VERSION = 2.6.6
SEMS_NETCDF_LIBRARY_PATH = /projects/sems/install/rhel6-x86_64/sems/tpl/netcdf/4.7.3/clang/9.0.0/openmpi/1.10.1/parallel/lib
GIT_URL = https://github.com/trilinos/Trilinos
SEMS_BOOST_LIBRARY_PATH = /projects/sems/install/rhel6-x86_64/sems/tpl/boost/1.63.0/clang/9.0.0/base/lib
SEMS_GCC_LOCAL_COMPILER_VERSION = 4.4.7
SNLSYSTEM = cee
MPIF77 = mpif77
SEMS_HDF5_ROOT = /projects/sems/install/rhel6-x86_64/sems/tpl/hdf5/1.10.6/clang/9.0.0/openmpi/1.10.1/parallel
SEMS_SCOTCH_INCLUDE_PATH = /projects/sems/install/rhel6-x86_64/sems/tpl/scotch/6.0.3/clang/9.0.0/openmpi/1.10.1/nopthread_64bit_parallel/include
LOADEDMODULES = sems-env:sems-git/2.10.1:sems-python/2.7.9:sems-gcc/5.3.0:sems-clang/9.0.0:sems-openmpi/1.10.1:sems-boost/1.63.0/base:sems-zlib/1.2.8/base:sems-hdf5/1.10.6/parallel:sems-netcdf/4.7.3/parallel:sems-parmetis/4.0.3/parallel:sems-scotch/6.0.3/nopthread_64bit_parallel:sems-superlu/4.3/base:sems-cmake/3.12.2:atdm-env:atdm-ninja_fortran/1.7.2
WORKSPACE_TMP = /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_clang_9.0.0@tmp
SEMS_CMAKE_VERSION = 3.12.2
HISTCONTROL = ignoredups
SERIAL_CXX = clang++
PWD = /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_clang_9.0.0
JENKINS_SERVER_COOKIE = 248910a9cd8de38c
BUILD_DISPLAY_NAME = #922
PULLREQUESTNUM = 7508
SEMS_SUPERLU_INCLUDE_PATH = /projects/sems/install/rhel6-x86_64/sems/tpl/superlu/4.3/clang/9.0.0/base/include

==========================================================================================
None
PULLREQUEST_CDASH_TRACK is set. Setting CDASH_TRACK=Pull Request
Enabled packages:
-- Setting Trilinos_ENABLE_ALL_PACKAGES = ON
-- Setting Trilinos_ENABLE_TrilinosATDMConfigTests = ON
-- Setting Trilinos_ENABLE_TrilinosBuildStats = ON

Set CWD = /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_clang_9.0.0/TFW_testing_single_configure_prototype
Traceback (most recent call last):
File "/scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_clang_9.0.0/Trilinos/cmake/std/PullRequestLinuxDriverTest.py", line 701, in
returnValue = run()
File "/scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_clang_9.0.0/Trilinos/cmake/std/PullRequestLinuxDriverTest.py", line 694, in run
'-Dsubprojects_file=../package_subproject_list.cmake'])
File "/projects/sems/install/rhel6-x86_64/sems/compiler/python/2.7.9/lib/python2.7/subprocess.py", line 540, in check_call
raise CalledProcessError(retcode, cmd)
subprocess.CalledProcessError: Command '['ctest', '-S', 'simple_testing.cmake', '-Dbuild_name=PR-7508-test-Trilinos_pullrequest_clang_9.0.0-922', '-Dskip_by_parts_submit=OFF', '-Dskip_update_step=ON', '-Ddashboard_model=Experimental', '-Ddashboard_track=Pull Request', '-DPARALLEL_LEVEL=10', '-DTEST_PARALLEL_LEVEL=10', '-Dbuild_dir=/scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_clang_9.0.0/pull_request_test', '-Dconfigure_script=/scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_clang_9.0.0/Trilinos/cmake/std/PullRequestLinuxClang9.0.0TestingSettings.cmake', '-Dpackage_enables=../packageEnables.cmake', '-Dsubprojects_file=../package_subproject_list.cmake']' returned non-zero exit status 255
Build step 'Execute shell' marked build as failure
Archiving artifacts
Finished: FAILURE

Console Output (last 100 lines) : Trilinos_pullrequest_python_2 # 2662 (click to expand)

SEMS_NINJA_FORTRAN_LOCAL_COMPILER_VERSION = 4.8.5
F77 = gfortran
TRILINOS_TARGET_REPO = https://github.com/trilinos/Trilinos
NODE_OWNER_EMAIL = ceeadmin@sandia.gov
SEMS_GIT_LOCAL_PYTHON_VERSION = 2.7.5
NODE_NAME = tr-test-4-trilinos
GIT_CHECKOUT_DIR = Trilinos
SEMS_NINJA_FORTRAN_VERSION = 1.7.2
SEMS_COMPILER_VERSION = 7.2.0
SSH_CLIENT = 205.137.81.17 57002 22
JENKINS_URL = https://ascic-jenkins.sandia.gov/
LOGNAME = trilinos
NODE_LABELS = tr-test-4-trilinos trilinos-32 trilinos-any trilinos-cloud-32 trilinos_cloud_32_node_4
PATH = /projects/sierra/linux_rh7/install/Python/2.7.15/bin:/projects/sierra/linux_rh7/install/Python/extrasbin:/projects/sems/install/rhel7-x86_64/atdm/utility/ninja_fortran/1.7.2/sbin:/projects/sems/install/rhel7-x86_64/atdm/utility/ninja_fortran/1.7.2/bin:/projects/sems/install/rhel7-x86_64/sems/utility/cmake/3.10.3/sbin:/projects/sems/install/rhel7-x86_64/sems/utility/cmake/3.10.3/bin:/projects/sems/install/rhel7-x86_64/sems/compiler/gcc/7.2.0/base/bin:/projects/sems/install/rhel7-x86_64/sems/utility/git/2.10.1/sbin:/projects/sems/install/rhel7-x86_64/sems/utility/git/2.10.1/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/ascldap/users/trilinos/.local/bin:/ascldap/users/trilinos/bin
SEMS_NINJA_FORTRAN_LOCAL_PYTHON_VERSION = 2.7.5
GIT_PREVIOUS_SUCCESSFUL_COMMIT = 7ba2010fcc115c100e61e5fe57e23c4a3149fa1e
no_proxy = localhost,localnets,127.0.0.1,169.254.0.0/16,forge.sandia.gov
CC = gcc
SEMS_CMAKE_LOCAL_COMPILER_VERSION = 4.8.5
JOB_OWNER_EMAIL = prwolfe@sandia.gov
PULLREQUEST_CDASH_TRACK = Pull Request
BUILD_ID = 2662
JOB_COOWNERS_EMAILS = prwolfe@sandia.gov,trilinos@sandia.gov
GIT_URL = https://github.com/trilinos/Trilinos
SEMS_GCC_LOCAL_COMPILER_VERSION = 4.8.5
LOADEDMODULES = sems-env:sems-git/2.10.1:sems-gcc/7.2.0:sems-cmake/3.10.3:atdm-env:atdm-ninja_fortran/1.7Currently Loaded Modulefiles:
  1) sems-env                   4) sems-cmake/3.10.3
  2) sems-git/2.10.1            5) atdm-env
  3) sems-gcc/7.2.0             6) atdm-ninja_fortran/1.7.2
Build name               = PR-7508-test-Trilinos_pullrequest_python_2-2662
Cur dir                  = /scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_python_2/TFW_testing_single_configure_prototype
Source dir               = /scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_python_2/Trilinos
Binary dir               = /scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_python_2/pull_request_test
Parallel level           = 20
Testing Parallel level   = 20
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         = 1
Dashboard model          = Experimental
Dashboard track          = Pull Request
Running configuration:
/projects/sems/install/rhel7-x86_64/sems/utility/cmake/3.10.3/bin/cmake 
  -C "/scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_python_2/Trilinos/cmake/std/PullRequestLinuxPython2.cmake"
  -C "/scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_python_2/packageEnables.cmake"
  -DTrilinos_ENABLE_TESTS:BOOL=ON
  -DTrilinos_PARALLEL_LINK_JOBS_LIMIT:STRING=2
  -G "Ninja"
  /scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_python_2/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=tr-test-4.novalocal&field2=buildname&compare2=61&value2=PR-7508-test-Trilinos_pullrequest_python_2-2662&field3=buildstamp&compare3=61&value3=20200609-2336-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-7508-test-Trilinos_pullrequest_python_2-2662&field2=buildstamp&compare2=61&value2=20200609-2336-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-7508-test-Trilinos_pullrequest_python_2-2662&field2=buildstamp&compare2=61&value2=20200609-2336-Pull Request
Starting configure step.
   Each . represents 1024 bytes of output
    ...................... Size of output: 21K
configure submit error = 0
Configure suceeded.
Starting build step.
   Each symbol represents 1024 bytes of output.
    . Size of output: 0K
Build succeeded.
build submit error = 0
Starting testing step.
CMake Error at /scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_python_2/TFW_testing_single_configure_prototype/simple_testing.cmake:218 (message):
  Test failed with error -1

test submit error = 0
File upload submit error = 0
.2
WORKSPACE_TMP = /scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_python_2@tmp
SEMS_CMAKE_VERSION = 3.10.3
HISTCONTROL = ignoredups
SERIAL_CXX = g++
PWD = /scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_python_2
JENKINS_SERVER_COOKIE = 248910a9cd8de38c
BUILD_DISPLAY_NAME = #2662
PULLREQUESTNUM = 7508

==========================================================================================
None
PULLREQUEST_CDASH_TRACK is set. Setting CDASH_TRACK=Pull Request
Enabled packages:
-- Setting Trilinos_ENABLE_TrilinosFrameworkTests = ON

Set CWD = /scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_python_2/TFW_testing_single_configure_prototype
Traceback (most recent call last):
File "/scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_python_2/Trilinos/cmake/std/PullRequestLinuxDriverTest.py", line 701, in
returnValue = run()
File "/scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_python_2/Trilinos/cmake/std/PullRequestLinuxDriverTest.py", line 694, in run
'-Dsubprojects_file=../package_subproject_list.cmake'])
File "/projects/sems/install/rhel7-x86_64/sems/compiler/python/2.7.9/lib/python2.7/subprocess.py", line 540, in check_call
raise CalledProcessError(retcode, cmd)
subprocess.CalledProcessError: Command '['ctest', '-S', 'simple_testing.cmake', '-Dbuild_name=PR-7508-test-Trilinos_pullrequest_python_2-2662', '-Dskip_by_parts_submit=OFF', '-Dskip_update_step=ON', '-Ddashboard_model=Experimental', '-Ddashboard_track=Pull Request', '-DPARALLEL_LEVEL=20', '-DTEST_PARALLEL_LEVEL=20', '-Dbuild_dir=/scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_python_2/pull_request_test', '-Dconfigure_script=/scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_python_2/Trilinos/cmake/std/PullRequestLinuxPython2.cmake', '-Dpackage_enables=../packageEnables.cmake', '-Dsubprojects_file=../package_subproject_list.cmake']' returned non-zero exit status 255
Build step 'Execute shell' marked build as failure
Archiving artifacts
Finished: FAILURE

Console Output (last 100 lines) : Trilinos_pullrequest_python_3 # 2671 (click to expand)

SEMS_NINJA_FORTRAN_LOCAL_COMPILER_VERSION = 4.8.5
F77 = gfortran
TRILINOS_TARGET_REPO = https://github.com/trilinos/Trilinos
NODE_OWNER_EMAIL = ceeadmin@sandia.gov
SEMS_GIT_LOCAL_PYTHON_VERSION = 2.7.5
NODE_NAME = tr-test-4-trilinos
GIT_CHECKOUT_DIR = Trilinos
SEMS_NINJA_FORTRAN_VERSION = 1.7.2
SEMS_COMPILER_VERSION = 7.2.0
SSH_CLIENT = 205.137.81.17 57002 22
JENKINS_URL = https://ascic-jenkins.sandia.gov/
LOGNAME = trilinos
NODE_LABELS = tr-test-4-trilinos trilinos-32 trilinos-any trilinos-cloud-32 trilinos_cloud_32_node_4
PATH = /projects/sierra/linux_rh7/install/Python/3.6.3/bin:/projects/sierra/linux_rh7/install/Python/extrasbin:/projects/sems/install/rhel7-x86_64/atdm/utility/ninja_fortran/1.7.2/sbin:/projects/sems/install/rhel7-x86_64/atdm/utility/ninja_fortran/1.7.2/bin:/projects/sems/install/rhel7-x86_64/sems/utility/cmake/3.10.3/sbin:/projects/sems/install/rhel7-x86_64/sems/utility/cmake/3.10.3/bin:/projects/sems/install/rhel7-x86_64/sems/compiler/gcc/7.2.0/base/bin:/projects/sems/install/rhel7-x86_64/sems/utility/git/2.10.1/sbin:/projects/sems/install/rhel7-x86_64/sems/utility/git/2.10.1/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/ascldap/users/trilinos/.local/bin:/ascldap/users/trilinos/bin
SEMS_NINJA_FORTRAN_LOCAL_PYTHON_VERSION = 2.7.5
GIT_PREVIOUS_SUCCESSFUL_COMMIT = 7ba2010fcc115c100e61e5fe57e23c4a3149fa1e
no_proxy = localhost,localnets,127.0.0.1,169.254.0.0/16,forge.sandia.gov
CC = gcc
SEMS_CMAKE_LOCAL_COMPILER_VERSION = 4.8.5
JOB_OWNER_EMAIL = prwolfe@sandia.gov
PULLREQUEST_CDASH_TRACK = Pull Request
BUILD_ID = 2671
JOB_COOWNERS_EMAILS = prwolfe@sandia.gov,trilinos@sandia.gov
GIT_URL = https://github.com/trilinos/Trilinos
SEMS_GCC_LOCAL_COMPILER_VERSION = 4.8.5
LOADEDMODULES = sems-env:sems-git/2.10.1:sems-gcc/7.2.0:sems-cmake/3.10.3:atdm-env:atdm-ninja_fortran/1.7.Currently Loaded Modulefiles:
  1) sems-env                   4) sems-cmake/3.10.3
  2) sems-git/2.10.1            5) atdm-env
  3) sems-gcc/7.2.0             6) atdm-ninja_fortran/1.7.2
Build name               = PR-7508-test-Trilinos_pullrequest_python_3-2671
Cur dir                  = /scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_python_3/TFW_testing_single_configure_prototype
Source dir               = /scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_python_3/Trilinos
Binary dir               = /scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_python_3/pull_request_test
Parallel level           = 20
Testing Parallel level   = 20
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         = 1
Dashboard model          = Experimental
Dashboard track          = Pull Request
Running configuration:
/projects/sems/install/rhel7-x86_64/sems/utility/cmake/3.10.3/bin/cmake 
  -C "/scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_python_3/Trilinos/cmake/std/PullRequestLinuxPython3.cmake"
  -C "/scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_python_3/packageEnables.cmake"
  -DTrilinos_ENABLE_TESTS:BOOL=ON
  -DTrilinos_PARALLEL_LINK_JOBS_LIMIT:STRING=2
  -G "Ninja"
  /scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_python_3/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=tr-test-4.novalocal&field2=buildname&compare2=61&value2=PR-7508-test-Trilinos_pullrequest_python_3-2671&field3=buildstamp&compare3=61&value3=20200609-2336-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-7508-test-Trilinos_pullrequest_python_3-2671&field2=buildstamp&compare2=61&value2=20200609-2336-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-7508-test-Trilinos_pullrequest_python_3-2671&field2=buildstamp&compare2=61&value2=20200609-2336-Pull Request
Starting configure step.
   Each . represents 1024 bytes of output
    ...................... Size of output: 21K
configure submit error = 0
Configure suceeded.
Starting build step.
   Each symbol represents 1024 bytes of output.
    . Size of output: 0K
Build succeeded.
build submit error = 0
Starting testing step.
CMake Error at /scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_python_3/TFW_testing_single_configure_prototype/simple_testing.cmake:218 (message):
  Test failed with error -1

test submit error = 0
File upload submit error = 0
2
WORKSPACE_TMP = /scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_python_3@tmp
SEMS_CMAKE_VERSION = 3.10.3
HISTCONTROL = ignoredups
SERIAL_CXX = g++
PWD = /scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_python_3
JENKINS_SERVER_COOKIE = 248910a9cd8de38c
BUILD_DISPLAY_NAME = #2671
PULLREQUESTNUM = 7508

==========================================================================================
None
PULLREQUEST_CDASH_TRACK is set. Setting CDASH_TRACK=Pull Request
Enabled packages:
-- Setting Trilinos_ENABLE_TrilinosFrameworkTests = ON

Set CWD = /scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_python_3/TFW_testing_single_configure_prototype
Traceback (most recent call last):
File "/scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_python_3/Trilinos/cmake/std/PullRequestLinuxDriverTest.py", line 701, in
returnValue = run()
File "/scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_python_3/Trilinos/cmake/std/PullRequestLinuxDriverTest.py", line 694, in run
'-Dsubprojects_file=../package_subproject_list.cmake'])
File "/projects/sems/install/rhel7-x86_64/sems/compiler/python/2.7.9/lib/python2.7/subprocess.py", line 540, in check_call
raise CalledProcessError(retcode, cmd)
subprocess.CalledProcessError: Command '['ctest', '-S', 'simple_testing.cmake', '-Dbuild_name=PR-7508-test-Trilinos_pullrequest_python_3-2671', '-Dskip_by_parts_submit=OFF', '-Dskip_update_step=ON', '-Ddashboard_model=Experimental', '-Ddashboard_track=Pull Request', '-DPARALLEL_LEVEL=20', '-DTEST_PARALLEL_LEVEL=20', '-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']' returned non-zero exit status 255
Build step 'Execute shell' marked build as failure
Archiving artifacts
Finished: FAILURE


CDash Test Results for PR# 7508.


Wiki: How to Reproduce PR Testing Builds and Errors.

@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_4.8.4

  • Build Num: 6985
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
COMPILER_MODULE sems-gcc/4.8.4
JENKINS_BUILD_TYPE Release
JENKINS_COMM_TYPE MPI
JENKINS_DO_COMPLEX OFF
JENKINS_JOB_TYPE Experimental
MPI_MODULE sems-openmpi/1.8.7
PULLREQUESTNUM 7508
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH 7376-build-stats
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 64d4502
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 7ba2010

Build Information

Test Name: Trilinos_pullrequest_intel_17.0.1

  • Build Num: 6795
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 7508
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH 7376-build-stats
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 64d4502
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 7ba2010

Build Information

Test Name: Trilinos_pullrequest_gcc_4.9.3_SERIAL

  • Build Num: 5220
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 7508
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH 7376-build-stats
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 64d4502
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 7ba2010

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0

  • Build Num: 5067
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 7508
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH 7376-build-stats
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 64d4502
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 7ba2010

Build Information

Test Name: Trilinos_pullrequest_gcc_8.3.0

  • Build Num: 1256
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 7508
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH 7376-build-stats
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 64d4502
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 7ba2010

Build Information

Test Name: Trilinos_pullrequest_cuda_9.2

  • Build Num: 4551
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 7508
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH 7376-build-stats
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 64d4502
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 7ba2010

Build Information

Test Name: Trilinos_pullrequest_clang_9.0.0

  • Build Num: 926
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 7508
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH 7376-build-stats
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 64d4502
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 7ba2010

Build Information

Test Name: Trilinos_pullrequest_python_2

  • Build Num: 2666
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 7508
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH 7376-build-stats
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 64d4502
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 7ba2010

Build Information

Test Name: Trilinos_pullrequest_python_3

  • Build Num: 2675
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 7508
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH 7376-build-stats
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 64d4502
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 7ba2010

Using Repos:

Repo: TRILINOS (bartlettroscoe/Trilinos)
  • Branch: 7376-build-stats
  • SHA: 64d4502
  • Mode: TEST_REPO

Pull Request Author: bartlettroscoe

@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_4.8.4

  • Build Num: 6985
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
COMPILER_MODULE sems-gcc/4.8.4
JENKINS_BUILD_TYPE Release
JENKINS_COMM_TYPE MPI
JENKINS_DO_COMPLEX OFF
JENKINS_JOB_TYPE Experimental
MPI_MODULE sems-openmpi/1.8.7
PULLREQUESTNUM 7508
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH 7376-build-stats
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 64d4502
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 7ba2010

Build Information

Test Name: Trilinos_pullrequest_intel_17.0.1

  • Build Num: 6795
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 7508
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH 7376-build-stats
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 64d4502
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 7ba2010

Build Information

Test Name: Trilinos_pullrequest_gcc_4.9.3_SERIAL

  • Build Num: 5220
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 7508
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH 7376-build-stats
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 64d4502
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 7ba2010

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0

  • Build Num: 5067
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 7508
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH 7376-build-stats
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 64d4502
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 7ba2010

Build Information

Test Name: Trilinos_pullrequest_gcc_8.3.0

  • Build Num: 1256
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 7508
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH 7376-build-stats
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 64d4502
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 7ba2010

Build Information

Test Name: Trilinos_pullrequest_cuda_9.2

  • Build Num: 4551
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 7508
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH 7376-build-stats
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 64d4502
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 7ba2010

Build Information

Test Name: Trilinos_pullrequest_clang_9.0.0

  • Build Num: 926
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 7508
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH 7376-build-stats
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 64d4502
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 7ba2010

Build Information

Test Name: Trilinos_pullrequest_python_2

  • Build Num: 2666
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 7508
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH 7376-build-stats
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 64d4502
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 7ba2010

Build Information

Test Name: Trilinos_pullrequest_python_3

  • Build Num: 2675
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 7508
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH 7376-build-stats
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 64d4502
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 7ba2010
Console Output (last 100 lines) : Trilinos_pullrequest_gcc_4.8.4 # 6985 (click to expand)

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-7508-test-Trilinos_pullrequest_gcc_4.8.4-6985
Cur dir = /scratch/trilinos/jenkins/tr-test-7/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/TFW_testing_single_configure_prototype
Source dir = /scratch/trilinos/jenkins/tr-test-7/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/Trilinos
Binary dir = /scratch/trilinos/jenkins/tr-test-7/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/pull_request_test
Parallel level = 20
Testing Parallel level = 10
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 = 59
Dashboard model = Experimental
Dashboard track = Pull Request
Running configuration:
/projects/sems/install/rhel7-x86_64/sems/utility/cmake/3.10.3/bin/cmake
-C "/scratch/trilinos/jenkins/tr-test-7/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/Trilinos/cmake/std/PullRequestLinuxGCC4.8.4TestingSettings.cmake"
-C "/scratch/trilinos/jenkins/tr-test-7/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/packageEnables.cmake"
-DTrilinos_ENABLE_TESTS:BOOL=ON
-DTrilinos_PARALLEL_LINK_JOBS_LIMIT:STRING=2
-G "Ninja"
/scratch/trilinos/jenkins/tr-test-7/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/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=tr-test-7.novalocal&field2=buildname&compare2=61&value2=PR-7508-test-Trilinos_pullrequest_gcc_4.8.4-6985&field3=buildstamp&compare3=61&value3=20200610-0404-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-7508-test-Trilinos_pullrequest_gcc_4.8.4-6985&field2=buildstamp&compare2=61&value2=20200610-0404-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-7508-test-Trilinos_pullrequest_gcc_4.8.4-6985&field2=buildstamp&compare2=61&value2=20200610-0404-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: 454K
configure submit error = 0
Configure suceeded.
Starting build step.
Each symbol represents 1024 bytes of output.
.................................................. Size: 49K
.................................................. Size: 100K
.................................................. Size: 149K
.................................................. Size: 199K
.................................................. Size: 249K
.................................................. Size: 299K
....................... Size of output: 323K
Build succeeded.
build submit error = 0
Starting testing step.
CMake Error: archive_read_disk_entry_from_file 'build_stats.csv': Can't lstat build_stats.csv
Error creating tar while encoding file: /scratch/trilinos/jenkins/tr-test-7/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/pull_request_test/build_stats.csv
CMake Error at /scratch/trilinos/jenkins/tr-test-7/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/TFW_testing_single_configure_prototype/simple_testing.cmake:218 (message):
Test failed with error -1

test submit error = 0
File upload submit error = 0
uest_gcc_4.8.4@tmp
SEMS_CMAKE_VERSION = 3.10.3
HISTCONTROL = ignoredups
SERIAL_CXX = g++
PWD = /scratch/trilinos/jenkins/tr-test-7/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4
JENKINS_SERVER_COOKIE = 248910a9cd8de38c
BUILD_DISPLAY_NAME = #6985
PULLREQUESTNUM = 7508
SEMS_SUPERLU_INCLUDE_PATH = /projects/sems/install/rhel7-x86_64/sems/tpl/superlu/4.3/gcc/4.8.4/base/include

==========================================================================================
None
PULLREQUEST_CDASH_TRACK is set. Setting CDASH_TRACK=Pull Request
Enabled packages:
-- Setting Trilinos_ENABLE_ALL_PACKAGES = ON
-- Setting Trilinos_ENABLE_TrilinosATDMConfigTests = ON
-- Setting Trilinos_ENABLE_TrilinosBuildStats = ON

Set CWD = /scratch/trilinos/jenkins/tr-test-7/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/TFW_testing_single_configure_prototype
Traceback (most recent call last):
File "/scratch/trilinos/jenkins/tr-test-7/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/Trilinos/cmake/std/PullRequestLinuxDriverTest.py", line 701, in
returnValue = run()
File "/scratch/trilinos/jenkins/tr-test-7/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/Trilinos/cmake/std/PullRequestLinuxDriverTest.py", line 694, in run
'-Dsubprojects_file=../package_subproject_list.cmake'])
File "/projects/sems/install/rhel7-x86_64/sems/compiler/python/2.7.9/lib/python2.7/subprocess.py", line 540, in check_call
raise CalledProcessError(retcode, cmd)
subprocess.CalledProcessError: Command '['ctest', '-S', 'simple_testing.cmake', '-Dbuild_name=PR-7508-test-Trilinos_pullrequest_gcc_4.8.4-6985', '-Dskip_by_parts_submit=OFF', '-Dskip_update_step=ON', '-Ddashboard_model=Experimental', '-Ddashboard_track=Pull Request', '-DPARALLEL_LEVEL=20', '-DTEST_PARALLEL_LEVEL=10', '-Dbuild_dir=/scratch/trilinos/jenkins/tr-test-7/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/pull_request_test', '-Dconfigure_script=/scratch/trilinos/jenkins/tr-test-7/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/Trilinos/cmake/std/PullRequestLinuxGCC4.8.4TestingSettings.cmake', '-Dpackage_enables=../packageEnables.cmake', '-Dsubprojects_file=../package_subproject_list.cmake']' returned non-zero exit status 255
Build step 'Execute shell' marked build as failure
Archiving artifacts
Finished: FAILURE

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

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: 250K
    ..................................................  Size: 300K
    ..................................................  Size: 350K
    ..................................................  Size: 400K
    ..................................................  Size: 450K
    ..................................................  Size: 499K
    ..................................................  Size: 549K
    ..................................................  Size: 599K
    ..................................................  Size: 650K
    ..................................................  Size: 700K
    ..................................................  Size: 749K
    ..................................................  Size: 799K
    ..................................................  Size: 850K
    ..................................................  Size: 899K
    ..................................................  Size: 949K
    ..................................................  Size: 999K
    ..................................................  Size: 1050K
    ..................................................  Size: 1099K
    ..................................................  Size: 1150K
    ..................................................  Size: 1200K
    ..................................................  Size: 1249K
    ..................................................  Size: 1299K
    ..................................................  Size: 1350K
    ..................................................  Size: 1399K
    ..................................................  Size: 1450K
    ..................................................  Size: 1499K
    ..................................................  Size: 1549K
    ..................................................  Size: 1600K
    ..................................................  Size: 1649K
    ..................................................  Size: 1700K
    ..................................................  Size: 1749K
    ..................................................  Size: 1799K
    ..................................................  Size: 1849K
    ......................................... Size of output: 1890K
Build succeeded.
build submit error = 0
Starting testing step.
CMake Error: archive_read_disk_entry_from_file 'build_stats.csv': Can't lstat build_stats.csv
Error creating tar while encoding file: /scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/pull_request_test/build_stats.csv
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
E_PATH = /projects/sems/install/rhel6-x86_64/sems/tpl/netcdf/4.7.3/intel/17.0.1/mpich/3.2/parallel/include
MKL_LIB = /projects/sems/install/rhel6-x86_64/sems/compiler/intel/17.0.1/base/mkl/lib/intel64
MODULE_VERSION_STACK = 3.2.10
SEMS_MPICH_ROOT = /projects/sems/install/rhel6-x86_64/sems/compiler/intel/17.0.1/mpich/3.2
JOB_COOWNERS_EMAILS = prwolfe@sandia.gov,trilinos@sandia.gov
SEMS_PARMETIS_LOCAL_COMPILER_VERSION = 4.4.7
SEMS_PARMETIS_LOCAL_PYTHON_VERSION = 2.6.6
SEMS_NETCDF_LIBRARY_PATH = /projects/sems/install/rhel6-x86_64/sems/tpl/netcdf/4.7.3/intel/17.0.1/mpich/3.2/parallel/lib
GIT_URL = https://github.com/trilinos/Trilinos
SEMS_INTEL_LOCAL_PYTHON_VERSION = 2.6.6
SEMS_BOOST_LIBRARY_PATH = /projects/sems/install/rhel6-x86_64/sems/tpl/boost/1.63.0/intel/17.0.1/base/lib
SEMS_GCC_LOCAL_COMPILER_VERSION = 4.4.7
SNLSYSTEM = cee
MPIF77 = mpif77
SEMS_HDF5_ROOT = /projects/sems/install/rhel6-x86_64/sems/tpl/hdf5/1.10.6/intel/17.0.1/mpich/3.2/parallel
SEMS_SCOTCH_INCLUDE_PATH = /projects/sems/install/rhel6-x86_64/sems/tpl/scotch/6.0.3/intel/17.0.1/mpich/3.2/nopthread_64bit_parallel/include
LOADEDMODULES = sems-env:sems-git/2.10.1:sems-python/2.7.9:sems-gcc/4.9.3:sems-intel/17.0.1:sems-mpich/3.2:sems-boost/1.63.0/base:sems-zlib/1.2.8/base:sems-hdf5/1.10.6/parallel:sems-netcdf/4.7.3/parallel:sems-parmetis/4.0.3/parallel:sems-scotch/6.0.3/nopthread_64bit_parallel:sems-superlu/4.3/base:sems-cmake/3.10.3:atdm-env:atdm-ninja_fortran/1.7.2
WORKSPACE_TMP = /scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1@tmp
SEMS_CMAKE_VERSION = 3.10.3
HISTCONTROL = ignoredups
SERIAL_CXX = icpc
PWD = /scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1
JENKINS_SERVER_COOKIE = 248910a9cd8de38c
BUILD_DISPLAY_NAME = #6795
PULLREQUESTNUM = 7508
SEMS_SUPERLU_INCLUDE_PATH = /projects/sems/install/rhel6-x86_64/sems/tpl/superlu/4.3/intel/17.0.1/base/include

==========================================================================================
None
PULLREQUEST_CDASH_TRACK is set. Setting CDASH_TRACK=Pull Request
Enabled packages:
-- Setting Trilinos_ENABLE_ALL_PACKAGES = ON
-- Setting Trilinos_ENABLE_TrilinosATDMConfigTests = ON
-- Setting Trilinos_ENABLE_TrilinosBuildStats = ON

Set CWD = /scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/TFW_testing_single_configure_prototype
Traceback (most recent call last):
File "/scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/Trilinos/cmake/std/PullRequestLinuxDriverTest.py", line 701, in
returnValue = run()
File "/scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/Trilinos/cmake/std/PullRequestLinuxDriverTest.py", line 694, in run
'-Dsubprojects_file=../package_subproject_list.cmake'])
File "/projects/sems/install/rhel6-x86_64/sems/compiler/python/2.7.9/lib/python2.7/subprocess.py", line 540, in check_call
raise CalledProcessError(retcode, cmd)
subprocess.CalledProcessError: Command '['ctest', '-S', 'simple_testing.cmake', '-Dbuild_name=PR-7508-test-Trilinos_pullrequest_intel_17.0.1-6795', '-Dskip_by_parts_submit=OFF', '-Dskip_update_step=ON', '-Ddashboard_model=Experimental', '-Ddashboard_track=Pull Request', '-DPARALLEL_LEVEL=20', '-DTEST_PARALLEL_LEVEL=10', '-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/PullRequestLinuxIntelTestingSettings.cmake', '-Dpackage_enables=../packageEnables.cmake', '-Dsubprojects_file=../package_subproject_list.cmake']' returned non-zero exit status 255
Build step 'Execute shell' marked build as failure
Archiving artifacts
Finished: FAILURE

Console Output (last 100 lines) : Trilinos_pullrequest_gcc_4.9.3_SERIAL # 5220 (click to expand)

F) Generate the package_subproject_list.cmake file

Wrote file 'package_subproject_list.cmake'
Build name = PR-7508-test-Trilinos_pullrequest_gcc_4.9.3_SERIAL-5220
Cur dir = /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/TFW_testing_single_configure_prototype
Source dir = /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/Trilinos
Binary dir = /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/pull_request_test
Parallel level = 20
Testing Parallel level = 10
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 = 59
Dashboard model = Experimental
Dashboard track = Pull Request
Running configuration:
/projects/sems/install/rhel7-x86_64/sems/utility/cmake/3.10.3/bin/cmake
-C "/scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/Trilinos/cmake/std/PullRequestLinuxGCC4.9.3TestingSettingsSERIAL.cmake"
-C "/scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/packageEnables.cmake"
-DTrilinos_ENABLE_TESTS:BOOL=ON
-DTrilinos_PARALLEL_LINK_JOBS_LIMIT:STRING=2
-G "Ninja"
/scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/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=ascic166&field2=buildname&compare2=61&value2=PR-7508-test-Trilinos_pullrequest_gcc_4.9.3_SERIAL-5220&field3=buildstamp&compare3=61&value3=20200610-0405-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-7508-test-Trilinos_pullrequest_gcc_4.9.3_SERIAL-5220&field2=buildstamp&compare2=61&value2=20200610-0405-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-7508-test-Trilinos_pullrequest_gcc_4.9.3_SERIAL-5220&field2=buildstamp&compare2=61&value2=20200610-0405-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 of output: 380K
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 of output: 243K
Build succeeded.
build submit error = 0
Starting testing step.
CMake Error: archive_read_disk_entry_from_file 'build_stats.csv': Can't lstat build_stats.csv
Error creating tar while encoding file: /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/pull_request_test/build_stats.csv
CMake Error at /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/TFW_testing_single_configure_prototype/simple_testing.cmake:218 (message):
Test failed with error -1

test submit error = 0
File upload submit error = 0
TH = /projects/sems/install/rhel7-x86_64/sems/tpl/netcdf/4.7.3/gcc/4.9.3/base/include
MODULE_VERSION_STACK = 3.2.10
JOB_COOWNERS_EMAILS = wcmclen@sandia.gov,trilinos@sandia.gov
SEMS_NETCDF_LIBRARY_PATH = /projects/sems/install/rhel7-x86_64/sems/tpl/netcdf/4.7.3/gcc/4.9.3/base/lib
GIT_BRANCH = origin/develop
SEMS_BOOST_LIBRARY_PATH = /projects/sems/install/rhel7-x86_64/sems/tpl/boost/1.63.0/gcc/4.9.3/base/lib
SEMS_GCC_LOCAL_COMPILER_VERSION = 4.8.5
SNLSYSTEM = cee
SEMS_HDF5_ROOT = /projects/sems/install/rhel7-x86_64/sems/tpl/hdf5/1.10.6/gcc/4.9.3/base
LOADEDMODULES = sems-env:sems-git/2.10.1:sems-python/2.7.9:sems-gcc/4.9.3:sems-boost/1.63.0/base:sems-zlib/1.2.8/base:sems-hdf5/1.10.6/base:sems-netcdf/4.7.3/base:sems-metis/5.1.0/base:sems-superlu/4.3/base:sems-cmake/3.10.3:atdm-env:atdm-ninja_fortran/1.7.2
WORKSPACE_TMP = /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL@tmp
SEMS_CMAKE_VERSION = 3.10.3
HISTCONTROL = ignoredups
SERIAL_CXX = g++
PWD = /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL
JENKINS_SERVER_COOKIE = 248910a9cd8de38c
BUILD_DISPLAY_NAME = #5220
PULLREQUESTNUM = 7508
SEMS_SUPERLU_INCLUDE_PATH = /projects/sems/install/rhel7-x86_64/sems/tpl/superlu/4.3/gcc/4.9.3/base/include

==========================================================================================
None
PULLREQUEST_CDASH_TRACK is set. Setting CDASH_TRACK=Pull Request
Enabled packages:
-- Setting Trilinos_ENABLE_ALL_PACKAGES = ON
-- Setting Trilinos_ENABLE_TrilinosATDMConfigTests = ON
-- Setting Trilinos_ENABLE_TrilinosBuildStats = ON

Set CWD = /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/TFW_testing_single_configure_prototype
Traceback (most recent call last):
File "/scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/Trilinos/cmake/std/PullRequestLinuxDriverTest.py", line 701, in
returnValue = run()
File "/scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/Trilinos/cmake/std/PullRequestLinuxDriverTest.py", line 694, in run
'-Dsubprojects_file=../package_subproject_list.cmake'])
File "/projects/sems/install/rhel7-x86_64/sems/compiler/python/2.7.9/lib/python2.7/subprocess.py", line 540, in check_call
raise CalledProcessError(retcode, cmd)
subprocess.CalledProcessError: Command '['ctest', '-S', 'simple_testing.cmake', '-Dbuild_name=PR-7508-test-Trilinos_pullrequest_gcc_4.9.3_SERIAL-5220', '-Dskip_by_parts_submit=OFF', '-Dskip_update_step=ON', '-Ddashboard_model=Experimental', '-Ddashboard_track=Pull Request', '-DPARALLEL_LEVEL=20', '-DTEST_PARALLEL_LEVEL=10', '-Dbuild_dir=/scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/pull_request_test', '-Dconfigure_script=/scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/Trilinos/cmake/std/PullRequestLinuxGCC4.9.3TestingSettingsSERIAL.cmake', '-Dpackage_enables=../packageEnables.cmake', '-Dsubprojects_file=../package_subproject_list.cmake']' returned non-zero exit status 255
Build step 'Execute shell' marked build as failure
Archiving artifacts
Finished: FAILURE

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

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-7508-test-Trilinos_pullrequest_gcc_7.2.0-5067
Cur dir = /scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/TFW_testing_single_configure_prototype
Source dir = /scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/Trilinos
Binary dir = /scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/pull_request_test
Parallel level = 13
Testing Parallel level = 10
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 = 59
Dashboard model = Experimental
Dashboard track = Pull Request
Running configuration:
/projects/sems/install/rhel6-x86_64/sems/utility/cmake/3.10.3/bin/cmake
-C "/scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/Trilinos/cmake/std/PullRequestLinuxGCC7.2.0TestingSettings.cmake"
-C "/scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/packageEnables.cmake"
-DTrilinos_ENABLE_TESTS:BOOL=ON
-DTrilinos_PARALLEL_LINK_JOBS_LIMIT:STRING=2
-G "Ninja"
/scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/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-7508-test-Trilinos_pullrequest_gcc_7.2.0-5067&field3=buildstamp&compare3=61&value3=20200610-0405-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-7508-test-Trilinos_pullrequest_gcc_7.2.0-5067&field2=buildstamp&compare2=61&value2=20200610-0405-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-7508-test-Trilinos_pullrequest_gcc_7.2.0-5067&field2=buildstamp&compare2=61&value2=20200610-0405-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 of output: 441K
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 of output: 275K
Build succeeded.
build submit error = 0
Starting testing step.
CMake Error: archive_read_disk_entry_from_file 'build_stats.csv': Can't lstat build_stats.csv
Error creating tar while encoding file: /scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/pull_request_test/build_stats.csv
CMake Error at /scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.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
/sems/tpl/hdf5/1.10.6/gcc/7.2.0/openmpi/1.10.1/parallel
SEMS_SCOTCH_INCLUDE_PATH = /projects/sems/install/rhel6-x86_64/sems/tpl/scotch/6.0.3/gcc/7.2.0/openmpi/1.10.1/nopthread_64bit_parallel/include
LOADEDMODULES = sems-env:sems-git/2.10.1:sems-python/2.7.9:sems-gcc/7.2.0:sems-openmpi/1.10.1:sems-boost/1.63.0/base:sems-zlib/1.2.8/base:sems-hdf5/1.10.6/parallel:sems-netcdf/4.7.3/parallel:sems-parmetis/4.0.3/parallel:sems-scotch/6.0.3/nopthread_64bit_parallel:sems-superlu/4.3/base:sems-cmake/3.10.3:atdm-env:atdm-ninja_fortran/1.7.2
WORKSPACE_TMP = /scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0@tmp
SEMS_CMAKE_VERSION = 3.10.3
HISTCONTROL = ignoredups
SERIAL_CXX = g++
PWD = /scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0
JENKINS_SERVER_COOKIE = 248910a9cd8de38c
BUILD_DISPLAY_NAME = #5067
PULLREQUESTNUM = 7508
SEMS_SUPERLU_INCLUDE_PATH = /projects/sems/install/rhel6-x86_64/sems/tpl/superlu/4.3/gcc/7.2.0/base/include

==========================================================================================
None
PULLREQUEST_CDASH_TRACK is set. Setting CDASH_TRACK=Pull Request
Enabled packages:
-- Setting Trilinos_ENABLE_ALL_PACKAGES = ON
-- Setting Trilinos_ENABLE_TrilinosATDMConfigTests = ON
-- Setting Trilinos_ENABLE_TrilinosBuildStats = ON

Set CWD = /scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/TFW_testing_single_configure_prototype
Traceback (most recent call last):
File "/scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/Trilinos/cmake/std/PullRequestLinuxDriverTest.py", line 701, in
returnValue = run()
File "/scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/Trilinos/cmake/std/PullRequestLinuxDriverTest.py", line 694, in run
'-Dsubprojects_file=../package_subproject_list.cmake'])
File "/projects/sems/install/rhel6-x86_64/sems/compiler/python/2.7.9/lib/python2.7/subprocess.py", line 540, in check_call
raise CalledProcessError(retcode, cmd)
subprocess.CalledProcessError: Command '['ctest', '-S', 'simple_testing.cmake', '-Dbuild_name=PR-7508-test-Trilinos_pullrequest_gcc_7.2.0-5067', '-Dskip_by_parts_submit=OFF', '-Dskip_update_step=ON', '-Ddashboard_model=Experimental', '-Ddashboard_track=Pull Request', '-DPARALLEL_LEVEL=13', '-DTEST_PARALLEL_LEVEL=10', '-Dbuild_dir=/scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/pull_request_test', '-Dconfigure_script=/scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/Trilinos/cmake/std/PullRequestLinuxGCC7.2.0TestingSettings.cmake', '-Dpackage_enables=../packageEnables.cmake', '-Dsubprojects_file=../package_subproject_list.cmake']' returned non-zero exit status 255
Build step 'Execute shell' marked build as failure
Archiving artifacts
Finished: FAILURE

Console Output (last 100 lines) : Trilinos_pullrequest_gcc_8.3.0 # 1256 (click to expand)

Build name               = PR-7508-test-Trilinos_pullrequest_gcc_8.3.0-1256
Cur dir                  = /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/TFW_testing_single_configure_prototype
Source dir               = /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/Trilinos
Binary dir               = /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/pull_request_test
Parallel level           = 20
Testing Parallel level   = 10
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         = 59
Dashboard model          = Experimental
Dashboard track          = Pull Request
Running configuration:
/projects/sems/install/rhel7-x86_64/sems/utility/cmake/3.10.3/bin/cmake 
  -C "/scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/Trilinos/cmake/std/PullRequestLinuxGCC8.3.0TestingSettings.cmake"
  -C "/scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/packageEnables.cmake"
  -DTrilinos_ENABLE_TESTS:BOOL=ON
  -DTrilinos_PARALLEL_LINK_JOBS_LIMIT:STRING=2
  -G "Ninja"
  /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/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=ascic166&field2=buildname&compare2=61&value2=PR-7508-test-Trilinos_pullrequest_gcc_8.3.0-1256&field3=buildstamp&compare3=61&value3=20200610-0405-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-7508-test-Trilinos_pullrequest_gcc_8.3.0-1256&field2=buildstamp&compare2=61&value2=20200610-0405-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-7508-test-Trilinos_pullrequest_gcc_8.3.0-1256&field2=buildstamp&compare2=61&value2=20200610-0405-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 of output: 441K
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 of output: 275K
Build succeeded.
build submit error = 0
Starting testing step.
CMake Error: archive_read_disk_entry_from_file 'build_stats.csv': Can't lstat build_stats.csv
Error creating tar while encoding file: /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/pull_request_test/build_stats.csv
CMake Error at /scratch/trilinos/jenkins/ascic166/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
RS_EMAILS = HRSwant@sandia.gov,trilinos@sandia.gov
SEMS_PARMETIS_LOCAL_COMPILER_VERSION = 4.8.5
SEMS_PARMETIS_LOCAL_PYTHON_VERSION = 2.7.5
SEMS_NETCDF_LIBRARY_PATH = /projects/sems/install/rhel7-x86_64/sems/tpl/netcdf/4.7.3/gcc/8.3.0/openmpi/1.10.1/parallel/lib
GIT_BRANCH = origin/develop
SEMS_BOOST_LIBRARY_PATH = /projects/sems/install/rhel7-x86_64/sems/tpl/boost/1.66.0/gcc/8.3.0/base/lib
SEMS_GCC_LOCAL_COMPILER_VERSION = 4.8.5
SNLSYSTEM = cee
MPIF77 = mpif77
SEMS_HDF5_ROOT = /projects/sems/install/rhel7-x86_64/sems/tpl/hdf5/1.10.6/gcc/8.3.0/openmpi/1.10.1/parallel
SEMS_SCOTCH_INCLUDE_PATH = /projects/sems/install/rhel7-x86_64/sems/tpl/scotch/6.0.3/gcc/8.3.0/openmpi/1.10.1/nopthread_64bit_parallel/include
LOADEDMODULES = sems-env:sems-git/2.10.1:sems-python/2.7.9:sems-gcc/8.3.0:sems-openmpi/1.10.1:sems-boost/1.66.0/base:sems-zlib/1.2.8/base:sems-hdf5/1.10.6/parallel:sems-netcdf/4.7.3/parallel:sems-parmetis/4.0.3/parallel:sems-scotch/6.0.3/nopthread_64bit_parallel:sems-superlu/4.3/base:sems-cmake/3.10.3:atdm-env:atdm-ninja_fortran/1.7.2
WORKSPACE_TMP = /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0@tmp
SEMS_CMAKE_VERSION = 3.10.3
HISTCONTROL = ignoredups
SERIAL_CXX = g++
PWD = /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0
JENKINS_SERVER_COOKIE = 248910a9cd8de38c
BUILD_DISPLAY_NAME = #1256
PULLREQUESTNUM = 7508
SEMS_SUPERLU_INCLUDE_PATH = /projects/sems/install/rhel7-x86_64/sems/tpl/superlu/4.3/gcc/8.3.0/base/include

==========================================================================================
None
PULLREQUEST_CDASH_TRACK is set. Setting CDASH_TRACK=Pull Request
Enabled packages:
-- Setting Trilinos_ENABLE_ALL_PACKAGES = ON
-- Setting Trilinos_ENABLE_TrilinosATDMConfigTests = ON
-- Setting Trilinos_ENABLE_TrilinosBuildStats = ON

Set CWD = /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/TFW_testing_single_configure_prototype
Traceback (most recent call last):
File "/scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/Trilinos/cmake/std/PullRequestLinuxDriverTest.py", line 701, in
returnValue = run()
File "/scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/Trilinos/cmake/std/PullRequestLinuxDriverTest.py", line 694, in run
'-Dsubprojects_file=../package_subproject_list.cmake'])
File "/projects/sems/install/rhel7-x86_64/sems/compiler/python/2.7.9/lib/python2.7/subprocess.py", line 540, in check_call
raise CalledProcessError(retcode, cmd)
subprocess.CalledProcessError: Command '['ctest', '-S', 'simple_testing.cmake', '-Dbuild_name=PR-7508-test-Trilinos_pullrequest_gcc_8.3.0-1256', '-Dskip_by_parts_submit=OFF', '-Dskip_update_step=ON', '-Ddashboard_model=Experimental', '-Ddashboard_track=Pull Request', '-DPARALLEL_LEVEL=20', '-DTEST_PARALLEL_LEVEL=10', '-Dbuild_dir=/scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/pull_request_test', '-Dconfigure_script=/scratch/trilinos/jenkins/ascic166/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']' returned non-zero exit status 255
Build step 'Execute shell' marked build as failure
Archiving artifacts
Finished: FAILURE

Console Output (last 100 lines) : Trilinos_pullrequest_cuda_9.2 # 4551 (click to expand)

CMake Error: archive_read_disk_entry_from_file 'build_stats.csv': Can't lstat build_stats.csv
Error creating tar while encoding file: /home/trilinos/jenkins/ride/workspace/trilinos-folder/Trilinos_pullrequest_cuda_9.2/pull_request_test/build_stats.csv
CMake Error at /home/trilinos/jenkins/ride/workspace/trilinos-folder/Trilinos_pullrequest_cuda_9.2/TFW_testing_single_configure_prototype/simple_testing.cmake:218 (message):
  Test failed with error -1

test submit error = 0
File upload submit error = 0
0 ride10 ride10 ride10 ride10 ride10
METIS_ROOT = /home/projects/ppc64le-pwr8/metis/5.0.1/gcc/7.2.0
NODE_OWNER_EMAIL = ceeadmin@sandia.gov
LSB_EXIT_PRE_ABORT = 99
TRILINOS_SOURCE_REPO = https://github.com/bartlettroscoe/Trilinos
PARMETIS_HOME = /home/projects/ppc64le-pwr8-nvidia/parmetis/4.0.3/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88
FC_VERSION = 7.2.0
LSB_JOBFILENAME = /ascldap/users/trilinos/.lsbatch/1591761956.4660
BLAS_ROOT = /home/projects/ppc64le-pwr8/netlib/3.8.0/gcc/7.2.0
GIT_CHECKOUT_DIR = Trilinos
LSB_AFFINITY_HOSTFILE = /ascldap/users/trilinos/.lsbatch/1591761956.4660.hostAffinityFile
PARMETIS_ROOT = /home/projects/ppc64le-pwr8-nvidia/parmetis/4.0.3/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88
LSF_ENVDIR = /opt/lsf/conf
MPI_VENDOR = openmpi
PYTHON = /home/projects/ppc64le/python/2.7.12/bin/python
CXX_VENDOR = gcc
HDF5_ROOT = /home/projects/ppc64le-pwr8-nvidia/hdf5/1.8.20/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88
HOSTTYPE = LINUXPPC64LE
SSH_CLIENT = 205.137.81.17 44298 22
JENKINS_URL = https://ascic-jenkins.sandia.gov/
LOGNAME = trilinos
LSF_LIM_API_NTRIES = 1
PATH = /ascldap/users/rabartl/install/white-ride/cmake-3.11.2/bin:/ascldap/users/rabartl/install/white-ride/ninja-1.8.2/bin:/home/projects/ppc64le/valgrind/3.12.0/bin:/home/projects/ppc64le/cmake/3.9.6/bin:/home/projects/ppc64le-pwr8-nvidia/parmetis/4.0.3/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88/bin:/home/projects/ppc64le-pwr8/metis/5.0.1/gcc/7.2.0/bin:/home/projects/ppc64le-pwr8-nvidia/netcdf/4.6.1/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88/bin:/home/projects/ppc64le-pwr8-nvidia/hdf5/1.8.20/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88/bin:/home/projects/ppc64le-pwr8-nvidia/pnetcdf-exo/1.9.0/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88/bin:/home/projects/ppc64le-pwr8-nvidia/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88/bin:/home/projects/ppc64le/java/ibm/sdk/8.0.0/bin:/home/projects/ppc64le/papi/5.5.1/bin:/home/projects/ppc64le/gcc/7.2.0/bin:/home/projects/ppc64le/binutils/2.30.0/bin:/home/projects/ppc64le-pwr8-nvidia/cuda/9.2.88/bin:/home/projects/ppc64le/python/2.7.12/bin:/home/projects/ppc64le/git/2.10.1/bin:/opt/lsf/10.1/linux3.10-glibc2.17-ppc64le/bin:/opt/lsf/10.1/linux3.10-glibc2.17-ppc64le/etc:/usr/local/bin:/usr/bin:/opt/ibutils/bin:/usr/local/sbin:/usr/sbin:/ascldap/users/trilinos/.local/bin:/ascldap/users/trilinos/bin
LSB_QUEUE = rhel7F
LSF_JOB_TIMESTAMP_VALUE = 1591761956
LSB_EXEC_HOSTTYPE = LINUXPPC64LE
GIT_PREVIOUS_SUCCESSFUL_COMMIT = 7ba2010fcc115c100e61e5fe57e23c4a3149fa1e
LSB_DJOB_HOSTFILE = /ascldap/users/trilinos/.lsbatch/1591761956.4660.hostfile
no_proxy = localhost,localnets,127.0.0.1,169.254.0.0/16,forge.sandia.gov
LSF_LIBDIR = /opt/lsf/10.1/linux3.10-glibc2.17-ppc64le/lib
CGNS_VERSION = 20180521
LSB_SUB_USER = trilinos
NODE_LABELS = ride-trilinos trilinos-ride
GIT_BRANCH_2 = origin/pull_request_changes
GIT_CHECKOUT_DIR_1 = TFW_single_configure_support_scripts
GIT_CHECKOUT_DIR_2 = TFW_testing_single_configure_prototype
JOB_OWNER_EMAIL = HRSwant@sandia.gov
PULLREQUEST_CDASH_TRACK = Pull Request
BUILD_ID = 4551
SBD_KRB5CCNAME_VAL =
LSB_RES_GET_FANOUT_INFO = Y
RUN_DISPLAY_URL = https://ascic-jenkins.sandia.gov/job/trilinos-folder/job/Trilinos_pullrequest_cuda_9.2/4551/display/redirect
JOB_COOWNERS_EMAILS = HRSwant@sandia.gov,trilinos@sandia.gov
LSB_BATCH_JID = 4660
MPI_HOME = /home/projects/ppc64le-pwr8-nvidia/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88
SUPERLU_HOME = /home/projects/ppc64le-pwr8/superlu/4.3.0/gcc/7.2.0
F77_VENDOR = gcc
KRB5CCNAME = FILE:/tmp/krb5cc_91724_bqNHm8maFh
BINUTILS_VERSION = 2.30.0
GIT_BRANCH = origin/develop
CMAKE_ROOT = /home/projects/ppc64le/cmake/3.9.6
BOOST_ROOT = /home/projects/ppc64le-pwr8/boost/1.65.1/gcc/7.2.0
VALGRIND_ROOT = /home/projects/ppc64le/valgrind/3.12.0
MPIF77 = /home/projects/ppc64le-pwr8-nvidia/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88/bin/mpif77
PARMETIS_VERSION = 4.0.3
LSB_JOBNAME = trilinos-folder/Trilinos_pullrequest_cuda_9.2
LOADEDMODULES = git/2.10.1:python/2.7.12:cuda/9.2.88:binutils/2.30.0:gcc/7.2.0:papi/5.5.1:java/ibm/sdk/8.0.0:openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88:pnetcdf-exo/1.9.0/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88:zlib/1.2.8:hdf5/1.8.20/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88:netcdf/4.6.1/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88:cgns/20180521/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88:netlib/3.8.0/gcc/7.2.0:superlu/4.3.0/gcc/7.2.0:boost/1.65.1/gcc/7.2.0:metis/5.0.1/gcc/7.2.0:parmetis/4.0.3/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88:cmake/3.9.6:valgrind/3.12.0:devpack/20180521/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88
WORKSPACE_TMP = /home/trilinos/jenkins/ride/workspace/trilinos-folder/Trilinos_pullrequest_cuda_9.2@tmp
GIT_BRANCH_1 = origin/master
CUDA_MANAGED_FORCE_DEVICE_ALLOC = 1
HISTCONTROL = ignoredups
PWD = /home/trilinos/jenkins/ride/workspace/trilinos-folder/Trilinos_pullrequest_cuda_9.2
LS_EXECCWD = /home/trilinos/jenkins/ride/workspace/trilinos-folder/Trilinos_pullrequest_cuda_9.2
JENKINS_SERVER_COOKIE = 248910a9cd8de38c
BUILD_DISPLAY_NAME = #4551
CXX_VERSION = 7.2.0
PYTHON_ROOT = /home/projects/ppc64le/python/2.7.12
OMPI_CXX = /home/trilinos/jenkins/ride/workspace/trilinos-folder/Trilinos_pullrequest_cuda_9.2/Trilinos/packages/kokkos/bin/nvcc_wrapper
SUPERLU_VERSION = 4.3.0
PULLREQUESTNUM = 7508
BINARY_TYPE_HPC =

==========================================================================================
None
PULLREQUEST_CDASH_TRACK is set. Setting CDASH_TRACK=Pull Request
Enabled packages:
-- Setting Trilinos_ENABLE_ALL_PACKAGES = ON
-- Setting Trilinos_ENABLE_TrilinosATDMConfigTests = ON
-- Setting Trilinos_ENABLE_TrilinosBuildStats = ON

Set CWD = /home/trilinos/jenkins/ride/workspace/trilinos-folder/Trilinos_pullrequest_cuda_9.2/TFW_testing_single_configure_prototype
Traceback (most recent call last):
File "/home/trilinos/jenkins/ride/workspace/trilinos-folder/Trilinos_pullrequest_cuda_9.2/Trilinos/cmake/std/PullRequestLinuxDriverTest.py", line 701, in
returnValue = run()
File "/home/trilinos/jenkins/ride/workspace/trilinos-folder/Trilinos_pullrequest_cuda_9.2/Trilinos/cmake/std/PullRequestLinuxDriverTest.py", line 694, in run
'-Dsubprojects_file=../package_subproject_list.cmake'])
File "/home/projects/ppc64le/python/2.7.12/lib/python2.7/subprocess.py", line 541, in check_call
raise CalledProcessError(retcode, cmd)
subprocess.CalledProcessError: Command '['ctest', '-S', 'simple_testing.cmake', '-Dbuild_name=PR-7508-test-Trilinos_pullrequest_cuda_9.2-4551', '-Dskip_by_parts_submit=OFF', '-Dskip_update_step=ON', '-Ddashboard_model=Experimental', '-Ddashboard_track=Pull Request', '-DPARALLEL_LEVEL=64', '-DTEST_PARALLEL_LEVEL=8', '-Dbuild_dir=/home/trilinos/jenkins/ride/workspace/trilinos-folder/Trilinos_pullrequest_cuda_9.2/pull_request_test', '-Dconfigure_script=/home/trilinos/jenkins/ride/workspace/trilinos-folder/Trilinos_pullrequest_cuda_9.2/Trilinos/cmake/std/PullRequestLinuxCuda9.2TestingSettings.cmake', '-Dpackage_enables=../packageEnables.cmake', '-Dsubprojects_file=../package_subproject_list.cmake']' returned non-zero exit status 255
Build step 'Execute shell' marked build as failure
Archiving artifacts
Finished: FAILURE

Console Output (last 100 lines) : Trilinos_pullrequest_clang_9.0.0 # 926 (click to expand)

Cur dir                  = /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_clang_9.0.0/TFW_testing_single_configure_prototype
Source dir               = /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_clang_9.0.0/Trilinos
Binary dir               = /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_clang_9.0.0/pull_request_test
Parallel level           = 10
Testing Parallel level   = 10
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         = 59
Dashboard model          = Experimental
Dashboard track          = Pull Request
Running configuration:
/projects/sems/install/rhel6-x86_64/sems/utility/cmake/3.12.2/bin/cmake 
  -C "/scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_clang_9.0.0/Trilinos/cmake/std/PullRequestLinuxClang9.0.0TestingSettings.cmake"
  -C "/scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_clang_9.0.0/packageEnables.cmake"
  -DTrilinos_ENABLE_TESTS:BOOL=ON
  -DTrilinos_PARALLEL_LINK_JOBS_LIMIT:STRING=2
  -G "Ninja"
  /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_clang_9.0.0/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=ascic141&field2=buildname&compare2=61&value2=PR-7508-test-Trilinos_pullrequest_clang_9.0.0-926&field3=buildstamp&compare3=61&value3=20200610-0406-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-7508-test-Trilinos_pullrequest_clang_9.0.0-926&field2=buildstamp&compare2=61&value2=20200610-0406-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-7508-test-Trilinos_pullrequest_clang_9.0.0-926&field2=buildstamp&compare2=61&value2=20200610-0406-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 of output: 437K
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 of output: 266K
Build succeeded.
build submit error = 0
Starting testing step.
CMake Error: archive_read_disk_entry_from_file 'build_stats.csv': Can't lstat build_stats.csv
Error creating tar while encoding file: /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_clang_9.0.0/pull_request_test/build_stats.csv
CMake Error at /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_clang_9.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
3.2.10
JOB_COOWNERS_EMAILS = HRSwant@sandia.gov,trilinos@sandia.gov
SEMS_PARMETIS_LOCAL_COMPILER_VERSION = 4.4.7
SEMS_PARMETIS_LOCAL_PYTHON_VERSION = 2.6.6
SEMS_NETCDF_LIBRARY_PATH = /projects/sems/install/rhel6-x86_64/sems/tpl/netcdf/4.7.3/clang/9.0.0/openmpi/1.10.1/parallel/lib
GIT_URL = https://github.com/trilinos/Trilinos
SEMS_BOOST_LIBRARY_PATH = /projects/sems/install/rhel6-x86_64/sems/tpl/boost/1.63.0/clang/9.0.0/base/lib
SEMS_GCC_LOCAL_COMPILER_VERSION = 4.4.7
SNLSYSTEM = cee
MPIF77 = mpif77
SEMS_HDF5_ROOT = /projects/sems/install/rhel6-x86_64/sems/tpl/hdf5/1.10.6/clang/9.0.0/openmpi/1.10.1/parallel
SEMS_SCOTCH_INCLUDE_PATH = /projects/sems/install/rhel6-x86_64/sems/tpl/scotch/6.0.3/clang/9.0.0/openmpi/1.10.1/nopthread_64bit_parallel/include
LOADEDMODULES = sems-env:sems-git/2.10.1:sems-python/2.7.9:sems-gcc/5.3.0:sems-clang/9.0.0:sems-openmpi/1.10.1:sems-boost/1.63.0/base:sems-zlib/1.2.8/base:sems-hdf5/1.10.6/parallel:sems-netcdf/4.7.3/parallel:sems-parmetis/4.0.3/parallel:sems-scotch/6.0.3/nopthread_64bit_parallel:sems-superlu/4.3/base:sems-cmake/3.12.2:atdm-env:atdm-ninja_fortran/1.7.2
WORKSPACE_TMP = /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_clang_9.0.0@tmp
SEMS_CMAKE_VERSION = 3.12.2
HISTCONTROL = ignoredups
SERIAL_CXX = clang++
PWD = /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_clang_9.0.0
JENKINS_SERVER_COOKIE = 248910a9cd8de38c
BUILD_DISPLAY_NAME = #926
PULLREQUESTNUM = 7508
SEMS_SUPERLU_INCLUDE_PATH = /projects/sems/install/rhel6-x86_64/sems/tpl/superlu/4.3/clang/9.0.0/base/include

==========================================================================================
None
PULLREQUEST_CDASH_TRACK is set. Setting CDASH_TRACK=Pull Request
Enabled packages:
-- Setting Trilinos_ENABLE_ALL_PACKAGES = ON
-- Setting Trilinos_ENABLE_TrilinosATDMConfigTests = ON
-- Setting Trilinos_ENABLE_TrilinosBuildStats = ON

Set CWD = /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_clang_9.0.0/TFW_testing_single_configure_prototype
Traceback (most recent call last):
File "/scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_clang_9.0.0/Trilinos/cmake/std/PullRequestLinuxDriverTest.py", line 701, in
returnValue = run()
File "/scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_clang_9.0.0/Trilinos/cmake/std/PullRequestLinuxDriverTest.py", line 694, in run
'-Dsubprojects_file=../package_subproject_list.cmake'])
File "/projects/sems/install/rhel6-x86_64/sems/compiler/python/2.7.9/lib/python2.7/subprocess.py", line 540, in check_call
raise CalledProcessError(retcode, cmd)
subprocess.CalledProcessError: Command '['ctest', '-S', 'simple_testing.cmake', '-Dbuild_name=PR-7508-test-Trilinos_pullrequest_clang_9.0.0-926', '-Dskip_by_parts_submit=OFF', '-Dskip_update_step=ON', '-Ddashboard_model=Experimental', '-Ddashboard_track=Pull Request', '-DPARALLEL_LEVEL=10', '-DTEST_PARALLEL_LEVEL=10', '-Dbuild_dir=/scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_clang_9.0.0/pull_request_test', '-Dconfigure_script=/scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_clang_9.0.0/Trilinos/cmake/std/PullRequestLinuxClang9.0.0TestingSettings.cmake', '-Dpackage_enables=../packageEnables.cmake', '-Dsubprojects_file=../package_subproject_list.cmake']' returned non-zero exit status 255
Build step 'Execute shell' marked build as failure
Archiving artifacts
Finished: FAILURE

Console Output (last 100 lines) : Trilinos_pullrequest_python_2 # 2666 (click to expand)

SEMS_NINJA_FORTRAN_LOCAL_COMPILER_VERSION = 4.8.5
F77 = gfortran
TRILINOS_TARGET_REPO = https://github.com/trilinos/Trilinos
NODE_OWNER_EMAIL = ceeadmin@sandia.gov
SEMS_GIT_LOCAL_PYTHON_VERSION = 2.7.5
NODE_NAME = tr-test-4-trilinos
GIT_CHECKOUT_DIR = Trilinos
SEMS_NINJA_FORTRAN_VERSION = 1.7.2
SEMS_COMPILER_VERSION = 7.2.0
SSH_CLIENT = 205.137.81.17 57002 22
JENKINS_URL = https://ascic-jenkins.sandia.gov/
LOGNAME = trilinos
NODE_LABELS = tr-test-4-trilinos trilinos-32 trilinos-any trilinos-cloud-32 trilinos_cloud_32_node_4
PATH = /projects/sierra/linux_rh7/install/Python/2.7.15/bin:/projects/sierra/linux_rh7/install/Python/extrasbin:/projects/sems/install/rhel7-x86_64/atdm/utility/ninja_fortran/1.7.2/sbin:/projects/sems/install/rhel7-x86_64/atdm/utility/ninja_fortran/1.7.2/bin:/projects/sems/install/rhel7-x86_64/sems/utility/cmake/3.10.3/sbin:/projects/sems/install/rhel7-x86_64/sems/utility/cmake/3.10.3/bin:/projects/sems/install/rhel7-x86_64/sems/compiler/gcc/7.2.0/base/bin:/projects/sems/install/rhel7-x86_64/sems/utility/git/2.10.1/sbin:/projects/sems/install/rhel7-x86_64/sems/utility/git/2.10.1/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/ascldap/users/trilinos/.local/bin:/ascldap/users/trilinos/bin
SEMS_NINJA_FORTRAN_LOCAL_PYTHON_VERSION = 2.7.5
GIT_PREVIOUS_SUCCESSFUL_COMMIT = 7ba2010fcc115c100e61e5fe57e23c4a3149fa1e
no_proxy = localhost,localnets,127.0.0.1,169.254.0.0/16,forge.sandia.gov
CC = gcc
SEMS_CMAKE_LOCAL_COMPILER_VERSION = 4.8.5
JOB_OWNER_EMAIL = prwolfe@sandia.gov
PULLREQUEST_CDASH_TRACK = Pull Request
BUILD_ID = 2666
JOB_COOWNERS_EMAILS = prwolfe@sandia.gov,trilinos@sandia.gov
GIT_URL = https://github.com/trilinos/Trilinos
SEMS_GCC_LOCAL_COMPILER_VERSION = 4.8.5
LOADEDMODULES = sems-env:sems-git/2.10.1:sems-gcc/7.2.0:sems-cmake/3.10.3:atdm-env:atdm-ninja_fortran/1.7Currently Loaded Modulefiles:
  1) sems-env                   4) sems-cmake/3.10.3
  2) sems-git/2.10.1            5) atdm-env
  3) sems-gcc/7.2.0             6) atdm-ninja_fortran/1.7.2
Build name               = PR-7508-test-Trilinos_pullrequest_python_2-2666
Cur dir                  = /scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_python_2/TFW_testing_single_configure_prototype
Source dir               = /scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_python_2/Trilinos
Binary dir               = /scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_python_2/pull_request_test
Parallel level           = 20
Testing Parallel level   = 20
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         = 1
Dashboard model          = Experimental
Dashboard track          = Pull Request
Running configuration:
/projects/sems/install/rhel7-x86_64/sems/utility/cmake/3.10.3/bin/cmake 
  -C "/scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_python_2/Trilinos/cmake/std/PullRequestLinuxPython2.cmake"
  -C "/scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_python_2/packageEnables.cmake"
  -DTrilinos_ENABLE_TESTS:BOOL=ON
  -DTrilinos_PARALLEL_LINK_JOBS_LIMIT:STRING=2
  -G "Ninja"
  /scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_python_2/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=tr-test-4.novalocal&field2=buildname&compare2=61&value2=PR-7508-test-Trilinos_pullrequest_python_2-2666&field3=buildstamp&compare3=61&value3=20200610-0406-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-7508-test-Trilinos_pullrequest_python_2-2666&field2=buildstamp&compare2=61&value2=20200610-0406-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-7508-test-Trilinos_pullrequest_python_2-2666&field2=buildstamp&compare2=61&value2=20200610-0406-Pull Request
Starting configure step.
   Each . represents 1024 bytes of output
    ...................... Size of output: 21K
configure submit error = 0
Configure suceeded.
Starting build step.
   Each symbol represents 1024 bytes of output.
    . Size of output: 0K
Build succeeded.
build submit error = 0
Starting testing step.
CMake Error at /scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_python_2/TFW_testing_single_configure_prototype/simple_testing.cmake:218 (message):
  Test failed with error -1

test submit error = 0
File upload submit error = 0
.2
WORKSPACE_TMP = /scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_python_2@tmp
SEMS_CMAKE_VERSION = 3.10.3
HISTCONTROL = ignoredups
SERIAL_CXX = g++
PWD = /scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_python_2
JENKINS_SERVER_COOKIE = 248910a9cd8de38c
BUILD_DISPLAY_NAME = #2666
PULLREQUESTNUM = 7508

==========================================================================================
None
PULLREQUEST_CDASH_TRACK is set. Setting CDASH_TRACK=Pull Request
Enabled packages:
-- Setting Trilinos_ENABLE_TrilinosFrameworkTests = ON

Set CWD = /scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_python_2/TFW_testing_single_configure_prototype
Traceback (most recent call last):
File "/scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_python_2/Trilinos/cmake/std/PullRequestLinuxDriverTest.py", line 701, in
returnValue = run()
File "/scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_python_2/Trilinos/cmake/std/PullRequestLinuxDriverTest.py", line 694, in run
'-Dsubprojects_file=../package_subproject_list.cmake'])
File "/projects/sems/install/rhel7-x86_64/sems/compiler/python/2.7.9/lib/python2.7/subprocess.py", line 540, in check_call
raise CalledProcessError(retcode, cmd)
subprocess.CalledProcessError: Command '['ctest', '-S', 'simple_testing.cmake', '-Dbuild_name=PR-7508-test-Trilinos_pullrequest_python_2-2666', '-Dskip_by_parts_submit=OFF', '-Dskip_update_step=ON', '-Ddashboard_model=Experimental', '-Ddashboard_track=Pull Request', '-DPARALLEL_LEVEL=20', '-DTEST_PARALLEL_LEVEL=20', '-Dbuild_dir=/scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_python_2/pull_request_test', '-Dconfigure_script=/scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_python_2/Trilinos/cmake/std/PullRequestLinuxPython2.cmake', '-Dpackage_enables=../packageEnables.cmake', '-Dsubprojects_file=../package_subproject_list.cmake']' returned non-zero exit status 255
Build step 'Execute shell' marked build as failure
Archiving artifacts
Finished: FAILURE

Console Output (last 100 lines) : Trilinos_pullrequest_python_3 # 2675 (click to expand)

SEMS_NINJA_FORTRAN_LOCAL_COMPILER_VERSION = 4.8.5
F77 = gfortran
TRILINOS_TARGET_REPO = https://github.com/trilinos/Trilinos
NODE_OWNER_EMAIL = ceeadmin@sandia.gov
SEMS_GIT_LOCAL_PYTHON_VERSION = 2.7.5
NODE_NAME = tr-test-4-trilinos
GIT_CHECKOUT_DIR = Trilinos
SEMS_NINJA_FORTRAN_VERSION = 1.7.2
SEMS_COMPILER_VERSION = 7.2.0
SSH_CLIENT = 205.137.81.17 57002 22
JENKINS_URL = https://ascic-jenkins.sandia.gov/
LOGNAME = trilinos
NODE_LABELS = tr-test-4-trilinos trilinos-32 trilinos-any trilinos-cloud-32 trilinos_cloud_32_node_4
PATH = /projects/sierra/linux_rh7/install/Python/3.6.3/bin:/projects/sierra/linux_rh7/install/Python/extrasbin:/projects/sems/install/rhel7-x86_64/atdm/utility/ninja_fortran/1.7.2/sbin:/projects/sems/install/rhel7-x86_64/atdm/utility/ninja_fortran/1.7.2/bin:/projects/sems/install/rhel7-x86_64/sems/utility/cmake/3.10.3/sbin:/projects/sems/install/rhel7-x86_64/sems/utility/cmake/3.10.3/bin:/projects/sems/install/rhel7-x86_64/sems/compiler/gcc/7.2.0/base/bin:/projects/sems/install/rhel7-x86_64/sems/utility/git/2.10.1/sbin:/projects/sems/install/rhel7-x86_64/sems/utility/git/2.10.1/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/ascldap/users/trilinos/.local/bin:/ascldap/users/trilinos/bin
SEMS_NINJA_FORTRAN_LOCAL_PYTHON_VERSION = 2.7.5
GIT_PREVIOUS_SUCCESSFUL_COMMIT = 7ba2010fcc115c100e61e5fe57e23c4a3149fa1e
no_proxy = localhost,localnets,127.0.0.1,169.254.0.0/16,forge.sandia.gov
CC = gcc
SEMS_CMAKE_LOCAL_COMPILER_VERSION = 4.8.5
JOB_OWNER_EMAIL = prwolfe@sandia.gov
PULLREQUEST_CDASH_TRACK = Pull Request
BUILD_ID = 2675
JOB_COOWNERS_EMAILS = prwolfe@sandia.gov,trilinos@sandia.gov
GIT_URL = https://github.com/trilinos/Trilinos
SEMS_GCC_LOCAL_COMPILER_VERSION = 4.8.5
LOADEDMODULES = sems-env:sems-git/2.10.1:sems-gcc/7.2.0:sems-cmake/3.10.3:atdm-env:atdm-ninja_fortran/1.7.Currently Loaded Modulefiles:
  1) sems-env                   4) sems-cmake/3.10.3
  2) sems-git/2.10.1            5) atdm-env
  3) sems-gcc/7.2.0             6) atdm-ninja_fortran/1.7.2
Build name               = PR-7508-test-Trilinos_pullrequest_python_3-2675
Cur dir                  = /scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_python_3/TFW_testing_single_configure_prototype
Source dir               = /scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_python_3/Trilinos
Binary dir               = /scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_python_3/pull_request_test
Parallel level           = 20
Testing Parallel level   = 20
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         = 1
Dashboard model          = Experimental
Dashboard track          = Pull Request
Running configuration:
/projects/sems/install/rhel7-x86_64/sems/utility/cmake/3.10.3/bin/cmake 
  -C "/scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_python_3/Trilinos/cmake/std/PullRequestLinuxPython3.cmake"
  -C "/scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_python_3/packageEnables.cmake"
  -DTrilinos_ENABLE_TESTS:BOOL=ON
  -DTrilinos_PARALLEL_LINK_JOBS_LIMIT:STRING=2
  -G "Ninja"
  /scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_python_3/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=tr-test-4.novalocal&field2=buildname&compare2=61&value2=PR-7508-test-Trilinos_pullrequest_python_3-2675&field3=buildstamp&compare3=61&value3=20200610-0406-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-7508-test-Trilinos_pullrequest_python_3-2675&field2=buildstamp&compare2=61&value2=20200610-0406-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-7508-test-Trilinos_pullrequest_python_3-2675&field2=buildstamp&compare2=61&value2=20200610-0406-Pull Request
Starting configure step.
   Each . represents 1024 bytes of output
    ...................... Size of output: 21K
configure submit error = 0
Configure suceeded.
Starting build step.
   Each symbol represents 1024 bytes of output.
    . Size of output: 0K
Build succeeded.
build submit error = 0
Starting testing step.
CMake Error at /scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_python_3/TFW_testing_single_configure_prototype/simple_testing.cmake:218 (message):
  Test failed with error -1

test submit error = 0
File upload submit error = 0
2
WORKSPACE_TMP = /scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_python_3@tmp
SEMS_CMAKE_VERSION = 3.10.3
HISTCONTROL = ignoredups
SERIAL_CXX = g++
PWD = /scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_python_3
JENKINS_SERVER_COOKIE = 248910a9cd8de38c
BUILD_DISPLAY_NAME = #2675
PULLREQUESTNUM = 7508

==========================================================================================
None
PULLREQUEST_CDASH_TRACK is set. Setting CDASH_TRACK=Pull Request
Enabled packages:
-- Setting Trilinos_ENABLE_TrilinosFrameworkTests = ON

Set CWD = /scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_python_3/TFW_testing_single_configure_prototype
Traceback (most recent call last):
File "/scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_python_3/Trilinos/cmake/std/PullRequestLinuxDriverTest.py", line 701, in
returnValue = run()
File "/scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_python_3/Trilinos/cmake/std/PullRequestLinuxDriverTest.py", line 694, in run
'-Dsubprojects_file=../package_subproject_list.cmake'])
File "/projects/sems/install/rhel7-x86_64/sems/compiler/python/2.7.9/lib/python2.7/subprocess.py", line 540, in check_call
raise CalledProcessError(retcode, cmd)
subprocess.CalledProcessError: Command '['ctest', '-S', 'simple_testing.cmake', '-Dbuild_name=PR-7508-test-Trilinos_pullrequest_python_3-2675', '-Dskip_by_parts_submit=OFF', '-Dskip_update_step=ON', '-Ddashboard_model=Experimental', '-Ddashboard_track=Pull Request', '-DPARALLEL_LEVEL=20', '-DTEST_PARALLEL_LEVEL=20', '-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']' returned non-zero exit status 255
Build step 'Execute shell' marked build as failure
Archiving artifacts
Finished: FAILURE


CDash Test Results for PR# 7508.


Wiki: How to Reproduce PR Testing Builds and Errors.

@bartlettroscoe
Copy link
Member Author

bartlettroscoe commented Jun 10, 2020

@jjellio

If we have a respectable Python installation, then using Pandas to write a summary script is pretty easy. Without pandas, it shouldn't be too hard.

I am thinking that for the STDOUT updated for the TrilinosBuildStats_Results tests, we want just pain ASCII text. I was thinking about output like:

Trilinos: max max_resident_size = <max_resident_size> (<file-name>)
Trilinos: max elapsed_time: = <elapsed_time> (<file-name>)
Trilinos: max file_size= <file_size> (<file-name.)

Kokkos: max max_resident_size = <max_resident_size> (<file-name>)
Kokkos: max elapsed_time: = <elapsed_time> (<file-name>)
Kokkos: max file_size= <file_size> (<file-name.)

Teuchos: max max_resident_size = <max_resident_size> (<file-name>)
Teuchos: max elapsed_time: = <elapsed_time> (<file-name>)
Teuchos: max file_size= <file_size> (<file-name.)

...

Panzer: max max_resident_size = <max_resident_size> (<file-name>)
Panzer: max elapsed_time: = <elapsed_time> (<file-name>)
Panzer: max file_size= <file_size> (<file-name.)

Output in that format would be very easy to search for over multiple builds, over multiple days, etc., using the "Test Output" filter on the CDash page queryTests.php. There is Python code in TriBITS that knows how to map from directory paths to TriBITS package names so I think it would not be that hard to write a basic summarize_build_stats.py tool that would be very valuable.

Then we could worry about how to hook up more sophisticated types analysis. (But for that, we need to get Kitware to fix the problem with attached files, see https://gitlab.kitware.com/snl/project-1/-/issues/148.)

How is this going to work for installed Trilinos? If ATDM installs, then using Trilinos_CXX_COMPILER, what will it point to?

The build wrapper scripts get installed under <prefix>/bin along with the gather_build_stats.sh script. So it would be easy for the customer CMake project to just set CMAKE_<LANG>_COMPILER to point to those installed wrappers. We can extend TriBITS to automatically set those in Trilinos_CXX_COMPILER but there are some disadvantages to that:

  • The APP could not easily choose to use the native compilers instead of the build wrappers
  • If the customer APP did not set the env var CMAKE_IS_IN_CONFIGURE_MODE in their base CMakeLists.txt file, then they would get configure failures.

Therefore, I think we might consider just telling customer apps how to use the installed compiler wrappers if they want to use them.

@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_4.8.4

  • Build Num: 6998
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
COMPILER_MODULE sems-gcc/4.8.4
JENKINS_BUILD_TYPE Release
JENKINS_COMM_TYPE MPI
JENKINS_DO_COMPLEX OFF
JENKINS_JOB_TYPE Experimental
MPI_MODULE sems-openmpi/1.8.7
PULLREQUESTNUM 7508
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH 7376-build-stats
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 03ad108
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 7ba2010

Build Information

Test Name: Trilinos_pullrequest_intel_17.0.1

  • Build Num: 6808
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 7508
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH 7376-build-stats
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 03ad108
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 7ba2010

Build Information

Test Name: Trilinos_pullrequest_gcc_4.9.3_SERIAL

  • Build Num: 5233
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 7508
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH 7376-build-stats
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 03ad108
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 7ba2010

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0

  • Build Num: 5080
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 7508
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH 7376-build-stats
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 03ad108
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 7ba2010

Build Information

Test Name: Trilinos_pullrequest_gcc_8.3.0

  • Build Num: 1269
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 7508
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH 7376-build-stats
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 03ad108
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 7ba2010

Build Information

Test Name: Trilinos_pullrequest_cuda_9.2

  • Build Num: 4564
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 7508
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH 7376-build-stats
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 03ad108
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 7ba2010

Build Information

Test Name: Trilinos_pullrequest_clang_9.0.0

  • Build Num: 939
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 7508
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH 7376-build-stats
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 03ad108
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 7ba2010

Build Information

Test Name: Trilinos_pullrequest_python_2

  • Build Num: 2677
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 7508
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH 7376-build-stats
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 03ad108
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 7ba2010

Build Information

Test Name: Trilinos_pullrequest_python_3

  • Build Num: 2686
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 7508
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH 7376-build-stats
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 03ad108
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 7ba2010

Using Repos:

Repo: TRILINOS (bartlettroscoe/Trilinos)
  • Branch: 7376-build-stats
  • SHA: 03ad108
  • Mode: TEST_REPO

Pull Request Author: bartlettroscoe

@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_4.8.4

  • Build Num: 6998
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
COMPILER_MODULE sems-gcc/4.8.4
JENKINS_BUILD_TYPE Release
JENKINS_COMM_TYPE MPI
JENKINS_DO_COMPLEX OFF
JENKINS_JOB_TYPE Experimental
MPI_MODULE sems-openmpi/1.8.7
PULLREQUESTNUM 7508
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH 7376-build-stats
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 03ad108
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 7ba2010

Build Information

Test Name: Trilinos_pullrequest_intel_17.0.1

  • Build Num: 6808
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 7508
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH 7376-build-stats
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 03ad108
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 7ba2010

Build Information

Test Name: Trilinos_pullrequest_gcc_4.9.3_SERIAL

  • Build Num: 5233
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 7508
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH 7376-build-stats
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 03ad108
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 7ba2010

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0

  • Build Num: 5080
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 7508
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH 7376-build-stats
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 03ad108
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 7ba2010

Build Information

Test Name: Trilinos_pullrequest_gcc_8.3.0

  • Build Num: 1269
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 7508
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH 7376-build-stats
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 03ad108
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 7ba2010

Build Information

Test Name: Trilinos_pullrequest_cuda_9.2

  • Build Num: 4564
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 7508
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH 7376-build-stats
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 03ad108
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 7ba2010

Build Information

Test Name: Trilinos_pullrequest_clang_9.0.0

  • Build Num: 939
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 7508
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH 7376-build-stats
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 03ad108
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 7ba2010

Build Information

Test Name: Trilinos_pullrequest_python_2

  • Build Num: 2677
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 7508
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH 7376-build-stats
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 03ad108
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 7ba2010

Build Information

Test Name: Trilinos_pullrequest_python_3

  • Build Num: 2686
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 7508
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH 7376-build-stats
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 03ad108
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 7ba2010
Console Output (last 100 lines) : Trilinos_pullrequest_gcc_4.8.4 # 6998 (click to expand)

Wrote the file 'TrilinosPackageDependencies.xml'

B) Get the set of changed files

Current directory: /scratch/trilinos/jenkins/tr-test-7/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/Trilinos

git diff --name-only origin/develop..HEAD > /scratch/trilinos/jenkins/tr-test-7/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/changed-files.txt

Wrote file 'changed-files.txt'

Current directory: /scratch/trilinos/jenkins/tr-test-7/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4

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

CHANGED_PACKAGES_FULL_LIST='ALL_PACKAGES,TrilinosATDMConfigTests,TrilinosBuildStats,TrilinosFrameworkTests'

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

CHANGED_PACKAGES_ST_LIST='ALL_PACKAGES,TrilinosATDMConfigTests,TrilinosBuildStats,TrilinosFrameworkTests'

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-7508-test-Trilinos_pullrequest_gcc_4.8.4-6998
Cur dir = /scratch/trilinos/jenkins/tr-test-7/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/TFW_testing_single_configure_prototype
Source dir = /scratch/trilinos/jenkins/tr-test-7/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/Trilinos
Binary dir = /scratch/trilinos/jenkins/tr-test-7/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/pull_request_test
Parallel level = 20
Testing Parallel level = 10
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 = 59
Dashboard model = Experimental
Dashboard track = Pull Request
Running configuration:
/projects/sems/install/rhel7-x86_64/sems/utility/cmake/3.10.3/bin/cmake
-C "/scratch/trilinos/jenkins/tr-test-7/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/Trilinos/cmake/std/PullRequestLinuxGCC4.8.4TestingSettings.cmake"
-C "/scratch/trilinos/jenkins/tr-test-7/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/packageEnables.cmake"
-DTrilinos_ENABLE_TESTS:BOOL=ON
-DTrilinos_PARALLEL_LINK_JOBS_LIMIT:STRING=2
-G "Ninja"
/scratch/trilinos/jenkins/tr-test-7/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/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=tr-test-7.novalocal&field2=buildname&compare2=61&value2=PR-7508-test-Trilinos_pullrequest_gcc_4.8.4-6998&field3=buildstamp&compare3=61&value3=20200611-0004-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-7508-test-Trilinos_pullrequest_gcc_4.8.4-6998&field2=buildstamp&compare2=61&value2=20200611-0004-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-7508-test-Trilinos_pullrequest_gcc_4.8.4-6998&field2=buildstamp&compare2=61&value2=20200611-0004-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: 454K
configure submit error = 0
Configure suceeded.
Starting build step.
Each symbol represents 1024 bytes of output.
.................................................. Size: 49K
.................................................. Size: 99K
................ Size of output: 115K
Build succeeded.
build submit error = 0
Starting testing step.
Tests succeeded.
test submit error = 0
File upload submit error = 0
est_gcc_4.8.4@tmp
SEMS_CMAKE_VERSION = 3.10.3
HISTCONTROL = ignoredups
SERIAL_CXX = g++
PWD = /scratch/trilinos/jenkins/tr-test-7/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4
JENKINS_SERVER_COOKIE = 248910a9cd8de38c
BUILD_DISPLAY_NAME = #6998
PULLREQUESTNUM = 7508
SEMS_SUPERLU_INCLUDE_PATH = /projects/sems/install/rhel7-x86_64/sems/tpl/superlu/4.3/gcc/4.8.4/base/include

==========================================================================================
None
PULLREQUEST_CDASH_TRACK is set. Setting CDASH_TRACK=Pull Request
Enabled packages:
-- Setting Trilinos_ENABLE_ALL_PACKAGES = ON
-- Setting Trilinos_ENABLE_TrilinosATDMConfigTests = ON
-- Setting Trilinos_ENABLE_TrilinosBuildStats = ON
-- Setting Trilinos_ENABLE_TrilinosFrameworkTests = ON

Set CWD = /scratch/trilinos/jenkins/tr-test-7/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/TFW_testing_single_configure_prototype
Archiving artifacts
Finished: SUCCESS

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

CHANGED_PACKAGES_ST_LIST='ALL_PACKAGES,TrilinosATDMConfigTests,TrilinosBuildStats,TrilinosFrameworkTests'

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-7508-test-Trilinos_pullrequest_intel_17.0.1-6808
Cur dir = /scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/TFW_testing_single_configure_prototype
Source dir = /scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/Trilinos
Binary dir = /scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/pull_request_test
Parallel level = 20
Testing Parallel level = 10
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 = 59
Dashboard model = Experimental
Dashboard track = Pull Request
Running configuration:
/projects/sems/install/rhel6-x86_64/sems/utility/cmake/3.10.3/bin/cmake
-C "/scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/Trilinos/cmake/std/PullRequestLinuxIntelTestingSettings.cmake"
-C "/scratch/trilinos/jenkins/ascic158/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/ascic158/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=ascic158&field2=buildname&compare2=61&value2=PR-7508-test-Trilinos_pullrequest_intel_17.0.1-6808&field3=buildstamp&compare3=61&value3=20200611-0005-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-7508-test-Trilinos_pullrequest_intel_17.0.1-6808&field2=buildstamp&compare2=61&value2=20200611-0005-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-7508-test-Trilinos_pullrequest_intel_17.0.1-6808&field2=buildstamp&compare2=61&value2=20200611-0005-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: 456K
configure submit error = 0
Configure suceeded.
Starting build step.
Each symbol represents 1024 bytes of output.
.................................................. Size: 49K
.................................................. Size: 99K
................................. Size of output: 132K
Build succeeded.
build submit error = 0
Starting testing step.
Tests succeeded.
test submit error = 0
File upload submit error = 0
E_PATH = /projects/sems/install/rhel6-x86_64/sems/tpl/netcdf/4.7.3/intel/17.0.1/mpich/3.2/parallel/include
MKL_LIB = /projects/sems/install/rhel6-x86_64/sems/compiler/intel/17.0.1/base/mkl/lib/intel64
MODULE_VERSION_STACK = 3.2.10
SEMS_MPICH_ROOT = /projects/sems/install/rhel6-x86_64/sems/compiler/intel/17.0.1/mpich/3.2
JOB_COOWNERS_EMAILS = prwolfe@sandia.gov,trilinos@sandia.gov
SEMS_PARMETIS_LOCAL_COMPILER_VERSION = 4.4.7
SEMS_PARMETIS_LOCAL_PYTHON_VERSION = 2.6.6
SEMS_NETCDF_LIBRARY_PATH = /projects/sems/install/rhel6-x86_64/sems/tpl/netcdf/4.7.3/intel/17.0.1/mpich/3.2/parallel/lib
GIT_URL = https://github.com/trilinos/Trilinos
SEMS_INTEL_LOCAL_PYTHON_VERSION = 2.6.6
SEMS_BOOST_LIBRARY_PATH = /projects/sems/install/rhel6-x86_64/sems/tpl/boost/1.63.0/intel/17.0.1/base/lib
SEMS_GCC_LOCAL_COMPILER_VERSION = 4.4.7
SNLSYSTEM = cee
MPIF77 = mpif77
SEMS_HDF5_ROOT = /projects/sems/install/rhel6-x86_64/sems/tpl/hdf5/1.10.6/intel/17.0.1/mpich/3.2/parallel
SEMS_SCOTCH_INCLUDE_PATH = /projects/sems/install/rhel6-x86_64/sems/tpl/scotch/6.0.3/intel/17.0.1/mpich/3.2/nopthread_64bit_parallel/include
LOADEDMODULES = sems-env:sems-git/2.10.1:sems-python/2.7.9:sems-gcc/4.9.3:sems-intel/17.0.1:sems-mpich/3.2:sems-boost/1.63.0/base:sems-zlib/1.2.8/base:sems-hdf5/1.10.6/parallel:sems-netcdf/4.7.3/parallel:sems-parmetis/4.0.3/parallel:sems-scotch/6.0.3/nopthread_64bit_parallel:sems-superlu/4.3/base:sems-cmake/3.10.3:atdm-env:atdm-ninja_fortran/1.7.2
WORKSPACE_TMP = /scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1@tmp
SEMS_CMAKE_VERSION = 3.10.3
HISTCONTROL = ignoredups
SERIAL_CXX = icpc
PWD = /scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1
JENKINS_SERVER_COOKIE = 248910a9cd8de38c
BUILD_DISPLAY_NAME = #6808
PULLREQUESTNUM = 7508
SEMS_SUPERLU_INCLUDE_PATH = /projects/sems/install/rhel6-x86_64/sems/tpl/superlu/4.3/intel/17.0.1/base/include

==========================================================================================
None
PULLREQUEST_CDASH_TRACK is set. Setting CDASH_TRACK=Pull Request
Enabled packages:
-- Setting Trilinos_ENABLE_ALL_PACKAGES = ON
-- Setting Trilinos_ENABLE_TrilinosATDMConfigTests = ON
-- Setting Trilinos_ENABLE_TrilinosBuildStats = ON
-- Setting Trilinos_ENABLE_TrilinosFrameworkTests = ON

Set CWD = /scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/TFW_testing_single_configure_prototype
Archiving artifacts
Finished: SUCCESS

Console Output (last 100 lines) : Trilinos_pullrequest_gcc_4.9.3_SERIAL # 5233 (click to expand)

CHANGED_PACKAGES_ST_LIST='ALL_PACKAGES,TrilinosATDMConfigTests,TrilinosBuildStats,TrilinosFrameworkTests'

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-7508-test-Trilinos_pullrequest_gcc_4.9.3_SERIAL-5233
Cur dir = /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/TFW_testing_single_configure_prototype
Source dir = /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/Trilinos
Binary dir = /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/pull_request_test
Parallel level = 20
Testing Parallel level = 10
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 = 59
Dashboard model = Experimental
Dashboard track = Pull Request
Running configuration:
/projects/sems/install/rhel7-x86_64/sems/utility/cmake/3.10.3/bin/cmake
-C "/scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/Trilinos/cmake/std/PullRequestLinuxGCC4.9.3TestingSettingsSERIAL.cmake"
-C "/scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/packageEnables.cmake"
-DTrilinos_ENABLE_TESTS:BOOL=ON
-DTrilinos_PARALLEL_LINK_JOBS_LIMIT:STRING=2
-G "Ninja"
/scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/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=ascic166&field2=buildname&compare2=61&value2=PR-7508-test-Trilinos_pullrequest_gcc_4.9.3_SERIAL-5233&field3=buildstamp&compare3=61&value3=20200611-0005-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-7508-test-Trilinos_pullrequest_gcc_4.9.3_SERIAL-5233&field2=buildstamp&compare2=61&value2=20200611-0005-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-7508-test-Trilinos_pullrequest_gcc_4.9.3_SERIAL-5233&field2=buildstamp&compare2=61&value2=20200611-0005-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 of output: 380K
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 of output: 604K
Build succeeded.
build submit error = 0
Starting testing step.
Tests succeeded.
test submit error = 0
File upload submit error = 0
TH = /projects/sems/install/rhel7-x86_64/sems/tpl/netcdf/4.7.3/gcc/4.9.3/base/include
MODULE_VERSION_STACK = 3.2.10
JOB_COOWNERS_EMAILS = wcmclen@sandia.gov,trilinos@sandia.gov
SEMS_NETCDF_LIBRARY_PATH = /projects/sems/install/rhel7-x86_64/sems/tpl/netcdf/4.7.3/gcc/4.9.3/base/lib
GIT_BRANCH = origin/develop
SEMS_BOOST_LIBRARY_PATH = /projects/sems/install/rhel7-x86_64/sems/tpl/boost/1.63.0/gcc/4.9.3/base/lib
SEMS_GCC_LOCAL_COMPILER_VERSION = 4.8.5
SNLSYSTEM = cee
SEMS_HDF5_ROOT = /projects/sems/install/rhel7-x86_64/sems/tpl/hdf5/1.10.6/gcc/4.9.3/base
LOADEDMODULES = sems-env:sems-git/2.10.1:sems-python/2.7.9:sems-gcc/4.9.3:sems-boost/1.63.0/base:sems-zlib/1.2.8/base:sems-hdf5/1.10.6/base:sems-netcdf/4.7.3/base:sems-metis/5.1.0/base:sems-superlu/4.3/base:sems-cmake/3.10.3:atdm-env:atdm-ninja_fortran/1.7.2
WORKSPACE_TMP = /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL@tmp
SEMS_CMAKE_VERSION = 3.10.3
HISTCONTROL = ignoredups
SERIAL_CXX = g++
PWD = /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL
JENKINS_SERVER_COOKIE = 248910a9cd8de38c
BUILD_DISPLAY_NAME = #5233
PULLREQUESTNUM = 7508
SEMS_SUPERLU_INCLUDE_PATH = /projects/sems/install/rhel7-x86_64/sems/tpl/superlu/4.3/gcc/4.9.3/base/include

==========================================================================================
None
PULLREQUEST_CDASH_TRACK is set. Setting CDASH_TRACK=Pull Request
Enabled packages:
-- Setting Trilinos_ENABLE_ALL_PACKAGES = ON
-- Setting Trilinos_ENABLE_TrilinosATDMConfigTests = ON
-- Setting Trilinos_ENABLE_TrilinosBuildStats = ON
-- Setting Trilinos_ENABLE_TrilinosFrameworkTests = ON

Set CWD = /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/TFW_testing_single_configure_prototype
Archiving artifacts
Finished: SUCCESS

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

B) Get the set of changed files

Current directory: /scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/Trilinos

git diff --name-only origin/develop..HEAD > /scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/changed-files.txt

Wrote file 'changed-files.txt'

Current directory: /scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0

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

CHANGED_PACKAGES_FULL_LIST='ALL_PACKAGES,TrilinosATDMConfigTests,TrilinosBuildStats,TrilinosFrameworkTests'

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

CHANGED_PACKAGES_ST_LIST='ALL_PACKAGES,TrilinosATDMConfigTests,TrilinosBuildStats,TrilinosFrameworkTests'

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-7508-test-Trilinos_pullrequest_gcc_7.2.0-5080
Cur dir = /scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/TFW_testing_single_configure_prototype
Source dir = /scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/Trilinos
Binary dir = /scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/pull_request_test
Parallel level = 13
Testing Parallel level = 10
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 = 59
Dashboard model = Experimental
Dashboard track = Pull Request
Running configuration:
/projects/sems/install/rhel6-x86_64/sems/utility/cmake/3.10.3/bin/cmake
-C "/scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/Trilinos/cmake/std/PullRequestLinuxGCC7.2.0TestingSettings.cmake"
-C "/scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/packageEnables.cmake"
-DTrilinos_ENABLE_TESTS:BOOL=ON
-DTrilinos_PARALLEL_LINK_JOBS_LIMIT:STRING=2
-G "Ninja"
/scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/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-7508-test-Trilinos_pullrequest_gcc_7.2.0-5080&field3=buildstamp&compare3=61&value3=20200611-0005-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-7508-test-Trilinos_pullrequest_gcc_7.2.0-5080&field2=buildstamp&compare2=61&value2=20200611-0005-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-7508-test-Trilinos_pullrequest_gcc_7.2.0-5080&field2=buildstamp&compare2=61&value2=20200611-0005-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 of output: 441K
configure submit error = 0
Configure suceeded.
Starting build step.
Each symbol represents 1024 bytes of output.
.................................................. Size: 49K
.................................................. Size: 99K
........................ Size of output: 124K
Build succeeded.
build submit error = 0
Starting testing step.
Tests succeeded.
test submit error = 0
File upload submit error = 0
/sems/tpl/hdf5/1.10.6/gcc/7.2.0/openmpi/1.10.1/parallel
SEMS_SCOTCH_INCLUDE_PATH = /projects/sems/install/rhel6-x86_64/sems/tpl/scotch/6.0.3/gcc/7.2.0/openmpi/1.10.1/nopthread_64bit_parallel/include
LOADEDMODULES = sems-env:sems-git/2.10.1:sems-python/2.7.9:sems-gcc/7.2.0:sems-openmpi/1.10.1:sems-boost/1.63.0/base:sems-zlib/1.2.8/base:sems-hdf5/1.10.6/parallel:sems-netcdf/4.7.3/parallel:sems-parmetis/4.0.3/parallel:sems-scotch/6.0.3/nopthread_64bit_parallel:sems-superlu/4.3/base:sems-cmake/3.10.3:atdm-env:atdm-ninja_fortran/1.7.2
WORKSPACE_TMP = /scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0@tmp
SEMS_CMAKE_VERSION = 3.10.3
HISTCONTROL = ignoredups
SERIAL_CXX = g++
PWD = /scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0
JENKINS_SERVER_COOKIE = 248910a9cd8de38c
BUILD_DISPLAY_NAME = #5080
PULLREQUESTNUM = 7508
SEMS_SUPERLU_INCLUDE_PATH = /projects/sems/install/rhel6-x86_64/sems/tpl/superlu/4.3/gcc/7.2.0/base/include

==========================================================================================
None
PULLREQUEST_CDASH_TRACK is set. Setting CDASH_TRACK=Pull Request
Enabled packages:
-- Setting Trilinos_ENABLE_ALL_PACKAGES = ON
-- Setting Trilinos_ENABLE_TrilinosATDMConfigTests = ON
-- Setting Trilinos_ENABLE_TrilinosBuildStats = ON
-- Setting Trilinos_ENABLE_TrilinosFrameworkTests = ON

Set CWD = /scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/TFW_testing_single_configure_prototype
Archiving artifacts
Finished: SUCCESS

Console Output (last 100 lines) : Trilinos_pullrequest_gcc_8.3.0 # 1269 (click to expand)

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

CHANGED_PACKAGES_FULL_LIST='ALL_PACKAGES,TrilinosATDMConfigTests,TrilinosBuildStats,TrilinosFrameworkTests'

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

CHANGED_PACKAGES_ST_LIST='ALL_PACKAGES,TrilinosATDMConfigTests,TrilinosBuildStats,TrilinosFrameworkTests'

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-7508-test-Trilinos_pullrequest_gcc_8.3.0-1269
Cur dir = /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/TFW_testing_single_configure_prototype
Source dir = /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/Trilinos
Binary dir = /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/pull_request_test
Parallel level = 20
Testing Parallel level = 10
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 = 59
Dashboard model = Experimental
Dashboard track = Pull Request
Running configuration:
/projects/sems/install/rhel7-x86_64/sems/utility/cmake/3.10.3/bin/cmake
-C "/scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/Trilinos/cmake/std/PullRequestLinuxGCC8.3.0TestingSettings.cmake"
-C "/scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/packageEnables.cmake"
-DTrilinos_ENABLE_TESTS:BOOL=ON
-DTrilinos_PARALLEL_LINK_JOBS_LIMIT:STRING=2
-G "Ninja"
/scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/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=ascic166&field2=buildname&compare2=61&value2=PR-7508-test-Trilinos_pullrequest_gcc_8.3.0-1269&field3=buildstamp&compare3=61&value3=20200611-0005-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-7508-test-Trilinos_pullrequest_gcc_8.3.0-1269&field2=buildstamp&compare2=61&value2=20200611-0005-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-7508-test-Trilinos_pullrequest_gcc_8.3.0-1269&field2=buildstamp&compare2=61&value2=20200611-0005-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 of output: 441K
configure submit error = 0
Configure suceeded.
Starting build step.
Each symbol represents 1024 bytes of output.
.................................................. Size: 49K
.................................................. Size: 99K
.......................... Size of output: 126K
Build succeeded.
build submit error = 0
Starting testing step.
Tests succeeded.
test submit error = 0
File upload submit error = 0
RS_EMAILS = HRSwant@sandia.gov,trilinos@sandia.gov
SEMS_PARMETIS_LOCAL_COMPILER_VERSION = 4.8.5
SEMS_PARMETIS_LOCAL_PYTHON_VERSION = 2.7.5
SEMS_NETCDF_LIBRARY_PATH = /projects/sems/install/rhel7-x86_64/sems/tpl/netcdf/4.7.3/gcc/8.3.0/openmpi/1.10.1/parallel/lib
GIT_BRANCH = origin/develop
SEMS_BOOST_LIBRARY_PATH = /projects/sems/install/rhel7-x86_64/sems/tpl/boost/1.66.0/gcc/8.3.0/base/lib
SEMS_GCC_LOCAL_COMPILER_VERSION = 4.8.5
SNLSYSTEM = cee
MPIF77 = mpif77
SEMS_HDF5_ROOT = /projects/sems/install/rhel7-x86_64/sems/tpl/hdf5/1.10.6/gcc/8.3.0/openmpi/1.10.1/parallel
SEMS_SCOTCH_INCLUDE_PATH = /projects/sems/install/rhel7-x86_64/sems/tpl/scotch/6.0.3/gcc/8.3.0/openmpi/1.10.1/nopthread_64bit_parallel/include
LOADEDMODULES = sems-env:sems-git/2.10.1:sems-python/2.7.9:sems-gcc/8.3.0:sems-openmpi/1.10.1:sems-boost/1.66.0/base:sems-zlib/1.2.8/base:sems-hdf5/1.10.6/parallel:sems-netcdf/4.7.3/parallel:sems-parmetis/4.0.3/parallel:sems-scotch/6.0.3/nopthread_64bit_parallel:sems-superlu/4.3/base:sems-cmake/3.10.3:atdm-env:atdm-ninja_fortran/1.7.2
WORKSPACE_TMP = /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0@tmp
SEMS_CMAKE_VERSION = 3.10.3
HISTCONTROL = ignoredups
SERIAL_CXX = g++
PWD = /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0
JENKINS_SERVER_COOKIE = 248910a9cd8de38c
BUILD_DISPLAY_NAME = #1269
PULLREQUESTNUM = 7508
SEMS_SUPERLU_INCLUDE_PATH = /projects/sems/install/rhel7-x86_64/sems/tpl/superlu/4.3/gcc/8.3.0/base/include

==========================================================================================
None
PULLREQUEST_CDASH_TRACK is set. Setting CDASH_TRACK=Pull Request
Enabled packages:
-- Setting Trilinos_ENABLE_ALL_PACKAGES = ON
-- Setting Trilinos_ENABLE_TrilinosATDMConfigTests = ON
-- Setting Trilinos_ENABLE_TrilinosBuildStats = ON
-- Setting Trilinos_ENABLE_TrilinosFrameworkTests = ON

Set CWD = /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/TFW_testing_single_configure_prototype
Archiving artifacts
Finished: SUCCESS

Console Output (last 100 lines) : Trilinos_pullrequest_cuda_9.2 # 4564 (click to expand)

Starting testing step.
CMake Error at /home/trilinos/jenkins/ride/workspace/trilinos-folder/Trilinos_pullrequest_cuda_9.2/TFW_testing_single_configure_prototype/simple_testing.cmake:218 (message):
  Test failed with error -1

test submit error = 0
File upload submit error = 0
0 ride10 ride10 ride10 ride10 ride10
METIS_ROOT = /home/projects/ppc64le-pwr8/metis/5.0.1/gcc/7.2.0
NODE_OWNER_EMAIL = ceeadmin@sandia.gov
LSB_EXIT_PRE_ABORT = 99
TRILINOS_SOURCE_REPO = https://github.com/bartlettroscoe/Trilinos
PARMETIS_HOME = /home/projects/ppc64le-pwr8-nvidia/parmetis/4.0.3/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88
FC_VERSION = 7.2.0
LSB_JOBFILENAME = /ascldap/users/trilinos/.lsbatch/1591833969.4686
BLAS_ROOT = /home/projects/ppc64le-pwr8/netlib/3.8.0/gcc/7.2.0
GIT_CHECKOUT_DIR = Trilinos
LSB_AFFINITY_HOSTFILE = /ascldap/users/trilinos/.lsbatch/1591833969.4686.hostAffinityFile
PARMETIS_ROOT = /home/projects/ppc64le-pwr8-nvidia/parmetis/4.0.3/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88
LSF_ENVDIR = /opt/lsf/conf
MPI_VENDOR = openmpi
PYTHON = /home/projects/ppc64le/python/2.7.12/bin/python
CXX_VENDOR = gcc
HDF5_ROOT = /home/projects/ppc64le-pwr8-nvidia/hdf5/1.8.20/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88
HOSTTYPE = LINUXPPC64LE
SSH_CLIENT = 205.137.81.17 44298 22
JENKINS_URL = https://ascic-jenkins.sandia.gov/
LOGNAME = trilinos
LSF_LIM_API_NTRIES = 1
PATH = /ascldap/users/rabartl/install/white-ride/cmake-3.11.2/bin:/ascldap/users/rabartl/install/white-ride/ninja-1.8.2/bin:/home/projects/ppc64le/valgrind/3.12.0/bin:/home/projects/ppc64le/cmake/3.9.6/bin:/home/projects/ppc64le-pwr8-nvidia/parmetis/4.0.3/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88/bin:/home/projects/ppc64le-pwr8/metis/5.0.1/gcc/7.2.0/bin:/home/projects/ppc64le-pwr8-nvidia/netcdf/4.6.1/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88/bin:/home/projects/ppc64le-pwr8-nvidia/hdf5/1.8.20/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88/bin:/home/projects/ppc64le-pwr8-nvidia/pnetcdf-exo/1.9.0/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88/bin:/home/projects/ppc64le-pwr8-nvidia/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88/bin:/home/projects/ppc64le/java/ibm/sdk/8.0.0/bin:/home/projects/ppc64le/papi/5.5.1/bin:/home/projects/ppc64le/gcc/7.2.0/bin:/home/projects/ppc64le/binutils/2.30.0/bin:/home/projects/ppc64le-pwr8-nvidia/cuda/9.2.88/bin:/home/projects/ppc64le/python/2.7.12/bin:/home/projects/ppc64le/git/2.10.1/bin:/opt/lsf/10.1/linux3.10-glibc2.17-ppc64le/bin:/opt/lsf/10.1/linux3.10-glibc2.17-ppc64le/etc:/usr/local/bin:/usr/bin:/opt/ibutils/bin:/usr/local/sbin:/usr/sbin:/ascldap/users/trilinos/.local/bin:/ascldap/users/trilinos/bin
LSB_QUEUE = rhel7F
LSF_JOB_TIMESTAMP_VALUE = 1591833969
LSB_EXEC_HOSTTYPE = LINUXPPC64LE
GIT_PREVIOUS_SUCCESSFUL_COMMIT = 8ee2d2bd329d823ef58051c97a5873dce78b40a2
LSB_DJOB_HOSTFILE = /ascldap/users/trilinos/.lsbatch/1591833969.4686.hostfile
no_proxy = localhost,localnets,127.0.0.1,169.254.0.0/16,forge.sandia.gov
LSF_LIBDIR = /opt/lsf/10.1/linux3.10-glibc2.17-ppc64le/lib
CGNS_VERSION = 20180521
LSB_SUB_USER = trilinos
NODE_LABELS = ride-trilinos trilinos-ride
GIT_BRANCH_2 = origin/pull_request_changes
GIT_CHECKOUT_DIR_1 = TFW_single_configure_support_scripts
GIT_CHECKOUT_DIR_2 = TFW_testing_single_configure_prototype
JOB_OWNER_EMAIL = HRSwant@sandia.gov
PULLREQUEST_CDASH_TRACK = Pull Request
BUILD_ID = 4564
SBD_KRB5CCNAME_VAL =
LSB_RES_GET_FANOUT_INFO = Y
RUN_DISPLAY_URL = https://ascic-jenkins.sandia.gov/job/trilinos-folder/job/Trilinos_pullrequest_cuda_9.2/4564/display/redirect
JOB_COOWNERS_EMAILS = HRSwant@sandia.gov,trilinos@sandia.gov
LSB_BATCH_JID = 4686
MPI_HOME = /home/projects/ppc64le-pwr8-nvidia/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88
SUPERLU_HOME = /home/projects/ppc64le-pwr8/superlu/4.3.0/gcc/7.2.0
F77_VENDOR = gcc
KRB5CCNAME = FILE:/tmp/krb5cc_91724_bqNHm8maFh
BINUTILS_VERSION = 2.30.0
GIT_BRANCH = origin/develop
CMAKE_ROOT = /home/projects/ppc64le/cmake/3.9.6
BOOST_ROOT = /home/projects/ppc64le-pwr8/boost/1.65.1/gcc/7.2.0
VALGRIND_ROOT = /home/projects/ppc64le/valgrind/3.12.0
MPIF77 = /home/projects/ppc64le-pwr8-nvidia/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88/bin/mpif77
PARMETIS_VERSION = 4.0.3
LSB_JOBNAME = trilinos-folder/Trilinos_pullrequest_cuda_9.2
LOADEDMODULES = git/2.10.1:python/2.7.12:cuda/9.2.88:binutils/2.30.0:gcc/7.2.0:papi/5.5.1:java/ibm/sdk/8.0.0:openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88:pnetcdf-exo/1.9.0/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88:zlib/1.2.8:hdf5/1.8.20/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88:netcdf/4.6.1/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88:cgns/20180521/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88:netlib/3.8.0/gcc/7.2.0:superlu/4.3.0/gcc/7.2.0:boost/1.65.1/gcc/7.2.0:metis/5.0.1/gcc/7.2.0:parmetis/4.0.3/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88:cmake/3.9.6:valgrind/3.12.0:devpack/20180521/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88
WORKSPACE_TMP = /home/trilinos/jenkins/ride/workspace/trilinos-folder/Trilinos_pullrequest_cuda_9.2@tmp
GIT_BRANCH_1 = origin/master
CUDA_MANAGED_FORCE_DEVICE_ALLOC = 1
HISTCONTROL = ignoredups
PWD = /home/trilinos/jenkins/ride/workspace/trilinos-folder/Trilinos_pullrequest_cuda_9.2
LS_EXECCWD = /home/trilinos/jenkins/ride/workspace/trilinos-folder/Trilinos_pullrequest_cuda_9.2
JENKINS_SERVER_COOKIE = 248910a9cd8de38c
BUILD_DISPLAY_NAME = #4564
CXX_VERSION = 7.2.0
PYTHON_ROOT = /home/projects/ppc64le/python/2.7.12
OMPI_CXX = /home/trilinos/jenkins/ride/workspace/trilinos-folder/Trilinos_pullrequest_cuda_9.2/Trilinos/packages/kokkos/bin/nvcc_wrapper
SUPERLU_VERSION = 4.3.0
PULLREQUESTNUM = 7508
BINARY_TYPE_HPC =

==========================================================================================
None
PULLREQUEST_CDASH_TRACK is set. Setting CDASH_TRACK=Pull Request
Enabled packages:
-- Setting Trilinos_ENABLE_ALL_PACKAGES = ON
-- Setting Trilinos_ENABLE_TrilinosATDMConfigTests = ON
-- Setting Trilinos_ENABLE_TrilinosBuildStats = ON
-- Setting Trilinos_ENABLE_TrilinosFrameworkTests = ON

Set CWD = /home/trilinos/jenkins/ride/workspace/trilinos-folder/Trilinos_pullrequest_cuda_9.2/TFW_testing_single_configure_prototype
Traceback (most recent call last):
File "/home/trilinos/jenkins/ride/workspace/trilinos-folder/Trilinos_pullrequest_cuda_9.2/Trilinos/cmake/std/PullRequestLinuxDriverTest.py", line 701, in
returnValue = run()
File "/home/trilinos/jenkins/ride/workspace/trilinos-folder/Trilinos_pullrequest_cuda_9.2/Trilinos/cmake/std/PullRequestLinuxDriverTest.py", line 694, in run
'-Dsubprojects_file=../package_subproject_list.cmake'])
File "/home/projects/ppc64le/python/2.7.12/lib/python2.7/subprocess.py", line 541, in check_call
raise CalledProcessError(retcode, cmd)
subprocess.CalledProcessError: Command '['ctest', '-S', 'simple_testing.cmake', '-Dbuild_name=PR-7508-test-Trilinos_pullrequest_cuda_9.2-4564', '-Dskip_by_parts_submit=OFF', '-Dskip_update_step=ON', '-Ddashboard_model=Experimental', '-Ddashboard_track=Pull Request', '-DPARALLEL_LEVEL=64', '-DTEST_PARALLEL_LEVEL=8', '-Dbuild_dir=/home/trilinos/jenkins/ride/workspace/trilinos-folder/Trilinos_pullrequest_cuda_9.2/pull_request_test', '-Dconfigure_script=/home/trilinos/jenkins/ride/workspace/trilinos-folder/Trilinos_pullrequest_cuda_9.2/Trilinos/cmake/std/PullRequestLinuxCuda9.2TestingSettings.cmake', '-Dpackage_enables=../packageEnables.cmake', '-Dsubprojects_file=../package_subproject_list.cmake']' returned non-zero exit status 255
Build step 'Execute shell' marked build as failure
Archiving artifacts
Finished: FAILURE

Console Output (last 100 lines) : Trilinos_pullrequest_clang_9.0.0 # 939 (click to expand)

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

CHANGED_PACKAGES_FULL_LIST='ALL_PACKAGES,TrilinosATDMConfigTests,TrilinosBuildStats,TrilinosFrameworkTests'

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

CHANGED_PACKAGES_ST_LIST='ALL_PACKAGES,TrilinosATDMConfigTests,TrilinosBuildStats,TrilinosFrameworkTests'

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-7508-test-Trilinos_pullrequest_clang_9.0.0-939
Cur dir = /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_clang_9.0.0/TFW_testing_single_configure_prototype
Source dir = /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_clang_9.0.0/Trilinos
Binary dir = /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_clang_9.0.0/pull_request_test
Parallel level = 10
Testing Parallel level = 10
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 = 59
Dashboard model = Experimental
Dashboard track = Pull Request
Running configuration:
/projects/sems/install/rhel6-x86_64/sems/utility/cmake/3.12.2/bin/cmake
-C "/scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_clang_9.0.0/Trilinos/cmake/std/PullRequestLinuxClang9.0.0TestingSettings.cmake"
-C "/scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_clang_9.0.0/packageEnables.cmake"
-DTrilinos_ENABLE_TESTS:BOOL=ON
-DTrilinos_PARALLEL_LINK_JOBS_LIMIT:STRING=2
-G "Ninja"
/scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_clang_9.0.0/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=ascic141&field2=buildname&compare2=61&value2=PR-7508-test-Trilinos_pullrequest_clang_9.0.0-939&field3=buildstamp&compare3=61&value3=20200611-0006-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-7508-test-Trilinos_pullrequest_clang_9.0.0-939&field2=buildstamp&compare2=61&value2=20200611-0006-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-7508-test-Trilinos_pullrequest_clang_9.0.0-939&field2=buildstamp&compare2=61&value2=20200611-0006-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 of output: 437K
configure submit error = 0
Configure suceeded.
Starting build step.
Each symbol represents 1024 bytes of output.
.................................................. Size: 49K
.................................................. Size: 99K
............................. Size of output: 128K
Build succeeded.
build submit error = 0
Starting testing step.
Tests succeeded.
test submit error = 0
File upload submit error = 0
3.2.10
JOB_COOWNERS_EMAILS = HRSwant@sandia.gov,trilinos@sandia.gov
SEMS_PARMETIS_LOCAL_COMPILER_VERSION = 4.4.7
SEMS_PARMETIS_LOCAL_PYTHON_VERSION = 2.6.6
SEMS_NETCDF_LIBRARY_PATH = /projects/sems/install/rhel6-x86_64/sems/tpl/netcdf/4.7.3/clang/9.0.0/openmpi/1.10.1/parallel/lib
GIT_URL = https://github.com/trilinos/Trilinos
SEMS_BOOST_LIBRARY_PATH = /projects/sems/install/rhel6-x86_64/sems/tpl/boost/1.63.0/clang/9.0.0/base/lib
SEMS_GCC_LOCAL_COMPILER_VERSION = 4.4.7
SNLSYSTEM = cee
MPIF77 = mpif77
SEMS_HDF5_ROOT = /projects/sems/install/rhel6-x86_64/sems/tpl/hdf5/1.10.6/clang/9.0.0/openmpi/1.10.1/parallel
SEMS_SCOTCH_INCLUDE_PATH = /projects/sems/install/rhel6-x86_64/sems/tpl/scotch/6.0.3/clang/9.0.0/openmpi/1.10.1/nopthread_64bit_parallel/include
LOADEDMODULES = sems-env:sems-git/2.10.1:sems-python/2.7.9:sems-gcc/5.3.0:sems-clang/9.0.0:sems-openmpi/1.10.1:sems-boost/1.63.0/base:sems-zlib/1.2.8/base:sems-hdf5/1.10.6/parallel:sems-netcdf/4.7.3/parallel:sems-parmetis/4.0.3/parallel:sems-scotch/6.0.3/nopthread_64bit_parallel:sems-superlu/4.3/base:sems-cmake/3.12.2:atdm-env:atdm-ninja_fortran/1.7.2
WORKSPACE_TMP = /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_clang_9.0.0@tmp
SEMS_CMAKE_VERSION = 3.12.2
HISTCONTROL = ignoredups
SERIAL_CXX = clang++
PWD = /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_clang_9.0.0
JENKINS_SERVER_COOKIE = 248910a9cd8de38c
BUILD_DISPLAY_NAME = #939
PULLREQUESTNUM = 7508
SEMS_SUPERLU_INCLUDE_PATH = /projects/sems/install/rhel6-x86_64/sems/tpl/superlu/4.3/clang/9.0.0/base/include

==========================================================================================
None
PULLREQUEST_CDASH_TRACK is set. Setting CDASH_TRACK=Pull Request
Enabled packages:
-- Setting Trilinos_ENABLE_ALL_PACKAGES = ON
-- Setting Trilinos_ENABLE_TrilinosATDMConfigTests = ON
-- Setting Trilinos_ENABLE_TrilinosBuildStats = ON
-- Setting Trilinos_ENABLE_TrilinosFrameworkTests = ON

Set CWD = /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_clang_9.0.0/TFW_testing_single_configure_prototype
Archiving artifacts
Finished: SUCCESS

Console Output (last 100 lines) : Trilinos_pullrequest_python_2 # 2677 (click to expand)

HUDSON_HOME = /var/lib/jenkins
TRILINOS_TARGET_BRANCH = develop
https_proxy = http://wwwproxy.sandia.gov:80
F90 = gfortran
SERIAL_F90 = gfortran
SEMS_CMAKE_ROOT = /projects/sems/install/rhel7-x86_64/sems/utility/cmake/3.10.3
JOB_COOWNERS = prwolfe,trilinos
SERIAL_FC = gfortran
BUILD_CAUSE_MANUALTRIGGER = true
HUDSON_COOKIE = ebadfe8a-66ce-4233-ba2f-a69904bf3600
ftp_proxy = http://wwwproxy.sandia.gov:80/
QT_GRAPHICSSYSTEM_CHECKED = 1
SEMS_NINJA_FORTRAN_LOCAL_COMPILER_VERSION = 4.8.5
F77 = gfortran
TRILINOS_TARGET_REPO = https://github.com/trilinos/Trilinos
NODE_OWNER_EMAIL = ceeadmin@sandia.gov
SEMS_GIT_LOCAL_PYTHON_VERSION = 2.7.5
NODE_NAME = tr-test-4-trilinos
GIT_CHECKOUT_DIR = Trilinos
SEMS_NINJA_FORTRAN_VERSION = 1.7.2
SEMS_COMPILER_VERSION = 7.2.0
SSH_CLIENT = 205.137.81.17 57002 22
JENKINS_URL = https://ascic-jenkins.sandia.gov/
LOGNAME = trilinos
NODE_LABELS = tr-test-4-trilinos trilinos-32 trilinos-any trilinos-cloud-32 trilinos_cloud_32_node_4
PATH = /projects/sierra/linux_rh7/install/Python/2.7.15/bin:/projects/sierra/linux_rh7/install/Python/extrasbin:/projects/sems/install/rhel7-x86_64/atdm/utility/ninja_fortran/1.7.2/sbin:/projects/sems/install/rhel7-x86_64/atdm/utility/ninja_fortran/1.7.2/bin:/projects/sems/install/rhel7-x86_64/sems/utility/cmake/3.10.3/sbin:/projects/sems/install/rhel7-x86_64/sems/utility/cmake/3.10.3/bin:/projects/sems/install/rhel7-x86_64/sems/compiler/gcc/7.2.0/base/bin:/projects/sems/install/rhel7-x86_64/sems/utility/git/2.10.1/sbin:/projects/sems/install/rhel7-x86_64/sems/utility/git/2.10.1/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/ascldap/users/trilinos/.local/bin:/ascldap/users/trilinos/bin
SEMS_NINJA_FORTRAN_LOCAL_PYTHON_VERSION = 2.7.5
GIT_PREVIOUS_SUCCESSFUL_COMMIT = 8ee2d2bd329d823ef58051c97a5873dce78b40a2
no_proxy = localhost,localnets,127.0.0.1,169.254.0.0/16,forge.sandia.gov
CC = gcc
SEMS_CMAKE_LOCAL_COMPILER_VERSION = 4.8.5
JOB_OWNER_EMAIL = prwolfe@sandia.gov
PULLREQUEST_CDASH_TRACK = Pull Request
BUILD_ID = 2677
JOB_COOWNERS_EMAILS = prwolfe@sandia.gov,trilinos@sandia.gov
GIT_URL = https://github.com/trilinos/Trilinos
SEMS_GCC_LOCAL_COMPILER_VERSION = 4.8.5
LOADEDMODULES = sems-env:sems-git/2.10.1:sems-gcc/7.2.0:sems-cmake/3.10.3:atdm-env:atdm-ninja_fortran/1.Currently Loaded Modulefiles:
  1) sems-env                   4) sems-cmake/3.10.3
  2) sems-git/2.10.1            5) atdm-env
  3) sems-gcc/7.2.0             6) atdm-ninja_fortran/1.7.2
Build name               = PR-7508-test-Trilinos_pullrequest_python_2-2677
Cur dir                  = /scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_python_2/TFW_testing_single_configure_prototype
Source dir               = /scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_python_2/Trilinos
Binary dir               = /scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_python_2/pull_request_test
Parallel level           = 20
Testing Parallel level   = 20
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         = 1
Dashboard model          = Experimental
Dashboard track          = Pull Request
Running configuration:
/projects/sems/install/rhel7-x86_64/sems/utility/cmake/3.10.3/bin/cmake 
  -C "/scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_python_2/Trilinos/cmake/std/PullRequestLinuxPython2.cmake"
  -C "/scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_python_2/packageEnables.cmake"
  -DTrilinos_ENABLE_TESTS:BOOL=ON
  -DTrilinos_PARALLEL_LINK_JOBS_LIMIT:STRING=2
  -G "Ninja"
  /scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_python_2/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=tr-test-4.novalocal&field2=buildname&compare2=61&value2=PR-7508-test-Trilinos_pullrequest_python_2-2677&field3=buildstamp&compare3=61&value3=20200611-0006-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-7508-test-Trilinos_pullrequest_python_2-2677&field2=buildstamp&compare2=61&value2=20200611-0006-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-7508-test-Trilinos_pullrequest_python_2-2677&field2=buildstamp&compare2=61&value2=20200611-0006-Pull Request
Starting configure step.
   Each . represents 1024 bytes of output
    ....................... Size of output: 22K
configure submit error = 0
Configure suceeded.
Starting build step.
   Each symbol represents 1024 bytes of output.
    . Size of output: 0K
Build succeeded.
build submit error = 0
Starting testing step.
Tests succeeded.
test submit error = 0
File upload submit error = 0
7.2
WORKSPACE_TMP = /scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_python_2@tmp
SEMS_CMAKE_VERSION = 3.10.3
HISTCONTROL = ignoredups
SERIAL_CXX = g++
PWD = /scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_python_2
JENKINS_SERVER_COOKIE = 248910a9cd8de38c
BUILD_DISPLAY_NAME = #2677
PULLREQUESTNUM = 7508

==========================================================================================
None
PULLREQUEST_CDASH_TRACK is set. Setting CDASH_TRACK=Pull Request
Enabled packages:
-- Setting Trilinos_ENABLE_TrilinosFrameworkTests = ON

Set CWD = /scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_python_2/TFW_testing_single_configure_prototype
Archiving artifacts
Finished: SUCCESS

Console Output (last 100 lines) : Trilinos_pullrequest_python_3 # 2686 (click to expand)

HUDSON_HOME = /var/lib/jenkins
TRILINOS_TARGET_BRANCH = develop
https_proxy = http://wwwproxy.sandia.gov:80
F90 = gfortran
SERIAL_F90 = gfortran
SEMS_CMAKE_ROOT = /projects/sems/install/rhel7-x86_64/sems/utility/cmake/3.10.3
JOB_COOWNERS = prwolfe,trilinos
SERIAL_FC = gfortran
BUILD_CAUSE_MANUALTRIGGER = true
HUDSON_COOKIE = 15bfbe9e-3446-4bc0-bbfc-251bef91366e
ftp_proxy = http://wwwproxy.sandia.gov:80/
QT_GRAPHICSSYSTEM_CHECKED = 1
SEMS_NINJA_FORTRAN_LOCAL_COMPILER_VERSION = 4.8.5
F77 = gfortran
TRILINOS_TARGET_REPO = https://github.com/trilinos/Trilinos
NODE_OWNER_EMAIL = ceeadmin@sandia.gov
SEMS_GIT_LOCAL_PYTHON_VERSION = 2.7.5
NODE_NAME = tr-test-4-trilinos
GIT_CHECKOUT_DIR = Trilinos
SEMS_NINJA_FORTRAN_VERSION = 1.7.2
SEMS_COMPILER_VERSION = 7.2.0
SSH_CLIENT = 205.137.81.17 57002 22
JENKINS_URL = https://ascic-jenkins.sandia.gov/
LOGNAME = trilinos
NODE_LABELS = tr-test-4-trilinos trilinos-32 trilinos-any trilinos-cloud-32 trilinos_cloud_32_node_4
PATH = /projects/sierra/linux_rh7/install/Python/3.6.3/bin:/projects/sierra/linux_rh7/install/Python/extrasbin:/projects/sems/install/rhel7-x86_64/atdm/utility/ninja_fortran/1.7.2/sbin:/projects/sems/install/rhel7-x86_64/atdm/utility/ninja_fortran/1.7.2/bin:/projects/sems/install/rhel7-x86_64/sems/utility/cmake/3.10.3/sbin:/projects/sems/install/rhel7-x86_64/sems/utility/cmake/3.10.3/bin:/projects/sems/install/rhel7-x86_64/sems/compiler/gcc/7.2.0/base/bin:/projects/sems/install/rhel7-x86_64/sems/utility/git/2.10.1/sbin:/projects/sems/install/rhel7-x86_64/sems/utility/git/2.10.1/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/ascldap/users/trilinos/.local/bin:/ascldap/users/trilinos/bin
SEMS_NINJA_FORTRAN_LOCAL_PYTHON_VERSION = 2.7.5
GIT_PREVIOUS_SUCCESSFUL_COMMIT = 8ee2d2bd329d823ef58051c97a5873dce78b40a2
no_proxy = localhost,localnets,127.0.0.1,169.254.0.0/16,forge.sandia.gov
CC = gcc
SEMS_CMAKE_LOCAL_COMPILER_VERSION = 4.8.5
JOB_OWNER_EMAIL = prwolfe@sandia.gov
PULLREQUEST_CDASH_TRACK = Pull Request
BUILD_ID = 2686
JOB_COOWNERS_EMAILS = prwolfe@sandia.gov,trilinos@sandia.gov
GIT_URL = https://github.com/trilinos/Trilinos
SEMS_GCC_LOCAL_COMPILER_VERSION = 4.8.5
LOADEDMODULES = sems-env:sems-git/2.10.1:sems-gcc/7.2.0:sems-cmake/3.10.3:atdm-env:atdm-ninja_fortran/1.7.Currently Loaded Modulefiles:
  1) sems-env                   4) sems-cmake/3.10.3
  2) sems-git/2.10.1            5) atdm-env
  3) sems-gcc/7.2.0             6) atdm-ninja_fortran/1.7.2
Build name               = PR-7508-test-Trilinos_pullrequest_python_3-2686
Cur dir                  = /scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_python_3/TFW_testing_single_configure_prototype
Source dir               = /scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_python_3/Trilinos
Binary dir               = /scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_python_3/pull_request_test
Parallel level           = 20
Testing Parallel level   = 20
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         = 1
Dashboard model          = Experimental
Dashboard track          = Pull Request
Running configuration:
/projects/sems/install/rhel7-x86_64/sems/utility/cmake/3.10.3/bin/cmake 
  -C "/scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_python_3/Trilinos/cmake/std/PullRequestLinuxPython3.cmake"
  -C "/scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_python_3/packageEnables.cmake"
  -DTrilinos_ENABLE_TESTS:BOOL=ON
  -DTrilinos_PARALLEL_LINK_JOBS_LIMIT:STRING=2
  -G "Ninja"
  /scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_python_3/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=tr-test-4.novalocal&field2=buildname&compare2=61&value2=PR-7508-test-Trilinos_pullrequest_python_3-2686&field3=buildstamp&compare3=61&value3=20200611-0006-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-7508-test-Trilinos_pullrequest_python_3-2686&field2=buildstamp&compare2=61&value2=20200611-0006-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-7508-test-Trilinos_pullrequest_python_3-2686&field2=buildstamp&compare2=61&value2=20200611-0006-Pull Request
Starting configure step.
   Each . represents 1024 bytes of output
    ....................... Size of output: 22K
configure submit error = 0
Configure suceeded.
Starting build step.
   Each symbol represents 1024 bytes of output.
    . Size of output: 0K
Build succeeded.
build submit error = 0
Starting testing step.
Tests succeeded.
test submit error = 0
File upload submit error = 0
2
WORKSPACE_TMP = /scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_python_3@tmp
SEMS_CMAKE_VERSION = 3.10.3
HISTCONTROL = ignoredups
SERIAL_CXX = g++
PWD = /scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_python_3
JENKINS_SERVER_COOKIE = 248910a9cd8de38c
BUILD_DISPLAY_NAME = #2686
PULLREQUESTNUM = 7508

==========================================================================================
None
PULLREQUEST_CDASH_TRACK is set. Setting CDASH_TRACK=Pull Request
Enabled packages:
-- Setting Trilinos_ENABLE_TrilinosFrameworkTests = ON

Set CWD = /scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_python_3/TFW_testing_single_configure_prototype
Archiving artifacts
Finished: SUCCESS


CDash Test Results for PR# 7508.


Wiki: How to Reproduce PR Testing Builds and Errors.

@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_4.8.4

  • Build Num: 7001
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
COMPILER_MODULE sems-gcc/4.8.4
JENKINS_BUILD_TYPE Release
JENKINS_COMM_TYPE MPI
JENKINS_DO_COMPLEX OFF
JENKINS_JOB_TYPE Experimental
MPI_MODULE sems-openmpi/1.8.7
PULLREQUESTNUM 7508
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH 7376-build-stats
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 03ad108
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 7ba2010

Build Information

Test Name: Trilinos_pullrequest_intel_17.0.1

  • Build Num: 6811
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 7508
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH 7376-build-stats
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 03ad108
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 7ba2010

Build Information

Test Name: Trilinos_pullrequest_gcc_4.9.3_SERIAL

  • Build Num: 5236
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 7508
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH 7376-build-stats
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 03ad108
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 7ba2010

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0

  • Build Num: 5083
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 7508
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH 7376-build-stats
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 03ad108
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 7ba2010

Build Information

Test Name: Trilinos_pullrequest_gcc_8.3.0

  • Build Num: 1272
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 7508
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH 7376-build-stats
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 03ad108
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 7ba2010

Build Information

Test Name: Trilinos_pullrequest_cuda_9.2

  • Build Num: 4567
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 7508
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH 7376-build-stats
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 03ad108
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 7ba2010

Build Information

Test Name: Trilinos_pullrequest_clang_9.0.0

  • Build Num: 942
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 7508
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH 7376-build-stats
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 03ad108
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 7ba2010

Build Information

Test Name: Trilinos_pullrequest_python_2

  • Build Num: 2680
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 7508
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH 7376-build-stats
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 03ad108
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 7ba2010

Build Information

Test Name: Trilinos_pullrequest_python_3

  • Build Num: 2689
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 7508
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH 7376-build-stats
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 03ad108
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 7ba2010

Using Repos:

Repo: TRILINOS (bartlettroscoe/Trilinos)
  • Branch: 7376-build-stats
  • SHA: 03ad108
  • Mode: TEST_REPO

Pull Request Author: bartlettroscoe

@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_4.8.4

  • Build Num: 7001
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
COMPILER_MODULE sems-gcc/4.8.4
JENKINS_BUILD_TYPE Release
JENKINS_COMM_TYPE MPI
JENKINS_DO_COMPLEX OFF
JENKINS_JOB_TYPE Experimental
MPI_MODULE sems-openmpi/1.8.7
PULLREQUESTNUM 7508
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH 7376-build-stats
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 03ad108
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 7ba2010

Build Information

Test Name: Trilinos_pullrequest_intel_17.0.1

  • Build Num: 6811
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 7508
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH 7376-build-stats
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 03ad108
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 7ba2010

Build Information

Test Name: Trilinos_pullrequest_gcc_4.9.3_SERIAL

  • Build Num: 5236
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 7508
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH 7376-build-stats
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 03ad108
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 7ba2010

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0

  • Build Num: 5083
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 7508
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH 7376-build-stats
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 03ad108
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 7ba2010

Build Information

Test Name: Trilinos_pullrequest_gcc_8.3.0

  • Build Num: 1272
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 7508
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH 7376-build-stats
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 03ad108
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 7ba2010

Build Information

Test Name: Trilinos_pullrequest_cuda_9.2

  • Build Num: 4567
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 7508
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH 7376-build-stats
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 03ad108
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 7ba2010

Build Information

Test Name: Trilinos_pullrequest_clang_9.0.0

  • Build Num: 942
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 7508
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH 7376-build-stats
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 03ad108
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 7ba2010

Build Information

Test Name: Trilinos_pullrequest_python_2

  • Build Num: 2680
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 7508
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH 7376-build-stats
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 03ad108
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 7ba2010

Build Information

Test Name: Trilinos_pullrequest_python_3

  • Build Num: 2689
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 7508
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH 7376-build-stats
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 03ad108
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 7ba2010
Console Output (last 100 lines) : Trilinos_pullrequest_gcc_4.8.4 # 7001 (click to expand)

A) Generate the Trilinos Packages definition and depencencies XML file

Wrote the file 'TrilinosPackageDependencies.xml'

B) Get the set of changed files

Current directory: /scratch/trilinos/jenkins/tr-test-8/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/Trilinos

git diff --name-only origin/develop..HEAD > /scratch/trilinos/jenkins/tr-test-8/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/changed-files.txt

Wrote file 'changed-files.txt'

Current directory: /scratch/trilinos/jenkins/tr-test-8/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4

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

CHANGED_PACKAGES_FULL_LIST='ALL_PACKAGES,TrilinosATDMConfigTests,TrilinosBuildStats,TrilinosFrameworkTests'

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

CHANGED_PACKAGES_ST_LIST='ALL_PACKAGES,TrilinosATDMConfigTests,TrilinosBuildStats,TrilinosFrameworkTests'

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-7508-test-Trilinos_pullrequest_gcc_4.8.4-7001
Cur dir = /scratch/trilinos/jenkins/tr-test-8/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/TFW_testing_single_configure_prototype
Source dir = /scratch/trilinos/jenkins/tr-test-8/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/Trilinos
Binary dir = /scratch/trilinos/jenkins/tr-test-8/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/pull_request_test
Parallel level = 20
Testing Parallel level = 10
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 = 59
Dashboard model = Experimental
Dashboard track = Pull Request
Running configuration:
/projects/sems/install/rhel7-x86_64/sems/utility/cmake/3.10.3/bin/cmake
-C "/scratch/trilinos/jenkins/tr-test-8/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/Trilinos/cmake/std/PullRequestLinuxGCC4.8.4TestingSettings.cmake"
-C "/scratch/trilinos/jenkins/tr-test-8/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/packageEnables.cmake"
-DTrilinos_ENABLE_TESTS:BOOL=ON
-DTrilinos_PARALLEL_LINK_JOBS_LIMIT:STRING=2
-G "Ninja"
/scratch/trilinos/jenkins/tr-test-8/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/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=tr-test-8.novalocal&field2=buildname&compare2=61&value2=PR-7508-test-Trilinos_pullrequest_gcc_4.8.4-7001&field3=buildstamp&compare3=61&value3=20200611-0404-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-7508-test-Trilinos_pullrequest_gcc_4.8.4-7001&field2=buildstamp&compare2=61&value2=20200611-0404-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-7508-test-Trilinos_pullrequest_gcc_4.8.4-7001&field2=buildstamp&compare2=61&value2=20200611-0404-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: 454K
configure submit error = 0
Configure suceeded.
Starting build step.
Each symbol represents 1024 bytes of output.
.................................. Size of output: 33K
Build succeeded.
build submit error = 0
Starting testing step.
Tests succeeded.
test submit error = 0
File upload submit error = 0
pace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4@tmp
SEMS_CMAKE_VERSION = 3.10.3
HISTCONTROL = ignoredups
SERIAL_CXX = g++
PWD = /scratch/trilinos/jenkins/tr-test-8/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4
JENKINS_SERVER_COOKIE = 248910a9cd8de38c
BUILD_DISPLAY_NAME = #7001
PULLREQUESTNUM = 7508
SEMS_SUPERLU_INCLUDE_PATH = /projects/sems/install/rhel7-x86_64/sems/tpl/superlu/4.3/gcc/4.8.4/base/include

==========================================================================================
None
PULLREQUEST_CDASH_TRACK is set. Setting CDASH_TRACK=Pull Request
Enabled packages:
-- Setting Trilinos_ENABLE_ALL_PACKAGES = ON
-- Setting Trilinos_ENABLE_TrilinosATDMConfigTests = ON
-- Setting Trilinos_ENABLE_TrilinosBuildStats = ON
-- Setting Trilinos_ENABLE_TrilinosFrameworkTests = ON

Set CWD = /scratch/trilinos/jenkins/tr-test-8/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/TFW_testing_single_configure_prototype
Archiving artifacts
Finished: SUCCESS

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

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

CHANGED_PACKAGES_ST_LIST='ALL_PACKAGES,TrilinosATDMConfigTests,TrilinosBuildStats,TrilinosFrameworkTests'

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-7508-test-Trilinos_pullrequest_intel_17.0.1-6811
Cur dir = /scratch/trilinos/jenkins/ascic143/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/TFW_testing_single_configure_prototype
Source dir = /scratch/trilinos/jenkins/ascic143/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/Trilinos
Binary dir = /scratch/trilinos/jenkins/ascic143/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/pull_request_test
Parallel level = 20
Testing Parallel level = 10
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 = 59
Dashboard model = Experimental
Dashboard track = Pull Request
Running configuration:
/projects/sems/install/rhel6-x86_64/sems/utility/cmake/3.10.3/bin/cmake
-C "/scratch/trilinos/jenkins/ascic143/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/Trilinos/cmake/std/PullRequestLinuxIntelTestingSettings.cmake"
-C "/scratch/trilinos/jenkins/ascic143/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/ascic143/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=ascic143&field2=buildname&compare2=61&value2=PR-7508-test-Trilinos_pullrequest_intel_17.0.1-6811&field3=buildstamp&compare3=61&value3=20200611-0404-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-7508-test-Trilinos_pullrequest_intel_17.0.1-6811&field2=buildstamp&compare2=61&value2=20200611-0404-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-7508-test-Trilinos_pullrequest_intel_17.0.1-6811&field2=buildstamp&compare2=61&value2=20200611-0404-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: 456K
configure submit error = 0
Configure suceeded.
Starting build step.
Each symbol represents 1024 bytes of output.
................................. Size of output: 32K
Build succeeded.
build submit error = 0
Starting testing step.
Tests succeeded.
test submit error = 0
File upload submit error = 0
ects/sems/install/rhel6-x86_64/sems/tpl/netcdf/4.7.3/intel/17.0.1/mpich/3.2/parallel/include
MKL_LIB = /projects/sems/install/rhel6-x86_64/sems/compiler/intel/17.0.1/base/mkl/lib/intel64
MODULE_VERSION_STACK = 3.2.10
SEMS_MPICH_ROOT = /projects/sems/install/rhel6-x86_64/sems/compiler/intel/17.0.1/mpich/3.2
JOB_COOWNERS_EMAILS = prwolfe@sandia.gov,trilinos@sandia.gov
SEMS_PARMETIS_LOCAL_COMPILER_VERSION = 4.4.7
SEMS_PARMETIS_LOCAL_PYTHON_VERSION = 2.6.6
SEMS_NETCDF_LIBRARY_PATH = /projects/sems/install/rhel6-x86_64/sems/tpl/netcdf/4.7.3/intel/17.0.1/mpich/3.2/parallel/lib
GIT_URL = https://github.com/trilinos/Trilinos
SEMS_INTEL_LOCAL_PYTHON_VERSION = 2.6.6
SEMS_BOOST_LIBRARY_PATH = /projects/sems/install/rhel6-x86_64/sems/tpl/boost/1.63.0/intel/17.0.1/base/lib
SEMS_GCC_LOCAL_COMPILER_VERSION = 4.4.7
SNLSYSTEM = cee
MPIF77 = mpif77
SEMS_HDF5_ROOT = /projects/sems/install/rhel6-x86_64/sems/tpl/hdf5/1.10.6/intel/17.0.1/mpich/3.2/parallel
SEMS_SCOTCH_INCLUDE_PATH = /projects/sems/install/rhel6-x86_64/sems/tpl/scotch/6.0.3/intel/17.0.1/mpich/3.2/nopthread_64bit_parallel/include
LOADEDMODULES = sems-env:sems-git/2.10.1:sems-python/2.7.9:sems-gcc/4.9.3:sems-intel/17.0.1:sems-mpich/3.2:sems-boost/1.63.0/base:sems-zlib/1.2.8/base:sems-hdf5/1.10.6/parallel:sems-netcdf/4.7.3/parallel:sems-parmetis/4.0.3/parallel:sems-scotch/6.0.3/nopthread_64bit_parallel:sems-superlu/4.3/base:sems-cmake/3.10.3:atdm-env:atdm-ninja_fortran/1.7.2
WORKSPACE_TMP = /scratch/trilinos/jenkins/ascic143/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1@tmp
SEMS_CMAKE_VERSION = 3.10.3
HISTCONTROL = ignoredups
SERIAL_CXX = icpc
PWD = /scratch/trilinos/jenkins/ascic143/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1
JENKINS_SERVER_COOKIE = 248910a9cd8de38c
BUILD_DISPLAY_NAME = #6811
PULLREQUESTNUM = 7508
SEMS_SUPERLU_INCLUDE_PATH = /projects/sems/install/rhel6-x86_64/sems/tpl/superlu/4.3/intel/17.0.1/base/include

==========================================================================================
None
PULLREQUEST_CDASH_TRACK is set. Setting CDASH_TRACK=Pull Request
Enabled packages:
-- Setting Trilinos_ENABLE_ALL_PACKAGES = ON
-- Setting Trilinos_ENABLE_TrilinosATDMConfigTests = ON
-- Setting Trilinos_ENABLE_TrilinosBuildStats = ON
-- Setting Trilinos_ENABLE_TrilinosFrameworkTests = ON

Set CWD = /scratch/trilinos/jenkins/ascic143/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/TFW_testing_single_configure_prototype
Archiving artifacts
Finished: SUCCESS

Console Output (last 100 lines) : Trilinos_pullrequest_gcc_4.9.3_SERIAL # 5236 (click to expand)

TRILINOS_DIR=/scratch/trilinos/jenkins/tr-test-2/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/Trilinos/commonTools/framework/../..
TRILINOS_SCRIPTS_DIR=/scratch/trilinos/jenkins/tr-test-2/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/Trilinos/commonTools/framework/../..
TRIBITS_DIR=/scratch/trilinos/jenkins/tr-test-2/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/Trilinos/commonTools/framework/../../cmake/tribits

*** Generating set of Trilinos enables given modified packages from
*** git commit origin/develop to HEAD


A) Generate the Trilinos Packages definition and depencencies XML file

Wrote the file 'TrilinosPackageDependencies.xml'

B) Get the set of changed files

Current directory: /scratch/trilinos/jenkins/tr-test-2/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/Trilinos

git diff --name-only origin/develop..HEAD > /scratch/trilinos/jenkins/tr-test-2/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/changed-files.txt

Wrote file 'changed-files.txt'

Current directory: /scratch/trilinos/jenkins/tr-test-2/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL

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

CHANGED_PACKAGES_FULL_LIST='ALL_PACKAGES,TrilinosATDMConfigTests,TrilinosBuildStats,TrilinosFrameworkTests'

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

CHANGED_PACKAGES_ST_LIST='ALL_PACKAGES,TrilinosATDMConfigTests,TrilinosBuildStats,TrilinosFrameworkTests'

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-7508-test-Trilinos_pullrequest_gcc_4.9.3_SERIAL-5236
Cur dir = /scratch/trilinos/jenkins/tr-test-2/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/TFW_testing_single_configure_prototype
Source dir = /scratch/trilinos/jenkins/tr-test-2/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/Trilinos
Binary dir = /scratch/trilinos/jenkins/tr-test-2/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/pull_request_test
Parallel level = 20
Testing Parallel level = 10
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 = 59
Dashboard model = Experimental
Dashboard track = Pull Request
Running configuration:
/projects/sems/install/rhel7-x86_64/sems/utility/cmake/3.10.3/bin/cmake
-C "/scratch/trilinos/jenkins/tr-test-2/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/Trilinos/cmake/std/PullRequestLinuxGCC4.9.3TestingSettingsSERIAL.cmake"
-C "/scratch/trilinos/jenkins/tr-test-2/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/packageEnables.cmake"
-DTrilinos_ENABLE_TESTS:BOOL=ON
-DTrilinos_PARALLEL_LINK_JOBS_LIMIT:STRING=2
-G "Ninja"
/scratch/trilinos/jenkins/tr-test-2/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/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=tr-test-2.novalocal&field2=buildname&compare2=61&value2=PR-7508-test-Trilinos_pullrequest_gcc_4.9.3_SERIAL-5236&field3=buildstamp&compare3=61&value3=20200611-0404-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-7508-test-Trilinos_pullrequest_gcc_4.9.3_SERIAL-5236&field2=buildstamp&compare2=61&value2=20200611-0404-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-7508-test-Trilinos_pullrequest_gcc_4.9.3_SERIAL-5236&field2=buildstamp&compare2=61&value2=20200611-0404-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 of output: 380K
configure submit error = 0
Configure suceeded.
Starting build step.
Each symbol represents 1024 bytes of output.
................................ Size of output: 31K
Build succeeded.
build submit error = 0
Starting testing step.
Tests succeeded.
test submit error = 0
File upload submit error = 0
gcc/4.9.3/base/include

==========================================================================================
None
PULLREQUEST_CDASH_TRACK is set. Setting CDASH_TRACK=Pull Request
Enabled packages:
-- Setting Trilinos_ENABLE_ALL_PACKAGES = ON
-- Setting Trilinos_ENABLE_TrilinosATDMConfigTests = ON
-- Setting Trilinos_ENABLE_TrilinosBuildStats = ON
-- Setting Trilinos_ENABLE_TrilinosFrameworkTests = ON

Set CWD = /scratch/trilinos/jenkins/tr-test-2/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/TFW_testing_single_configure_prototype
Archiving artifacts
Finished: SUCCESS

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

*** Generating set of Trilinos enables given modified packages from
*** git commit origin/develop to HEAD
***

A) Generate the Trilinos Packages definition and depencencies XML file

Wrote the file 'TrilinosPackageDependencies.xml'

B) Get the set of changed files

Current directory: /scratch/trilinos/jenkins/tr-test-0/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/Trilinos

git diff --name-only origin/develop..HEAD > /scratch/trilinos/jenkins/tr-test-0/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/changed-files.txt

Wrote file 'changed-files.txt'

Current directory: /scratch/trilinos/jenkins/tr-test-0/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0

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

CHANGED_PACKAGES_FULL_LIST='ALL_PACKAGES,TrilinosATDMConfigTests,TrilinosBuildStats,TrilinosFrameworkTests'

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

CHANGED_PACKAGES_ST_LIST='ALL_PACKAGES,TrilinosATDMConfigTests,TrilinosBuildStats,TrilinosFrameworkTests'

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-7508-test-Trilinos_pullrequest_gcc_7.2.0-5083
Cur dir = /scratch/trilinos/jenkins/tr-test-0/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/TFW_testing_single_configure_prototype
Source dir = /scratch/trilinos/jenkins/tr-test-0/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/Trilinos
Binary dir = /scratch/trilinos/jenkins/tr-test-0/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/pull_request_test
Parallel level = 20
Testing Parallel level = 10
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 = 59
Dashboard model = Experimental
Dashboard track = Pull Request
Running configuration:
/projects/sems/install/rhel7-x86_64/sems/utility/cmake/3.10.3/bin/cmake
-C "/scratch/trilinos/jenkins/tr-test-0/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/Trilinos/cmake/std/PullRequestLinuxGCC7.2.0TestingSettings.cmake"
-C "/scratch/trilinos/jenkins/tr-test-0/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/packageEnables.cmake"
-DTrilinos_ENABLE_TESTS:BOOL=ON
-DTrilinos_PARALLEL_LINK_JOBS_LIMIT:STRING=2
-G "Ninja"
/scratch/trilinos/jenkins/tr-test-0/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/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=tr-host-0.novalocal&field2=buildname&compare2=61&value2=PR-7508-test-Trilinos_pullrequest_gcc_7.2.0-5083&field3=buildstamp&compare3=61&value3=20200611-0404-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-7508-test-Trilinos_pullrequest_gcc_7.2.0-5083&field2=buildstamp&compare2=61&value2=20200611-0404-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-7508-test-Trilinos_pullrequest_gcc_7.2.0-5083&field2=buildstamp&compare2=61&value2=20200611-0404-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 of output: 441K
configure submit error = 0
Configure suceeded.
Starting build step.
Each symbol represents 1024 bytes of output.
................................ Size of output: 31K
Build succeeded.
build submit error = 0
Starting testing step.
Tests succeeded.
test submit error = 0
File upload submit error = 0
e/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0
JENKINS_SERVER_COOKIE = 248910a9cd8de38c
BUILD_DISPLAY_NAME = #5083
PULLREQUESTNUM = 7508
SEMS_SUPERLU_INCLUDE_PATH = /projects/sems/install/rhel7-x86_64/sems/tpl/superlu/4.3/gcc/7.2.0/base/include

==========================================================================================
None
PULLREQUEST_CDASH_TRACK is set. Setting CDASH_TRACK=Pull Request
Enabled packages:
-- Setting Trilinos_ENABLE_ALL_PACKAGES = ON
-- Setting Trilinos_ENABLE_TrilinosATDMConfigTests = ON
-- Setting Trilinos_ENABLE_TrilinosBuildStats = ON
-- Setting Trilinos_ENABLE_TrilinosFrameworkTests = ON

Set CWD = /scratch/trilinos/jenkins/tr-test-0/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/TFW_testing_single_configure_prototype
Archiving artifacts
Finished: SUCCESS

Console Output (last 100 lines) : Trilinos_pullrequest_gcc_8.3.0 # 1272 (click to expand)

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

CHANGED_PACKAGES_FULL_LIST='ALL_PACKAGES,TrilinosATDMConfigTests,TrilinosBuildStats,TrilinosFrameworkTests'

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

CHANGED_PACKAGES_ST_LIST='ALL_PACKAGES,TrilinosATDMConfigTests,TrilinosBuildStats,TrilinosFrameworkTests'

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-7508-test-Trilinos_pullrequest_gcc_8.3.0-1272
Cur dir = /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0@2/TFW_testing_single_configure_prototype
Source dir = /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0@2/Trilinos
Binary dir = /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0@2/pull_request_test
Parallel level = 20
Testing Parallel level = 10
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 = 59
Dashboard model = Experimental
Dashboard track = Pull Request
Running configuration:
/projects/sems/install/rhel7-x86_64/sems/utility/cmake/3.10.3/bin/cmake
-C "/scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0@2/Trilinos/cmake/std/PullRequestLinuxGCC8.3.0TestingSettings.cmake"
-C "/scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0@2/packageEnables.cmake"
-DTrilinos_ENABLE_TESTS:BOOL=ON
-DTrilinos_PARALLEL_LINK_JOBS_LIMIT:STRING=2
-G "Ninja"
/scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0@2/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=ascic166&field2=buildname&compare2=61&value2=PR-7508-test-Trilinos_pullrequest_gcc_8.3.0-1272&field3=buildstamp&compare3=61&value3=20200611-0405-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-7508-test-Trilinos_pullrequest_gcc_8.3.0-1272&field2=buildstamp&compare2=61&value2=20200611-0405-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-7508-test-Trilinos_pullrequest_gcc_8.3.0-1272&field2=buildstamp&compare2=61&value2=20200611-0405-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 of output: 441K
configure submit error = 0
Configure suceeded.
Starting build step.
Each symbol represents 1024 bytes of output.
.................................................. Size: 49K
.................................................. Size: 99K
.................................................. Size: 149K
............... Size of output: 164K
Build succeeded.
build submit error = 0
Starting testing step.
Tests succeeded.
test submit error = 0
File upload submit error = 0
B_COOWNERS_EMAILS = HRSwant@sandia.gov,trilinos@sandia.gov
SEMS_PARMETIS_LOCAL_COMPILER_VERSION = 4.8.5
SEMS_PARMETIS_LOCAL_PYTHON_VERSION = 2.7.5
SEMS_NETCDF_LIBRARY_PATH = /projects/sems/install/rhel7-x86_64/sems/tpl/netcdf/4.7.3/gcc/8.3.0/openmpi/1.10.1/parallel/lib
GIT_BRANCH = origin/develop
SEMS_BOOST_LIBRARY_PATH = /projects/sems/install/rhel7-x86_64/sems/tpl/boost/1.66.0/gcc/8.3.0/base/lib
SEMS_GCC_LOCAL_COMPILER_VERSION = 4.8.5
SNLSYSTEM = cee
MPIF77 = mpif77
SEMS_HDF5_ROOT = /projects/sems/install/rhel7-x86_64/sems/tpl/hdf5/1.10.6/gcc/8.3.0/openmpi/1.10.1/parallel
SEMS_SCOTCH_INCLUDE_PATH = /projects/sems/install/rhel7-x86_64/sems/tpl/scotch/6.0.3/gcc/8.3.0/openmpi/1.10.1/nopthread_64bit_parallel/include
LOADEDMODULES = sems-env:sems-git/2.10.1:sems-python/2.7.9:sems-gcc/8.3.0:sems-openmpi/1.10.1:sems-boost/1.66.0/base:sems-zlib/1.2.8/base:sems-hdf5/1.10.6/parallel:sems-netcdf/4.7.3/parallel:sems-parmetis/4.0.3/parallel:sems-scotch/6.0.3/nopthread_64bit_parallel:sems-superlu/4.3/base:sems-cmake/3.10.3:atdm-env:atdm-ninja_fortran/1.7.2
WORKSPACE_TMP = /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0@2@tmp
SEMS_CMAKE_VERSION = 3.10.3
HISTCONTROL = ignoredups
SERIAL_CXX = g++
PWD = /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0@2
JENKINS_SERVER_COOKIE = 248910a9cd8de38c
BUILD_DISPLAY_NAME = #1272
PULLREQUESTNUM = 7508
SEMS_SUPERLU_INCLUDE_PATH = /projects/sems/install/rhel7-x86_64/sems/tpl/superlu/4.3/gcc/8.3.0/base/include

==========================================================================================
None
PULLREQUEST_CDASH_TRACK is set. Setting CDASH_TRACK=Pull Request
Enabled packages:
-- Setting Trilinos_ENABLE_ALL_PACKAGES = ON
-- Setting Trilinos_ENABLE_TrilinosATDMConfigTests = ON
-- Setting Trilinos_ENABLE_TrilinosBuildStats = ON
-- Setting Trilinos_ENABLE_TrilinosFrameworkTests = ON

Set CWD = /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0@2/TFW_testing_single_configure_prototype
Archiving artifacts
Finished: SUCCESS

Console Output (last 100 lines) : Trilinos_pullrequest_cuda_9.2 # 4567 (click to expand)

Starting testing step.
CMake Error at /home/trilinos/jenkins/ride/workspace/trilinos-folder/Trilinos_pullrequest_cuda_9.2@2/TFW_testing_single_configure_prototype/simple_testing.cmake:218 (message):
  Test failed with error -1

test submit error = 0
File upload submit error = 0
ride11 ride11 ride11 ride11 ride11 ride11 ride11
METIS_ROOT = /home/projects/ppc64le-pwr8/metis/5.0.1/gcc/7.2.0
NODE_OWNER_EMAIL = ceeadmin@sandia.gov
LSB_EXIT_PRE_ABORT = 99
TRILINOS_SOURCE_REPO = https://github.com/bartlettroscoe/Trilinos
PARMETIS_HOME = /home/projects/ppc64le-pwr8-nvidia/parmetis/4.0.3/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88
FC_VERSION = 7.2.0
LSB_JOBFILENAME = /ascldap/users/trilinos/.lsbatch/1591848334.4690
BLAS_ROOT = /home/projects/ppc64le-pwr8/netlib/3.8.0/gcc/7.2.0
GIT_CHECKOUT_DIR = Trilinos
LSB_AFFINITY_HOSTFILE = /ascldap/users/trilinos/.lsbatch/1591848334.4690.hostAffinityFile
PARMETIS_ROOT = /home/projects/ppc64le-pwr8-nvidia/parmetis/4.0.3/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88
LSF_ENVDIR = /opt/lsf/conf
MPI_VENDOR = openmpi
PYTHON = /home/projects/ppc64le/python/2.7.12/bin/python
CXX_VENDOR = gcc
HDF5_ROOT = /home/projects/ppc64le-pwr8-nvidia/hdf5/1.8.20/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88
HOSTTYPE = LINUXPPC64LE
SSH_CLIENT = 205.137.81.17 44298 22
JENKINS_URL = https://ascic-jenkins.sandia.gov/
LOGNAME = trilinos
LSF_LIM_API_NTRIES = 1
PATH = /ascldap/users/rabartl/install/white-ride/cmake-3.11.2/bin:/ascldap/users/rabartl/install/white-ride/ninja-1.8.2/bin:/home/projects/ppc64le/valgrind/3.12.0/bin:/home/projects/ppc64le/cmake/3.9.6/bin:/home/projects/ppc64le-pwr8-nvidia/parmetis/4.0.3/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88/bin:/home/projects/ppc64le-pwr8/metis/5.0.1/gcc/7.2.0/bin:/home/projects/ppc64le-pwr8-nvidia/netcdf/4.6.1/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88/bin:/home/projects/ppc64le-pwr8-nvidia/hdf5/1.8.20/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88/bin:/home/projects/ppc64le-pwr8-nvidia/pnetcdf-exo/1.9.0/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88/bin:/home/projects/ppc64le-pwr8-nvidia/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88/bin:/home/projects/ppc64le/java/ibm/sdk/8.0.0/bin:/home/projects/ppc64le/papi/5.5.1/bin:/home/projects/ppc64le/gcc/7.2.0/bin:/home/projects/ppc64le/binutils/2.30.0/bin:/home/projects/ppc64le-pwr8-nvidia/cuda/9.2.88/bin:/home/projects/ppc64le/python/2.7.12/bin:/home/projects/ppc64le/git/2.10.1/bin:/opt/lsf/10.1/linux3.10-glibc2.17-ppc64le/bin:/opt/lsf/10.1/linux3.10-glibc2.17-ppc64le/etc:/usr/local/bin:/usr/bin:/opt/ibutils/bin:/usr/local/sbin:/usr/sbin:/ascldap/users/trilinos/.local/bin:/ascldap/users/trilinos/bin
LSB_QUEUE = rhel7F
LSF_JOB_TIMESTAMP_VALUE = 1591848334
LSB_EXEC_HOSTTYPE = LINUXPPC64LE
GIT_PREVIOUS_SUCCESSFUL_COMMIT = 8ee2d2bd329d823ef58051c97a5873dce78b40a2
LSB_DJOB_HOSTFILE = /ascldap/users/trilinos/.lsbatch/1591848334.4690.hostfile
no_proxy = localhost,localnets,127.0.0.1,169.254.0.0/16,forge.sandia.gov
LSF_LIBDIR = /opt/lsf/10.1/linux3.10-glibc2.17-ppc64le/lib
CGNS_VERSION = 20180521
LSB_SUB_USER = trilinos
NODE_LABELS = ride-trilinos trilinos-ride
GIT_BRANCH_2 = origin/pull_request_changes
GIT_CHECKOUT_DIR_1 = TFW_single_configure_support_scripts
GIT_CHECKOUT_DIR_2 = TFW_testing_single_configure_prototype
JOB_OWNER_EMAIL = HRSwant@sandia.gov
PULLREQUEST_CDASH_TRACK = Pull Request
BUILD_ID = 4567
SBD_KRB5CCNAME_VAL =
LSB_RES_GET_FANOUT_INFO = Y
RUN_DISPLAY_URL = https://ascic-jenkins.sandia.gov/job/trilinos-folder/job/Trilinos_pullrequest_cuda_9.2/4567/display/redirect
JOB_COOWNERS_EMAILS = HRSwant@sandia.gov,trilinos@sandia.gov
LSB_BATCH_JID = 4690
MPI_HOME = /home/projects/ppc64le-pwr8-nvidia/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88
SUPERLU_HOME = /home/projects/ppc64le-pwr8/superlu/4.3.0/gcc/7.2.0
F77_VENDOR = gcc
KRB5CCNAME = FILE:/tmp/krb5cc_91724_bqNHm8maFh
BINUTILS_VERSION = 2.30.0
GIT_BRANCH = origin/develop
CMAKE_ROOT = /home/projects/ppc64le/cmake/3.9.6
BOOST_ROOT = /home/projects/ppc64le-pwr8/boost/1.65.1/gcc/7.2.0
VALGRIND_ROOT = /home/projects/ppc64le/valgrind/3.12.0
MPIF77 = /home/projects/ppc64le-pwr8-nvidia/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88/bin/mpif77
PARMETIS_VERSION = 4.0.3
LSB_JOBNAME = trilinos-folder/Trilinos_pullrequest_cuda_9.2
LOADEDMODULES = git/2.10.1:python/2.7.12:cuda/9.2.88:binutils/2.30.0:gcc/7.2.0:papi/5.5.1:java/ibm/sdk/8.0.0:openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88:pnetcdf-exo/1.9.0/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88:zlib/1.2.8:hdf5/1.8.20/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88:netcdf/4.6.1/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88:cgns/20180521/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88:netlib/3.8.0/gcc/7.2.0:superlu/4.3.0/gcc/7.2.0:boost/1.65.1/gcc/7.2.0:metis/5.0.1/gcc/7.2.0:parmetis/4.0.3/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88:cmake/3.9.6:valgrind/3.12.0:devpack/20180521/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88
WORKSPACE_TMP = /home/trilinos/jenkins/ride/workspace/trilinos-folder/Trilinos_pullrequest_cuda_9.2@2@tmp
GIT_BRANCH_1 = origin/master
CUDA_MANAGED_FORCE_DEVICE_ALLOC = 1
HISTCONTROL = ignoredups
PWD = /home/trilinos/jenkins/ride/workspace/trilinos-folder/Trilinos_pullrequest_cuda_9.2@2
LS_EXECCWD = /home/trilinos/jenkins/ride/workspace/trilinos-folder/Trilinos_pullrequest_cuda_9.2@2
JENKINS_SERVER_COOKIE = 248910a9cd8de38c
BUILD_DISPLAY_NAME = #4567
CXX_VERSION = 7.2.0
PYTHON_ROOT = /home/projects/ppc64le/python/2.7.12
OMPI_CXX = /home/trilinos/jenkins/ride/workspace/trilinos-folder/Trilinos_pullrequest_cuda_9.2@2/Trilinos/packages/kokkos/bin/nvcc_wrapper
SUPERLU_VERSION = 4.3.0
PULLREQUESTNUM = 7508
BINARY_TYPE_HPC =

==========================================================================================
None
PULLREQUEST_CDASH_TRACK is set. Setting CDASH_TRACK=Pull Request
Enabled packages:
-- Setting Trilinos_ENABLE_ALL_PACKAGES = ON
-- Setting Trilinos_ENABLE_TrilinosATDMConfigTests = ON
-- Setting Trilinos_ENABLE_TrilinosBuildStats = ON
-- Setting Trilinos_ENABLE_TrilinosFrameworkTests = ON

Set CWD = /home/trilinos/jenkins/ride/workspace/trilinos-folder/Trilinos_pullrequest_cuda_9.2@2/TFW_testing_single_configure_prototype
Traceback (most recent call last):
File "/home/trilinos/jenkins/ride/workspace/trilinos-folder/Trilinos_pullrequest_cuda_9.2@2/Trilinos/cmake/std/PullRequestLinuxDriverTest.py", line 701, in
returnValue = run()
File "/home/trilinos/jenkins/ride/workspace/trilinos-folder/Trilinos_pullrequest_cuda_9.2@2/Trilinos/cmake/std/PullRequestLinuxDriverTest.py", line 694, in run
'-Dsubprojects_file=../package_subproject_list.cmake'])
File "/home/projects/ppc64le/python/2.7.12/lib/python2.7/subprocess.py", line 541, in check_call
raise CalledProcessError(retcode, cmd)
subprocess.CalledProcessError: Command '['ctest', '-S', 'simple_testing.cmake', '-Dbuild_name=PR-7508-test-Trilinos_pullrequest_cuda_9.2-4567', '-Dskip_by_parts_submit=OFF', '-Dskip_update_step=ON', '-Ddashboard_model=Experimental', '-Ddashboard_track=Pull Request', '-DPARALLEL_LEVEL=64', '-DTEST_PARALLEL_LEVEL=8', '-Dbuild_dir=/home/trilinos/jenkins/ride/workspace/trilinos-folder/Trilinos_pullrequest_cuda_9.2@2/pull_request_test', '-Dconfigure_script=/home/trilinos/jenkins/ride/workspace/trilinos-folder/Trilinos_pullrequest_cuda_9.2@2/Trilinos/cmake/std/PullRequestLinuxCuda9.2TestingSettings.cmake', '-Dpackage_enables=../packageEnables.cmake', '-Dsubprojects_file=../package_subproject_list.cmake']' returned non-zero exit status 255
Build step 'Execute shell' marked build as failure
Archiving artifacts
Finished: FAILURE

Console Output (last 100 lines) : Trilinos_pullrequest_clang_9.0.0 # 942 (click to expand)

CHANGED_PACKAGES_ST_LIST='ALL_PACKAGES,TrilinosATDMConfigTests,TrilinosBuildStats,TrilinosFrameworkTests'

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-7508-test-Trilinos_pullrequest_clang_9.0.0-942
Cur dir = /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_clang_9.0.0@2/TFW_testing_single_configure_prototype
Source dir = /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_clang_9.0.0@2/Trilinos
Binary dir = /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_clang_9.0.0@2/pull_request_test
Parallel level = 10
Testing Parallel level = 10
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 = 59
Dashboard model = Experimental
Dashboard track = Pull Request
Running configuration:
/projects/sems/install/rhel6-x86_64/sems/utility/cmake/3.12.2/bin/cmake
-C "/scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_clang_9.0.0@2/Trilinos/cmake/std/PullRequestLinuxClang9.0.0TestingSettings.cmake"
-C "/scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_clang_9.0.0@2/packageEnables.cmake"
-DTrilinos_ENABLE_TESTS:BOOL=ON
-DTrilinos_PARALLEL_LINK_JOBS_LIMIT:STRING=2
-G "Ninja"
/scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_clang_9.0.0@2/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=ascic141&field2=buildname&compare2=61&value2=PR-7508-test-Trilinos_pullrequest_clang_9.0.0-942&field3=buildstamp&compare3=61&value3=20200611-0405-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-7508-test-Trilinos_pullrequest_clang_9.0.0-942&field2=buildstamp&compare2=61&value2=20200611-0405-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-7508-test-Trilinos_pullrequest_clang_9.0.0-942&field2=buildstamp&compare2=61&value2=20200611-0405-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 of output: 437K
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: 250K
.................................................. Size: 299K
.................................................. Size: 349K
.................................................. Size: 399K
.... Size of output: 404K
Build succeeded.
build submit error = 0
Starting testing step.
Tests succeeded.
test submit error = 0
File upload submit error = 0
STACK = 3.2.10
JOB_COOWNERS_EMAILS = HRSwant@sandia.gov,trilinos@sandia.gov
SEMS_PARMETIS_LOCAL_COMPILER_VERSION = 4.4.7
SEMS_PARMETIS_LOCAL_PYTHON_VERSION = 2.6.6
SEMS_NETCDF_LIBRARY_PATH = /projects/sems/install/rhel6-x86_64/sems/tpl/netcdf/4.7.3/clang/9.0.0/openmpi/1.10.1/parallel/lib
GIT_URL = https://github.com/trilinos/Trilinos
SEMS_BOOST_LIBRARY_PATH = /projects/sems/install/rhel6-x86_64/sems/tpl/boost/1.63.0/clang/9.0.0/base/lib
SEMS_GCC_LOCAL_COMPILER_VERSION = 4.4.7
SNLSYSTEM = cee
MPIF77 = mpif77
SEMS_HDF5_ROOT = /projects/sems/install/rhel6-x86_64/sems/tpl/hdf5/1.10.6/clang/9.0.0/openmpi/1.10.1/parallel
SEMS_SCOTCH_INCLUDE_PATH = /projects/sems/install/rhel6-x86_64/sems/tpl/scotch/6.0.3/clang/9.0.0/openmpi/1.10.1/nopthread_64bit_parallel/include
LOADEDMODULES = sems-env:sems-git/2.10.1:sems-python/2.7.9:sems-gcc/5.3.0:sems-clang/9.0.0:sems-openmpi/1.10.1:sems-boost/1.63.0/base:sems-zlib/1.2.8/base:sems-hdf5/1.10.6/parallel:sems-netcdf/4.7.3/parallel:sems-parmetis/4.0.3/parallel:sems-scotch/6.0.3/nopthread_64bit_parallel:sems-superlu/4.3/base:sems-cmake/3.12.2:atdm-env:atdm-ninja_fortran/1.7.2
WORKSPACE_TMP = /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_clang_9.0.0@2@tmp
SEMS_CMAKE_VERSION = 3.12.2
HISTCONTROL = ignoredups
SERIAL_CXX = clang++
PWD = /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_clang_9.0.0@2
JENKINS_SERVER_COOKIE = 248910a9cd8de38c
BUILD_DISPLAY_NAME = #942
PULLREQUESTNUM = 7508
SEMS_SUPERLU_INCLUDE_PATH = /projects/sems/install/rhel6-x86_64/sems/tpl/superlu/4.3/clang/9.0.0/base/include

==========================================================================================
None
PULLREQUEST_CDASH_TRACK is set. Setting CDASH_TRACK=Pull Request
Enabled packages:
-- Setting Trilinos_ENABLE_ALL_PACKAGES = ON
-- Setting Trilinos_ENABLE_TrilinosATDMConfigTests = ON
-- Setting Trilinos_ENABLE_TrilinosBuildStats = ON
-- Setting Trilinos_ENABLE_TrilinosFrameworkTests = ON

Set CWD = /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_clang_9.0.0@2/TFW_testing_single_configure_prototype
Archiving artifacts
Finished: SUCCESS

Console Output (last 100 lines) : Trilinos_pullrequest_python_2 # 2680 (click to expand)

HUDSON_HOME = /var/lib/jenkins
TRILINOS_TARGET_BRANCH = develop
https_proxy = http://wwwproxy.sandia.gov:80
F90 = gfortran
SERIAL_F90 = gfortran
SEMS_CMAKE_ROOT = /projects/sems/install/rhel7-x86_64/sems/utility/cmake/3.10.3
JOB_COOWNERS = prwolfe,trilinos
SERIAL_FC = gfortran
BUILD_CAUSE_MANUALTRIGGER = true
HUDSON_COOKIE = 6558a954-516b-4134-8e48-e06e855b11e6
ftp_proxy = http://wwwproxy.sandia.gov:80/
QT_GRAPHICSSYSTEM_CHECKED = 1
SEMS_NINJA_FORTRAN_LOCAL_COMPILER_VERSION = 4.8.5
F77 = gfortran
TRILINOS_TARGET_REPO = https://github.com/trilinos/Trilinos
NODE_OWNER_EMAIL = ceeadmin@sandia.gov
SEMS_GIT_LOCAL_PYTHON_VERSION = 2.7.5
NODE_NAME = tr-test-4-trilinos
GIT_CHECKOUT_DIR = Trilinos
SEMS_NINJA_FORTRAN_VERSION = 1.7.2
SEMS_COMPILER_VERSION = 7.2.0
SSH_CLIENT = 205.137.81.17 57002 22
JENKINS_URL = https://ascic-jenkins.sandia.gov/
LOGNAME = trilinos
NODE_LABELS = tr-test-4-trilinos trilinos-32 trilinos-any trilinos-cloud-32 trilinos_cloud_32_node_4
PATH = /projects/sierra/linux_rh7/install/Python/2.7.15/bin:/projects/sierra/linux_rh7/install/Python/extrasbin:/projects/sems/install/rhel7-x86_64/atdm/utility/ninja_fortran/1.7.2/sbin:/projects/sems/install/rhel7-x86_64/atdm/utility/ninja_fortran/1.7.2/bin:/projects/sems/install/rhel7-x86_64/sems/utility/cmake/3.10.3/sbin:/projects/sems/install/rhel7-x86_64/sems/utility/cmake/3.10.3/bin:/projects/sems/install/rhel7-x86_64/sems/compiler/gcc/7.2.0/base/bin:/projects/sems/install/rhel7-x86_64/sems/utility/git/2.10.1/sbin:/projects/sems/install/rhel7-x86_64/sems/utility/git/2.10.1/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/ascldap/users/trilinos/.local/bin:/ascldap/users/trilinos/bin
SEMS_NINJA_FORTRAN_LOCAL_PYTHON_VERSION = 2.7.5
GIT_PREVIOUS_SUCCESSFUL_COMMIT = 8ee2d2bd329d823ef58051c97a5873dce78b40a2
no_proxy = localhost,localnets,127.0.0.1,169.254.0.0/16,forge.sandia.gov
CC = gcc
SEMS_CMAKE_LOCAL_COMPILER_VERSION = 4.8.5
JOB_OWNER_EMAIL = prwolfe@sandia.gov
PULLREQUEST_CDASH_TRACK = Pull Request
BUILD_ID = 2680
JOB_COOWNERS_EMAILS = prwolfe@sandia.gov,trilinos@sandia.gov
GIT_URL = https://github.com/trilinos/Trilinos
SEMS_GCC_LOCAL_COMPILER_VERSION = 4.8.5
LOADEDMODULES = sems-env:sems-git/2.10.1:sems-gcc/7.2.0:sems-cmake/3.10.3:atdm-env:atdm-ninja_fortran/1.Currently Loaded Modulefiles:
  1) sems-env                   4) sems-cmake/3.10.3
  2) sems-git/2.10.1            5) atdm-env
  3) sems-gcc/7.2.0             6) atdm-ninja_fortran/1.7.2
Build name               = PR-7508-test-Trilinos_pullrequest_python_2-2680
Cur dir                  = /scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_python_2/TFW_testing_single_configure_prototype
Source dir               = /scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_python_2/Trilinos
Binary dir               = /scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_python_2/pull_request_test
Parallel level           = 20
Testing Parallel level   = 20
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         = 1
Dashboard model          = Experimental
Dashboard track          = Pull Request
Running configuration:
/projects/sems/install/rhel7-x86_64/sems/utility/cmake/3.10.3/bin/cmake 
  -C "/scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_python_2/Trilinos/cmake/std/PullRequestLinuxPython2.cmake"
  -C "/scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_python_2/packageEnables.cmake"
  -DTrilinos_ENABLE_TESTS:BOOL=ON
  -DTrilinos_PARALLEL_LINK_JOBS_LIMIT:STRING=2
  -G "Ninja"
  /scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_python_2/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=tr-test-4.novalocal&field2=buildname&compare2=61&value2=PR-7508-test-Trilinos_pullrequest_python_2-2680&field3=buildstamp&compare3=61&value3=20200611-0406-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-7508-test-Trilinos_pullrequest_python_2-2680&field2=buildstamp&compare2=61&value2=20200611-0406-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-7508-test-Trilinos_pullrequest_python_2-2680&field2=buildstamp&compare2=61&value2=20200611-0406-Pull Request
Starting configure step.
   Each . represents 1024 bytes of output
    ....................... Size of output: 22K
configure submit error = 0
Configure suceeded.
Starting build step.
   Each symbol represents 1024 bytes of output.
    . Size of output: 0K
Build succeeded.
build submit error = 0
Starting testing step.
Tests succeeded.
test submit error = 0
File upload submit error = 0
7.2
WORKSPACE_TMP = /scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_python_2@tmp
SEMS_CMAKE_VERSION = 3.10.3
HISTCONTROL = ignoredups
SERIAL_CXX = g++
PWD = /scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_python_2
JENKINS_SERVER_COOKIE = 248910a9cd8de38c
BUILD_DISPLAY_NAME = #2680
PULLREQUESTNUM = 7508

==========================================================================================
None
PULLREQUEST_CDASH_TRACK is set. Setting CDASH_TRACK=Pull Request
Enabled packages:
-- Setting Trilinos_ENABLE_TrilinosFrameworkTests = ON

Set CWD = /scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_python_2/TFW_testing_single_configure_prototype
Archiving artifacts
Finished: SUCCESS

Console Output (last 100 lines) : Trilinos_pullrequest_python_3 # 2689 (click to expand)

HUDSON_HOME = /var/lib/jenkins
TRILINOS_TARGET_BRANCH = develop
https_proxy = http://wwwproxy.sandia.gov:80
F90 = gfortran
SERIAL_F90 = gfortran
SEMS_CMAKE_ROOT = /projects/sems/install/rhel7-x86_64/sems/utility/cmake/3.10.3
JOB_COOWNERS = prwolfe,trilinos
SERIAL_FC = gfortran
BUILD_CAUSE_MANUALTRIGGER = true
HUDSON_COOKIE = 0aad3a1e-a7f6-4d4a-9d5f-1a6165752a7b
ftp_proxy = http://wwwproxy.sandia.gov:80/
QT_GRAPHICSSYSTEM_CHECKED = 1
SEMS_NINJA_FORTRAN_LOCAL_COMPILER_VERSION = 4.8.5
F77 = gfortran
TRILINOS_TARGET_REPO = https://github.com/trilinos/Trilinos
NODE_OWNER_EMAIL = ceeadmin@sandia.gov
SEMS_GIT_LOCAL_PYTHON_VERSION = 2.7.5
NODE_NAME = tr-test-4-trilinos
GIT_CHECKOUT_DIR = Trilinos
SEMS_NINJA_FORTRAN_VERSION = 1.7.2
SEMS_COMPILER_VERSION = 7.2.0
SSH_CLIENT = 205.137.81.17 57002 22
JENKINS_URL = https://ascic-jenkins.sandia.gov/
LOGNAME = trilinos
NODE_LABELS = tr-test-4-trilinos trilinos-32 trilinos-any trilinos-cloud-32 trilinos_cloud_32_node_4
PATH = /projects/sierra/linux_rh7/install/Python/3.6.3/bin:/projects/sierra/linux_rh7/install/Python/extrasbin:/projects/sems/install/rhel7-x86_64/atdm/utility/ninja_fortran/1.7.2/sbin:/projects/sems/install/rhel7-x86_64/atdm/utility/ninja_fortran/1.7.2/bin:/projects/sems/install/rhel7-x86_64/sems/utility/cmake/3.10.3/sbin:/projects/sems/install/rhel7-x86_64/sems/utility/cmake/3.10.3/bin:/projects/sems/install/rhel7-x86_64/sems/compiler/gcc/7.2.0/base/bin:/projects/sems/install/rhel7-x86_64/sems/utility/git/2.10.1/sbin:/projects/sems/install/rhel7-x86_64/sems/utility/git/2.10.1/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/ascldap/users/trilinos/.local/bin:/ascldap/users/trilinos/bin
SEMS_NINJA_FORTRAN_LOCAL_PYTHON_VERSION = 2.7.5
GIT_PREVIOUS_SUCCESSFUL_COMMIT = 8ee2d2bd329d823ef58051c97a5873dce78b40a2
no_proxy = localhost,localnets,127.0.0.1,169.254.0.0/16,forge.sandia.gov
CC = gcc
SEMS_CMAKE_LOCAL_COMPILER_VERSION = 4.8.5
JOB_OWNER_EMAIL = prwolfe@sandia.gov
PULLREQUEST_CDASH_TRACK = Pull Request
BUILD_ID = 2689
JOB_COOWNERS_EMAILS = prwolfe@sandia.gov,trilinos@sandia.gov
GIT_URL = https://github.com/trilinos/Trilinos
SEMS_GCC_LOCAL_COMPILER_VERSION = 4.8.5
LOADEDMODULES = sems-env:sems-git/2.10.1:sems-gcc/7.2.0:sems-cmake/3.10.3:atdm-env:atdm-ninja_fortran/1.7.Currently Loaded Modulefiles:
  1) sems-env                   4) sems-cmake/3.10.3
  2) sems-git/2.10.1            5) atdm-env
  3) sems-gcc/7.2.0             6) atdm-ninja_fortran/1.7.2
Build name               = PR-7508-test-Trilinos_pullrequest_python_3-2689
Cur dir                  = /scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_python_3/TFW_testing_single_configure_prototype
Source dir               = /scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_python_3/Trilinos
Binary dir               = /scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_python_3/pull_request_test
Parallel level           = 20
Testing Parallel level   = 20
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         = 1
Dashboard model          = Experimental
Dashboard track          = Pull Request
Running configuration:
/projects/sems/install/rhel7-x86_64/sems/utility/cmake/3.10.3/bin/cmake 
  -C "/scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_python_3/Trilinos/cmake/std/PullRequestLinuxPython3.cmake"
  -C "/scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_python_3/packageEnables.cmake"
  -DTrilinos_ENABLE_TESTS:BOOL=ON
  -DTrilinos_PARALLEL_LINK_JOBS_LIMIT:STRING=2
  -G "Ninja"
  /scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_python_3/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=tr-test-4.novalocal&field2=buildname&compare2=61&value2=PR-7508-test-Trilinos_pullrequest_python_3-2689&field3=buildstamp&compare3=61&value3=20200611-0406-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-7508-test-Trilinos_pullrequest_python_3-2689&field2=buildstamp&compare2=61&value2=20200611-0406-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-7508-test-Trilinos_pullrequest_python_3-2689&field2=buildstamp&compare2=61&value2=20200611-0406-Pull Request
Starting configure step.
   Each . represents 1024 bytes of output
    ....................... Size of output: 22K
configure submit error = 0
Configure suceeded.
Starting build step.
   Each symbol represents 1024 bytes of output.
    . Size of output: 0K
Build succeeded.
build submit error = 0
Starting testing step.
Tests succeeded.
test submit error = 0
File upload submit error = 0
2
WORKSPACE_TMP = /scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_python_3@tmp
SEMS_CMAKE_VERSION = 3.10.3
HISTCONTROL = ignoredups
SERIAL_CXX = g++
PWD = /scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_python_3
JENKINS_SERVER_COOKIE = 248910a9cd8de38c
BUILD_DISPLAY_NAME = #2689
PULLREQUESTNUM = 7508

==========================================================================================
None
PULLREQUEST_CDASH_TRACK is set. Setting CDASH_TRACK=Pull Request
Enabled packages:
-- Setting Trilinos_ENABLE_TrilinosFrameworkTests = ON

Set CWD = /scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_python_3/TFW_testing_single_configure_prototype
Archiving artifacts
Finished: SUCCESS


CDash Test Results for PR# 7508.


Wiki: How to Reproduce PR Testing Builds and Errors.

@bartlettroscoe bartlettroscoe added the AT: RETEST Causes the PR autotester to run a new round of PR tests on the next iteration label Jun 11, 2020
@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_4.8.4

  • Build Num: 7006
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
COMPILER_MODULE sems-gcc/4.8.4
JENKINS_BUILD_TYPE Release
JENKINS_COMM_TYPE MPI
JENKINS_DO_COMPLEX OFF
JENKINS_JOB_TYPE Experimental
MPI_MODULE sems-openmpi/1.8.7
PULLREQUESTNUM 7508
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH 7376-build-stats
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 03ad108
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 7ba2010

Build Information

Test Name: Trilinos_pullrequest_intel_17.0.1

  • Build Num: 6816
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 7508
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH 7376-build-stats
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 03ad108
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 7ba2010

Build Information

Test Name: Trilinos_pullrequest_gcc_4.9.3_SERIAL

  • Build Num: 5241
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 7508
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH 7376-build-stats
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 03ad108
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 7ba2010

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0

  • Build Num: 5088
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 7508
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH 7376-build-stats
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 03ad108
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 7ba2010

Build Information

Test Name: Trilinos_pullrequest_gcc_8.3.0

  • Build Num: 1277
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 7508
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH 7376-build-stats
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 03ad108
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 7ba2010

Build Information

Test Name: Trilinos_pullrequest_cuda_9.2

  • Build Num: 4572
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 7508
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH 7376-build-stats
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 03ad108
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 7ba2010

Build Information

Test Name: Trilinos_pullrequest_clang_9.0.0

  • Build Num: 947
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 7508
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH 7376-build-stats
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 03ad108
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 7ba2010

Build Information

Test Name: Trilinos_pullrequest_python_2

  • Build Num: 2683
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 7508
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH 7376-build-stats
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 03ad108
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 7ba2010

Build Information

Test Name: Trilinos_pullrequest_python_3

  • Build Num: 2692
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 7508
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH 7376-build-stats
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 03ad108
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 7ba2010

Using Repos:

Repo: TRILINOS (bartlettroscoe/Trilinos)
  • Branch: 7376-build-stats
  • SHA: 03ad108
  • Mode: TEST_REPO

Pull Request Author: bartlettroscoe

@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_4.8.4

  • Build Num: 7006
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
COMPILER_MODULE sems-gcc/4.8.4
JENKINS_BUILD_TYPE Release
JENKINS_COMM_TYPE MPI
JENKINS_DO_COMPLEX OFF
JENKINS_JOB_TYPE Experimental
MPI_MODULE sems-openmpi/1.8.7
PULLREQUESTNUM 7508
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH 7376-build-stats
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 03ad108
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 7ba2010

Build Information

Test Name: Trilinos_pullrequest_intel_17.0.1

  • Build Num: 6816
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 7508
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH 7376-build-stats
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 03ad108
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 7ba2010

Build Information

Test Name: Trilinos_pullrequest_gcc_4.9.3_SERIAL

  • Build Num: 5241
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 7508
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH 7376-build-stats
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 03ad108
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 7ba2010

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0

  • Build Num: 5088
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 7508
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH 7376-build-stats
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 03ad108
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 7ba2010

Build Information

Test Name: Trilinos_pullrequest_gcc_8.3.0

  • Build Num: 1277
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 7508
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH 7376-build-stats
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 03ad108
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 7ba2010

Build Information

Test Name: Trilinos_pullrequest_cuda_9.2

  • Build Num: 4572
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 7508
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH 7376-build-stats
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 03ad108
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 7ba2010

Build Information

Test Name: Trilinos_pullrequest_clang_9.0.0

  • Build Num: 947
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 7508
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH 7376-build-stats
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 03ad108
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 7ba2010

Build Information

Test Name: Trilinos_pullrequest_python_2

  • Build Num: 2683
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 7508
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH 7376-build-stats
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 03ad108
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 7ba2010

Build Information

Test Name: Trilinos_pullrequest_python_3

  • Build Num: 2692
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 7508
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH 7376-build-stats
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 03ad108
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 7ba2010
Console Output (last 100 lines) : Trilinos_pullrequest_gcc_4.8.4 # 7006 (click to expand)

Wrote the file 'TrilinosPackageDependencies.xml'

B) Get the set of changed files

Current directory: /scratch/trilinos/jenkins/tr-test-7/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/Trilinos

git diff --name-only origin/develop..HEAD > /scratch/trilinos/jenkins/tr-test-7/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/changed-files.txt

Wrote file 'changed-files.txt'

Current directory: /scratch/trilinos/jenkins/tr-test-7/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4

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

CHANGED_PACKAGES_FULL_LIST='ALL_PACKAGES,TrilinosATDMConfigTests,TrilinosBuildStats,TrilinosFrameworkTests'

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

CHANGED_PACKAGES_ST_LIST='ALL_PACKAGES,TrilinosATDMConfigTests,TrilinosBuildStats,TrilinosFrameworkTests'

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-7508-test-Trilinos_pullrequest_gcc_4.8.4-7006
Cur dir = /scratch/trilinos/jenkins/tr-test-7/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/TFW_testing_single_configure_prototype
Source dir = /scratch/trilinos/jenkins/tr-test-7/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/Trilinos
Binary dir = /scratch/trilinos/jenkins/tr-test-7/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/pull_request_test
Parallel level = 20
Testing Parallel level = 10
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 = 59
Dashboard model = Experimental
Dashboard track = Pull Request
Running configuration:
/projects/sems/install/rhel7-x86_64/sems/utility/cmake/3.10.3/bin/cmake
-C "/scratch/trilinos/jenkins/tr-test-7/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/Trilinos/cmake/std/PullRequestLinuxGCC4.8.4TestingSettings.cmake"
-C "/scratch/trilinos/jenkins/tr-test-7/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/packageEnables.cmake"
-DTrilinos_ENABLE_TESTS:BOOL=ON
-DTrilinos_PARALLEL_LINK_JOBS_LIMIT:STRING=2
-G "Ninja"
/scratch/trilinos/jenkins/tr-test-7/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/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=tr-test-7.novalocal&field2=buildname&compare2=61&value2=PR-7508-test-Trilinos_pullrequest_gcc_4.8.4-7006&field3=buildstamp&compare3=61&value3=20200611-1404-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-7508-test-Trilinos_pullrequest_gcc_4.8.4-7006&field2=buildstamp&compare2=61&value2=20200611-1404-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-7508-test-Trilinos_pullrequest_gcc_4.8.4-7006&field2=buildstamp&compare2=61&value2=20200611-1404-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: 454K
configure submit error = 0
Configure suceeded.
Starting build step.
Each symbol represents 1024 bytes of output.
.................................................. Size: 49K
.................................................. Size: 99K
....... Size of output: 107K
Build succeeded.
build submit error = 0
Starting testing step.
Tests succeeded.
test submit error = 0
File upload submit error = 0
uest_gcc_4.8.4@tmp
SEMS_CMAKE_VERSION = 3.10.3
HISTCONTROL = ignoredups
SERIAL_CXX = g++
PWD = /scratch/trilinos/jenkins/tr-test-7/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4
JENKINS_SERVER_COOKIE = 248910a9cd8de38c
BUILD_DISPLAY_NAME = #7006
PULLREQUESTNUM = 7508
SEMS_SUPERLU_INCLUDE_PATH = /projects/sems/install/rhel7-x86_64/sems/tpl/superlu/4.3/gcc/4.8.4/base/include

==========================================================================================
None
PULLREQUEST_CDASH_TRACK is set. Setting CDASH_TRACK=Pull Request
Enabled packages:
-- Setting Trilinos_ENABLE_ALL_PACKAGES = ON
-- Setting Trilinos_ENABLE_TrilinosATDMConfigTests = ON
-- Setting Trilinos_ENABLE_TrilinosBuildStats = ON
-- Setting Trilinos_ENABLE_TrilinosFrameworkTests = ON

Set CWD = /scratch/trilinos/jenkins/tr-test-7/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/TFW_testing_single_configure_prototype
Archiving artifacts
Finished: SUCCESS

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

CHANGED_PACKAGES_ST_LIST='ALL_PACKAGES,TrilinosATDMConfigTests,TrilinosBuildStats,TrilinosFrameworkTests'

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-7508-test-Trilinos_pullrequest_intel_17.0.1-6816
Cur dir = /scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/TFW_testing_single_configure_prototype
Source dir = /scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/Trilinos
Binary dir = /scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/pull_request_test
Parallel level = 20
Testing Parallel level = 10
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 = 59
Dashboard model = Experimental
Dashboard track = Pull Request
Running configuration:
/projects/sems/install/rhel6-x86_64/sems/utility/cmake/3.10.3/bin/cmake
-C "/scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/Trilinos/cmake/std/PullRequestLinuxIntelTestingSettings.cmake"
-C "/scratch/trilinos/jenkins/ascic158/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/ascic158/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=ascic158&field2=buildname&compare2=61&value2=PR-7508-test-Trilinos_pullrequest_intel_17.0.1-6816&field3=buildstamp&compare3=61&value3=20200611-1404-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-7508-test-Trilinos_pullrequest_intel_17.0.1-6816&field2=buildstamp&compare2=61&value2=20200611-1404-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-7508-test-Trilinos_pullrequest_intel_17.0.1-6816&field2=buildstamp&compare2=61&value2=20200611-1404-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: 456K
configure submit error = 0
Configure suceeded.
Starting build step.
Each symbol represents 1024 bytes of output.
.................................................. Size: 49K
.................................................. Size: 99K
....................... Size of output: 122K
Build succeeded.
build submit error = 0
Starting testing step.
Tests succeeded.
test submit error = 0
File upload submit error = 0
E_PATH = /projects/sems/install/rhel6-x86_64/sems/tpl/netcdf/4.7.3/intel/17.0.1/mpich/3.2/parallel/include
MKL_LIB = /projects/sems/install/rhel6-x86_64/sems/compiler/intel/17.0.1/base/mkl/lib/intel64
MODULE_VERSION_STACK = 3.2.10
SEMS_MPICH_ROOT = /projects/sems/install/rhel6-x86_64/sems/compiler/intel/17.0.1/mpich/3.2
JOB_COOWNERS_EMAILS = prwolfe@sandia.gov,trilinos@sandia.gov
SEMS_PARMETIS_LOCAL_COMPILER_VERSION = 4.4.7
SEMS_PARMETIS_LOCAL_PYTHON_VERSION = 2.6.6
SEMS_NETCDF_LIBRARY_PATH = /projects/sems/install/rhel6-x86_64/sems/tpl/netcdf/4.7.3/intel/17.0.1/mpich/3.2/parallel/lib
GIT_URL = https://github.com/trilinos/Trilinos
SEMS_INTEL_LOCAL_PYTHON_VERSION = 2.6.6
SEMS_BOOST_LIBRARY_PATH = /projects/sems/install/rhel6-x86_64/sems/tpl/boost/1.63.0/intel/17.0.1/base/lib
SEMS_GCC_LOCAL_COMPILER_VERSION = 4.4.7
SNLSYSTEM = cee
MPIF77 = mpif77
SEMS_HDF5_ROOT = /projects/sems/install/rhel6-x86_64/sems/tpl/hdf5/1.10.6/intel/17.0.1/mpich/3.2/parallel
SEMS_SCOTCH_INCLUDE_PATH = /projects/sems/install/rhel6-x86_64/sems/tpl/scotch/6.0.3/intel/17.0.1/mpich/3.2/nopthread_64bit_parallel/include
LOADEDMODULES = sems-env:sems-git/2.10.1:sems-python/2.7.9:sems-gcc/4.9.3:sems-intel/17.0.1:sems-mpich/3.2:sems-boost/1.63.0/base:sems-zlib/1.2.8/base:sems-hdf5/1.10.6/parallel:sems-netcdf/4.7.3/parallel:sems-parmetis/4.0.3/parallel:sems-scotch/6.0.3/nopthread_64bit_parallel:sems-superlu/4.3/base:sems-cmake/3.10.3:atdm-env:atdm-ninja_fortran/1.7.2
WORKSPACE_TMP = /scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1@tmp
SEMS_CMAKE_VERSION = 3.10.3
HISTCONTROL = ignoredups
SERIAL_CXX = icpc
PWD = /scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1
JENKINS_SERVER_COOKIE = 248910a9cd8de38c
BUILD_DISPLAY_NAME = #6816
PULLREQUESTNUM = 7508
SEMS_SUPERLU_INCLUDE_PATH = /projects/sems/install/rhel6-x86_64/sems/tpl/superlu/4.3/intel/17.0.1/base/include

==========================================================================================
None
PULLREQUEST_CDASH_TRACK is set. Setting CDASH_TRACK=Pull Request
Enabled packages:
-- Setting Trilinos_ENABLE_ALL_PACKAGES = ON
-- Setting Trilinos_ENABLE_TrilinosATDMConfigTests = ON
-- Setting Trilinos_ENABLE_TrilinosBuildStats = ON
-- Setting Trilinos_ENABLE_TrilinosFrameworkTests = ON

Set CWD = /scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/TFW_testing_single_configure_prototype
Archiving artifacts
Finished: SUCCESS

Console Output (last 100 lines) : Trilinos_pullrequest_gcc_4.9.3_SERIAL # 5241 (click to expand)

Current directory: /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL

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

CHANGED_PACKAGES_FULL_LIST='ALL_PACKAGES,TrilinosATDMConfigTests,TrilinosBuildStats,TrilinosFrameworkTests'

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

CHANGED_PACKAGES_ST_LIST='ALL_PACKAGES,TrilinosATDMConfigTests,TrilinosBuildStats,TrilinosFrameworkTests'

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-7508-test-Trilinos_pullrequest_gcc_4.9.3_SERIAL-5241
Cur dir = /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/TFW_testing_single_configure_prototype
Source dir = /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/Trilinos
Binary dir = /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/pull_request_test
Parallel level = 20
Testing Parallel level = 10
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 = 59
Dashboard model = Experimental
Dashboard track = Pull Request
Running configuration:
/projects/sems/install/rhel7-x86_64/sems/utility/cmake/3.10.3/bin/cmake
-C "/scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/Trilinos/cmake/std/PullRequestLinuxGCC4.9.3TestingSettingsSERIAL.cmake"
-C "/scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/packageEnables.cmake"
-DTrilinos_ENABLE_TESTS:BOOL=ON
-DTrilinos_PARALLEL_LINK_JOBS_LIMIT:STRING=2
-G "Ninja"
/scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/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=ascic166&field2=buildname&compare2=61&value2=PR-7508-test-Trilinos_pullrequest_gcc_4.9.3_SERIAL-5241&field3=buildstamp&compare3=61&value3=20200611-1405-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-7508-test-Trilinos_pullrequest_gcc_4.9.3_SERIAL-5241&field2=buildstamp&compare2=61&value2=20200611-1405-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-7508-test-Trilinos_pullrequest_gcc_4.9.3_SERIAL-5241&field2=buildstamp&compare2=61&value2=20200611-1405-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 of output: 380K
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 of output: 228K
Build succeeded.
build submit error = 0
Starting testing step.
Tests succeeded.
test submit error = 0
File upload submit error = 0
TH = /projects/sems/install/rhel7-x86_64/sems/tpl/netcdf/4.7.3/gcc/4.9.3/base/include
MODULE_VERSION_STACK = 3.2.10
JOB_COOWNERS_EMAILS = wcmclen@sandia.gov,trilinos@sandia.gov
SEMS_NETCDF_LIBRARY_PATH = /projects/sems/install/rhel7-x86_64/sems/tpl/netcdf/4.7.3/gcc/4.9.3/base/lib
GIT_BRANCH = origin/develop
SEMS_BOOST_LIBRARY_PATH = /projects/sems/install/rhel7-x86_64/sems/tpl/boost/1.63.0/gcc/4.9.3/base/lib
SEMS_GCC_LOCAL_COMPILER_VERSION = 4.8.5
SNLSYSTEM = cee
SEMS_HDF5_ROOT = /projects/sems/install/rhel7-x86_64/sems/tpl/hdf5/1.10.6/gcc/4.9.3/base
LOADEDMODULES = sems-env:sems-git/2.10.1:sems-python/2.7.9:sems-gcc/4.9.3:sems-boost/1.63.0/base:sems-zlib/1.2.8/base:sems-hdf5/1.10.6/base:sems-netcdf/4.7.3/base:sems-metis/5.1.0/base:sems-superlu/4.3/base:sems-cmake/3.10.3:atdm-env:atdm-ninja_fortran/1.7.2
WORKSPACE_TMP = /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL@tmp
SEMS_CMAKE_VERSION = 3.10.3
HISTCONTROL = ignoredups
SERIAL_CXX = g++
PWD = /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL
JENKINS_SERVER_COOKIE = 248910a9cd8de38c
BUILD_DISPLAY_NAME = #5241
PULLREQUESTNUM = 7508
SEMS_SUPERLU_INCLUDE_PATH = /projects/sems/install/rhel7-x86_64/sems/tpl/superlu/4.3/gcc/4.9.3/base/include

==========================================================================================
None
PULLREQUEST_CDASH_TRACK is set. Setting CDASH_TRACK=Pull Request
Enabled packages:
-- Setting Trilinos_ENABLE_ALL_PACKAGES = ON
-- Setting Trilinos_ENABLE_TrilinosATDMConfigTests = ON
-- Setting Trilinos_ENABLE_TrilinosBuildStats = ON
-- Setting Trilinos_ENABLE_TrilinosFrameworkTests = ON

Set CWD = /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/TFW_testing_single_configure_prototype
Archiving artifacts
Finished: SUCCESS

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

git diff --name-only origin/develop..HEAD > /scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/changed-files.txt

Wrote file 'changed-files.txt'

Current directory: /scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0

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

CHANGED_PACKAGES_FULL_LIST='ALL_PACKAGES,TrilinosATDMConfigTests,TrilinosBuildStats,TrilinosFrameworkTests'

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

CHANGED_PACKAGES_ST_LIST='ALL_PACKAGES,TrilinosATDMConfigTests,TrilinosBuildStats,TrilinosFrameworkTests'

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-7508-test-Trilinos_pullrequest_gcc_7.2.0-5088
Cur dir = /scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/TFW_testing_single_configure_prototype
Source dir = /scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/Trilinos
Binary dir = /scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/pull_request_test
Parallel level = 13
Testing Parallel level = 10
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 = 59
Dashboard model = Experimental
Dashboard track = Pull Request
Running configuration:
/projects/sems/install/rhel6-x86_64/sems/utility/cmake/3.10.3/bin/cmake
-C "/scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/Trilinos/cmake/std/PullRequestLinuxGCC7.2.0TestingSettings.cmake"
-C "/scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/packageEnables.cmake"
-DTrilinos_ENABLE_TESTS:BOOL=ON
-DTrilinos_PARALLEL_LINK_JOBS_LIMIT:STRING=2
-G "Ninja"
/scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/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-7508-test-Trilinos_pullrequest_gcc_7.2.0-5088&field3=buildstamp&compare3=61&value3=20200611-1405-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-7508-test-Trilinos_pullrequest_gcc_7.2.0-5088&field2=buildstamp&compare2=61&value2=20200611-1405-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-7508-test-Trilinos_pullrequest_gcc_7.2.0-5088&field2=buildstamp&compare2=61&value2=20200611-1405-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 of output: 441K
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 of output: 265K
Build succeeded.
build submit error = 0
Starting testing step.
Tests succeeded.
test submit error = 0
File upload submit error = 0
/sems/tpl/hdf5/1.10.6/gcc/7.2.0/openmpi/1.10.1/parallel
SEMS_SCOTCH_INCLUDE_PATH = /projects/sems/install/rhel6-x86_64/sems/tpl/scotch/6.0.3/gcc/7.2.0/openmpi/1.10.1/nopthread_64bit_parallel/include
LOADEDMODULES = sems-env:sems-git/2.10.1:sems-python/2.7.9:sems-gcc/7.2.0:sems-openmpi/1.10.1:sems-boost/1.63.0/base:sems-zlib/1.2.8/base:sems-hdf5/1.10.6/parallel:sems-netcdf/4.7.3/parallel:sems-parmetis/4.0.3/parallel:sems-scotch/6.0.3/nopthread_64bit_parallel:sems-superlu/4.3/base:sems-cmake/3.10.3:atdm-env:atdm-ninja_fortran/1.7.2
WORKSPACE_TMP = /scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0@tmp
SEMS_CMAKE_VERSION = 3.10.3
HISTCONTROL = ignoredups
SERIAL_CXX = g++
PWD = /scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0
JENKINS_SERVER_COOKIE = 248910a9cd8de38c
BUILD_DISPLAY_NAME = #5088
PULLREQUESTNUM = 7508
SEMS_SUPERLU_INCLUDE_PATH = /projects/sems/install/rhel6-x86_64/sems/tpl/superlu/4.3/gcc/7.2.0/base/include

==========================================================================================
None
PULLREQUEST_CDASH_TRACK is set. Setting CDASH_TRACK=Pull Request
Enabled packages:
-- Setting Trilinos_ENABLE_ALL_PACKAGES = ON
-- Setting Trilinos_ENABLE_TrilinosATDMConfigTests = ON
-- Setting Trilinos_ENABLE_TrilinosBuildStats = ON
-- Setting Trilinos_ENABLE_TrilinosFrameworkTests = ON

Set CWD = /scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/TFW_testing_single_configure_prototype
Archiving artifacts
Finished: SUCCESS

Console Output (last 100 lines) : Trilinos_pullrequest_gcc_8.3.0 # 1277 (click to expand)

CHANGED_PACKAGES_FULL_LIST='ALL_PACKAGES,TrilinosATDMConfigTests,TrilinosBuildStats,TrilinosFrameworkTests'

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

CHANGED_PACKAGES_ST_LIST='ALL_PACKAGES,TrilinosATDMConfigTests,TrilinosBuildStats,TrilinosFrameworkTests'

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-7508-test-Trilinos_pullrequest_gcc_8.3.0-1277
Cur dir = /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/TFW_testing_single_configure_prototype
Source dir = /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/Trilinos
Binary dir = /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/pull_request_test
Parallel level = 20
Testing Parallel level = 10
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 = 59
Dashboard model = Experimental
Dashboard track = Pull Request
Running configuration:
/projects/sems/install/rhel7-x86_64/sems/utility/cmake/3.10.3/bin/cmake
-C "/scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/Trilinos/cmake/std/PullRequestLinuxGCC8.3.0TestingSettings.cmake"
-C "/scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/packageEnables.cmake"
-DTrilinos_ENABLE_TESTS:BOOL=ON
-DTrilinos_PARALLEL_LINK_JOBS_LIMIT:STRING=2
-G "Ninja"
/scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/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=ascic166&field2=buildname&compare2=61&value2=PR-7508-test-Trilinos_pullrequest_gcc_8.3.0-1277&field3=buildstamp&compare3=61&value3=20200611-1405-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-7508-test-Trilinos_pullrequest_gcc_8.3.0-1277&field2=buildstamp&compare2=61&value2=20200611-1405-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-7508-test-Trilinos_pullrequest_gcc_8.3.0-1277&field2=buildstamp&compare2=61&value2=20200611-1405-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 of output: 441K
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 of output: 267K
Build succeeded.
build submit error = 0
Starting testing step.
Tests succeeded.
test submit error = 0
File upload submit error = 0
S_EMAILS = HRSwant@sandia.gov,trilinos@sandia.gov
SEMS_PARMETIS_LOCAL_COMPILER_VERSION = 4.8.5
SEMS_PARMETIS_LOCAL_PYTHON_VERSION = 2.7.5
SEMS_NETCDF_LIBRARY_PATH = /projects/sems/install/rhel7-x86_64/sems/tpl/netcdf/4.7.3/gcc/8.3.0/openmpi/1.10.1/parallel/lib
GIT_BRANCH = origin/develop
SEMS_BOOST_LIBRARY_PATH = /projects/sems/install/rhel7-x86_64/sems/tpl/boost/1.66.0/gcc/8.3.0/base/lib
SEMS_GCC_LOCAL_COMPILER_VERSION = 4.8.5
SNLSYSTEM = cee
MPIF77 = mpif77
SEMS_HDF5_ROOT = /projects/sems/install/rhel7-x86_64/sems/tpl/hdf5/1.10.6/gcc/8.3.0/openmpi/1.10.1/parallel
SEMS_SCOTCH_INCLUDE_PATH = /projects/sems/install/rhel7-x86_64/sems/tpl/scotch/6.0.3/gcc/8.3.0/openmpi/1.10.1/nopthread_64bit_parallel/include
LOADEDMODULES = sems-env:sems-git/2.10.1:sems-python/2.7.9:sems-gcc/8.3.0:sems-openmpi/1.10.1:sems-boost/1.66.0/base:sems-zlib/1.2.8/base:sems-hdf5/1.10.6/parallel:sems-netcdf/4.7.3/parallel:sems-parmetis/4.0.3/parallel:sems-scotch/6.0.3/nopthread_64bit_parallel:sems-superlu/4.3/base:sems-cmake/3.10.3:atdm-env:atdm-ninja_fortran/1.7.2
WORKSPACE_TMP = /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0@tmp
SEMS_CMAKE_VERSION = 3.10.3
HISTCONTROL = ignoredups
SERIAL_CXX = g++
PWD = /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0
JENKINS_SERVER_COOKIE = 248910a9cd8de38c
BUILD_DISPLAY_NAME = #1277
PULLREQUESTNUM = 7508
SEMS_SUPERLU_INCLUDE_PATH = /projects/sems/install/rhel7-x86_64/sems/tpl/superlu/4.3/gcc/8.3.0/base/include

==========================================================================================
None
PULLREQUEST_CDASH_TRACK is set. Setting CDASH_TRACK=Pull Request
Enabled packages:
-- Setting Trilinos_ENABLE_ALL_PACKAGES = ON
-- Setting Trilinos_ENABLE_TrilinosATDMConfigTests = ON
-- Setting Trilinos_ENABLE_TrilinosBuildStats = ON
-- Setting Trilinos_ENABLE_TrilinosFrameworkTests = ON

Set CWD = /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/TFW_testing_single_configure_prototype
Archiving artifacts
Finished: SUCCESS

Console Output (last 100 lines) : Trilinos_pullrequest_cuda_9.2 # 4572 (click to expand)

Starting testing step.
CMake Error at /home/trilinos/jenkins/ride/workspace/trilinos-folder/Trilinos_pullrequest_cuda_9.2/TFW_testing_single_configure_prototype/simple_testing.cmake:218 (message):
  Test failed with error -1

test submit error = 0
File upload submit error = 0
0 ride10 ride10 ride10 ride10 ride10
METIS_ROOT = /home/projects/ppc64le-pwr8/metis/5.0.1/gcc/7.2.0
NODE_OWNER_EMAIL = ceeadmin@sandia.gov
LSB_EXIT_PRE_ABORT = 99
TRILINOS_SOURCE_REPO = https://github.com/bartlettroscoe/Trilinos
PARMETIS_HOME = /home/projects/ppc64le-pwr8-nvidia/parmetis/4.0.3/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88
FC_VERSION = 7.2.0
LSB_JOBFILENAME = /ascldap/users/trilinos/.lsbatch/1591884372.4703
BLAS_ROOT = /home/projects/ppc64le-pwr8/netlib/3.8.0/gcc/7.2.0
GIT_CHECKOUT_DIR = Trilinos
LSB_AFFINITY_HOSTFILE = /ascldap/users/trilinos/.lsbatch/1591884372.4703.hostAffinityFile
PARMETIS_ROOT = /home/projects/ppc64le-pwr8-nvidia/parmetis/4.0.3/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88
LSF_ENVDIR = /opt/lsf/conf
MPI_VENDOR = openmpi
PYTHON = /home/projects/ppc64le/python/2.7.12/bin/python
CXX_VENDOR = gcc
HDF5_ROOT = /home/projects/ppc64le-pwr8-nvidia/hdf5/1.8.20/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88
HOSTTYPE = LINUXPPC64LE
SSH_CLIENT = 205.137.81.17 44298 22
JENKINS_URL = https://ascic-jenkins.sandia.gov/
LOGNAME = trilinos
LSF_LIM_API_NTRIES = 1
PATH = /ascldap/users/rabartl/install/white-ride/cmake-3.11.2/bin:/ascldap/users/rabartl/install/white-ride/ninja-1.8.2/bin:/home/projects/ppc64le/valgrind/3.12.0/bin:/home/projects/ppc64le/cmake/3.9.6/bin:/home/projects/ppc64le-pwr8-nvidia/parmetis/4.0.3/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88/bin:/home/projects/ppc64le-pwr8/metis/5.0.1/gcc/7.2.0/bin:/home/projects/ppc64le-pwr8-nvidia/netcdf/4.6.1/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88/bin:/home/projects/ppc64le-pwr8-nvidia/hdf5/1.8.20/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88/bin:/home/projects/ppc64le-pwr8-nvidia/pnetcdf-exo/1.9.0/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88/bin:/home/projects/ppc64le-pwr8-nvidia/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88/bin:/home/projects/ppc64le/java/ibm/sdk/8.0.0/bin:/home/projects/ppc64le/papi/5.5.1/bin:/home/projects/ppc64le/gcc/7.2.0/bin:/home/projects/ppc64le/binutils/2.30.0/bin:/home/projects/ppc64le-pwr8-nvidia/cuda/9.2.88/bin:/home/projects/ppc64le/python/2.7.12/bin:/home/projects/ppc64le/git/2.10.1/bin:/opt/lsf/10.1/linux3.10-glibc2.17-ppc64le/bin:/opt/lsf/10.1/linux3.10-glibc2.17-ppc64le/etc:/usr/local/bin:/usr/bin:/opt/ibutils/bin:/usr/local/sbin:/usr/sbin:/ascldap/users/trilinos/.local/bin:/ascldap/users/trilinos/bin
LSB_QUEUE = rhel7F
LSF_JOB_TIMESTAMP_VALUE = 1591884372
LSB_EXEC_HOSTTYPE = LINUXPPC64LE
GIT_PREVIOUS_SUCCESSFUL_COMMIT = 8ee2d2bd329d823ef58051c97a5873dce78b40a2
LSB_DJOB_HOSTFILE = /ascldap/users/trilinos/.lsbatch/1591884372.4703.hostfile
no_proxy = localhost,localnets,127.0.0.1,169.254.0.0/16,forge.sandia.gov
LSF_LIBDIR = /opt/lsf/10.1/linux3.10-glibc2.17-ppc64le/lib
CGNS_VERSION = 20180521
LSB_SUB_USER = trilinos
NODE_LABELS = ride-trilinos trilinos-ride
GIT_BRANCH_2 = origin/pull_request_changes
GIT_CHECKOUT_DIR_1 = TFW_single_configure_support_scripts
GIT_CHECKOUT_DIR_2 = TFW_testing_single_configure_prototype
JOB_OWNER_EMAIL = HRSwant@sandia.gov
PULLREQUEST_CDASH_TRACK = Pull Request
BUILD_ID = 4572
SBD_KRB5CCNAME_VAL =
LSB_RES_GET_FANOUT_INFO = Y
RUN_DISPLAY_URL = https://ascic-jenkins.sandia.gov/job/trilinos-folder/job/Trilinos_pullrequest_cuda_9.2/4572/display/redirect
JOB_COOWNERS_EMAILS = HRSwant@sandia.gov,trilinos@sandia.gov
LSB_BATCH_JID = 4703
MPI_HOME = /home/projects/ppc64le-pwr8-nvidia/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88
SUPERLU_HOME = /home/projects/ppc64le-pwr8/superlu/4.3.0/gcc/7.2.0
F77_VENDOR = gcc
KRB5CCNAME = FILE:/tmp/krb5cc_91724_bqNHm8maFh
BINUTILS_VERSION = 2.30.0
GIT_BRANCH = origin/develop
CMAKE_ROOT = /home/projects/ppc64le/cmake/3.9.6
BOOST_ROOT = /home/projects/ppc64le-pwr8/boost/1.65.1/gcc/7.2.0
VALGRIND_ROOT = /home/projects/ppc64le/valgrind/3.12.0
MPIF77 = /home/projects/ppc64le-pwr8-nvidia/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88/bin/mpif77
PARMETIS_VERSION = 4.0.3
LSB_JOBNAME = trilinos-folder/Trilinos_pullrequest_cuda_9.2
LOADEDMODULES = git/2.10.1:python/2.7.12:cuda/9.2.88:binutils/2.30.0:gcc/7.2.0:papi/5.5.1:java/ibm/sdk/8.0.0:openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88:pnetcdf-exo/1.9.0/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88:zlib/1.2.8:hdf5/1.8.20/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88:netcdf/4.6.1/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88:cgns/20180521/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88:netlib/3.8.0/gcc/7.2.0:superlu/4.3.0/gcc/7.2.0:boost/1.65.1/gcc/7.2.0:metis/5.0.1/gcc/7.2.0:parmetis/4.0.3/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88:cmake/3.9.6:valgrind/3.12.0:devpack/20180521/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88
WORKSPACE_TMP = /home/trilinos/jenkins/ride/workspace/trilinos-folder/Trilinos_pullrequest_cuda_9.2@tmp
GIT_BRANCH_1 = origin/master
CUDA_MANAGED_FORCE_DEVICE_ALLOC = 1
HISTCONTROL = ignoredups
PWD = /home/trilinos/jenkins/ride/workspace/trilinos-folder/Trilinos_pullrequest_cuda_9.2
LS_EXECCWD = /home/trilinos/jenkins/ride/workspace/trilinos-folder/Trilinos_pullrequest_cuda_9.2
JENKINS_SERVER_COOKIE = 248910a9cd8de38c
BUILD_DISPLAY_NAME = #4572
CXX_VERSION = 7.2.0
PYTHON_ROOT = /home/projects/ppc64le/python/2.7.12
OMPI_CXX = /home/trilinos/jenkins/ride/workspace/trilinos-folder/Trilinos_pullrequest_cuda_9.2/Trilinos/packages/kokkos/bin/nvcc_wrapper
SUPERLU_VERSION = 4.3.0
PULLREQUESTNUM = 7508
BINARY_TYPE_HPC =

==========================================================================================
None
PULLREQUEST_CDASH_TRACK is set. Setting CDASH_TRACK=Pull Request
Enabled packages:
-- Setting Trilinos_ENABLE_ALL_PACKAGES = ON
-- Setting Trilinos_ENABLE_TrilinosATDMConfigTests = ON
-- Setting Trilinos_ENABLE_TrilinosBuildStats = ON
-- Setting Trilinos_ENABLE_TrilinosFrameworkTests = ON

Set CWD = /home/trilinos/jenkins/ride/workspace/trilinos-folder/Trilinos_pullrequest_cuda_9.2/TFW_testing_single_configure_prototype
Traceback (most recent call last):
File "/home/trilinos/jenkins/ride/workspace/trilinos-folder/Trilinos_pullrequest_cuda_9.2/Trilinos/cmake/std/PullRequestLinuxDriverTest.py", line 701, in
returnValue = run()
File "/home/trilinos/jenkins/ride/workspace/trilinos-folder/Trilinos_pullrequest_cuda_9.2/Trilinos/cmake/std/PullRequestLinuxDriverTest.py", line 694, in run
'-Dsubprojects_file=../package_subproject_list.cmake'])
File "/home/projects/ppc64le/python/2.7.12/lib/python2.7/subprocess.py", line 541, in check_call
raise CalledProcessError(retcode, cmd)
subprocess.CalledProcessError: Command '['ctest', '-S', 'simple_testing.cmake', '-Dbuild_name=PR-7508-test-Trilinos_pullrequest_cuda_9.2-4572', '-Dskip_by_parts_submit=OFF', '-Dskip_update_step=ON', '-Ddashboard_model=Experimental', '-Ddashboard_track=Pull Request', '-DPARALLEL_LEVEL=64', '-DTEST_PARALLEL_LEVEL=8', '-Dbuild_dir=/home/trilinos/jenkins/ride/workspace/trilinos-folder/Trilinos_pullrequest_cuda_9.2/pull_request_test', '-Dconfigure_script=/home/trilinos/jenkins/ride/workspace/trilinos-folder/Trilinos_pullrequest_cuda_9.2/Trilinos/cmake/std/PullRequestLinuxCuda9.2TestingSettings.cmake', '-Dpackage_enables=../packageEnables.cmake', '-Dsubprojects_file=../package_subproject_list.cmake']' returned non-zero exit status 255
Build step 'Execute shell' marked build as failure
Archiving artifacts
Finished: FAILURE

Console Output (last 100 lines) : Trilinos_pullrequest_clang_9.0.0 # 947 (click to expand)

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

CHANGED_PACKAGES_FULL_LIST='ALL_PACKAGES,TrilinosATDMConfigTests,TrilinosBuildStats,TrilinosFrameworkTests'

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

CHANGED_PACKAGES_ST_LIST='ALL_PACKAGES,TrilinosATDMConfigTests,TrilinosBuildStats,TrilinosFrameworkTests'

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-7508-test-Trilinos_pullrequest_clang_9.0.0-947
Cur dir = /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_clang_9.0.0/TFW_testing_single_configure_prototype
Source dir = /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_clang_9.0.0/Trilinos
Binary dir = /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_clang_9.0.0/pull_request_test
Parallel level = 10
Testing Parallel level = 10
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 = 59
Dashboard model = Experimental
Dashboard track = Pull Request
Running configuration:
/projects/sems/install/rhel6-x86_64/sems/utility/cmake/3.12.2/bin/cmake
-C "/scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_clang_9.0.0/Trilinos/cmake/std/PullRequestLinuxClang9.0.0TestingSettings.cmake"
-C "/scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_clang_9.0.0/packageEnables.cmake"
-DTrilinos_ENABLE_TESTS:BOOL=ON
-DTrilinos_PARALLEL_LINK_JOBS_LIMIT:STRING=2
-G "Ninja"
/scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_clang_9.0.0/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=ascic141&field2=buildname&compare2=61&value2=PR-7508-test-Trilinos_pullrequest_clang_9.0.0-947&field3=buildstamp&compare3=61&value3=20200611-1406-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-7508-test-Trilinos_pullrequest_clang_9.0.0-947&field2=buildstamp&compare2=61&value2=20200611-1406-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-7508-test-Trilinos_pullrequest_clang_9.0.0-947&field2=buildstamp&compare2=61&value2=20200611-1406-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 of output: 437K
configure submit error = 0
Configure suceeded.
Starting build step.
Each symbol represents 1024 bytes of output.
.................................................. Size: 49K
.................................................. Size: 99K
................... Size of output: 119K
Build succeeded.
build submit error = 0
Starting testing step.
Tests succeeded.
test submit error = 0
File upload submit error = 0
3.2.10
JOB_COOWNERS_EMAILS = HRSwant@sandia.gov,trilinos@sandia.gov
SEMS_PARMETIS_LOCAL_COMPILER_VERSION = 4.4.7
SEMS_PARMETIS_LOCAL_PYTHON_VERSION = 2.6.6
SEMS_NETCDF_LIBRARY_PATH = /projects/sems/install/rhel6-x86_64/sems/tpl/netcdf/4.7.3/clang/9.0.0/openmpi/1.10.1/parallel/lib
GIT_URL = https://github.com/trilinos/Trilinos
SEMS_BOOST_LIBRARY_PATH = /projects/sems/install/rhel6-x86_64/sems/tpl/boost/1.63.0/clang/9.0.0/base/lib
SEMS_GCC_LOCAL_COMPILER_VERSION = 4.4.7
SNLSYSTEM = cee
MPIF77 = mpif77
SEMS_HDF5_ROOT = /projects/sems/install/rhel6-x86_64/sems/tpl/hdf5/1.10.6/clang/9.0.0/openmpi/1.10.1/parallel
SEMS_SCOTCH_INCLUDE_PATH = /projects/sems/install/rhel6-x86_64/sems/tpl/scotch/6.0.3/clang/9.0.0/openmpi/1.10.1/nopthread_64bit_parallel/include
LOADEDMODULES = sems-env:sems-git/2.10.1:sems-python/2.7.9:sems-gcc/5.3.0:sems-clang/9.0.0:sems-openmpi/1.10.1:sems-boost/1.63.0/base:sems-zlib/1.2.8/base:sems-hdf5/1.10.6/parallel:sems-netcdf/4.7.3/parallel:sems-parmetis/4.0.3/parallel:sems-scotch/6.0.3/nopthread_64bit_parallel:sems-superlu/4.3/base:sems-cmake/3.12.2:atdm-env:atdm-ninja_fortran/1.7.2
WORKSPACE_TMP = /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_clang_9.0.0@tmp
SEMS_CMAKE_VERSION = 3.12.2
HISTCONTROL = ignoredups
SERIAL_CXX = clang++
PWD = /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_clang_9.0.0
JENKINS_SERVER_COOKIE = 248910a9cd8de38c
BUILD_DISPLAY_NAME = #947
PULLREQUESTNUM = 7508
SEMS_SUPERLU_INCLUDE_PATH = /projects/sems/install/rhel6-x86_64/sems/tpl/superlu/4.3/clang/9.0.0/base/include

==========================================================================================
None
PULLREQUEST_CDASH_TRACK is set. Setting CDASH_TRACK=Pull Request
Enabled packages:
-- Setting Trilinos_ENABLE_ALL_PACKAGES = ON
-- Setting Trilinos_ENABLE_TrilinosATDMConfigTests = ON
-- Setting Trilinos_ENABLE_TrilinosBuildStats = ON
-- Setting Trilinos_ENABLE_TrilinosFrameworkTests = ON

Set CWD = /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_clang_9.0.0/TFW_testing_single_configure_prototype
Archiving artifacts
Finished: SUCCESS

Console Output (last 100 lines) : Trilinos_pullrequest_python_2 # 2683 (click to expand)

HUDSON_HOME = /var/lib/jenkins
TRILINOS_TARGET_BRANCH = develop
https_proxy = http://wwwproxy.sandia.gov:80
F90 = gfortran
SERIAL_F90 = gfortran
SEMS_CMAKE_ROOT = /projects/sems/install/rhel7-x86_64/sems/utility/cmake/3.10.3
JOB_COOWNERS = prwolfe,trilinos
SERIAL_FC = gfortran
BUILD_CAUSE_MANUALTRIGGER = true
HUDSON_COOKIE = 60f32082-9813-4cec-ac02-ff693a1940f2
ftp_proxy = http://wwwproxy.sandia.gov:80/
QT_GRAPHICSSYSTEM_CHECKED = 1
SEMS_NINJA_FORTRAN_LOCAL_COMPILER_VERSION = 4.8.5
F77 = gfortran
TRILINOS_TARGET_REPO = https://github.com/trilinos/Trilinos
NODE_OWNER_EMAIL = ceeadmin@sandia.gov
SEMS_GIT_LOCAL_PYTHON_VERSION = 2.7.5
NODE_NAME = tr-test-4-trilinos
GIT_CHECKOUT_DIR = Trilinos
SEMS_NINJA_FORTRAN_VERSION = 1.7.2
SEMS_COMPILER_VERSION = 7.2.0
SSH_CLIENT = 205.137.81.17 57002 22
JENKINS_URL = https://ascic-jenkins.sandia.gov/
LOGNAME = trilinos
NODE_LABELS = tr-test-4-trilinos trilinos-32 trilinos-any trilinos-cloud-32 trilinos_cloud_32_node_4
PATH = /projects/sierra/linux_rh7/install/Python/2.7.15/bin:/projects/sierra/linux_rh7/install/Python/extrasbin:/projects/sems/install/rhel7-x86_64/atdm/utility/ninja_fortran/1.7.2/sbin:/projects/sems/install/rhel7-x86_64/atdm/utility/ninja_fortran/1.7.2/bin:/projects/sems/install/rhel7-x86_64/sems/utility/cmake/3.10.3/sbin:/projects/sems/install/rhel7-x86_64/sems/utility/cmake/3.10.3/bin:/projects/sems/install/rhel7-x86_64/sems/compiler/gcc/7.2.0/base/bin:/projects/sems/install/rhel7-x86_64/sems/utility/git/2.10.1/sbin:/projects/sems/install/rhel7-x86_64/sems/utility/git/2.10.1/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/ascldap/users/trilinos/.local/bin:/ascldap/users/trilinos/bin
SEMS_NINJA_FORTRAN_LOCAL_PYTHON_VERSION = 2.7.5
GIT_PREVIOUS_SUCCESSFUL_COMMIT = 8ee2d2bd329d823ef58051c97a5873dce78b40a2
no_proxy = localhost,localnets,127.0.0.1,169.254.0.0/16,forge.sandia.gov
CC = gcc
SEMS_CMAKE_LOCAL_COMPILER_VERSION = 4.8.5
JOB_OWNER_EMAIL = prwolfe@sandia.gov
PULLREQUEST_CDASH_TRACK = Pull Request
BUILD_ID = 2683
JOB_COOWNERS_EMAILS = prwolfe@sandia.gov,trilinos@sandia.gov
GIT_URL = https://github.com/trilinos/Trilinos
SEMS_GCC_LOCAL_COMPILER_VERSION = 4.8.5
LOADEDMODULES = sems-env:sems-git/2.10.1:sems-gcc/7.2.0:sems-cmake/3.10.3:atdm-env:atdm-ninja_fortran/1.7Currently Loaded Modulefiles:
  1) sems-env                   4) sems-cmake/3.10.3
  2) sems-git/2.10.1            5) atdm-env
  3) sems-gcc/7.2.0             6) atdm-ninja_fortran/1.7.2
Build name               = PR-7508-test-Trilinos_pullrequest_python_2-2683
Cur dir                  = /scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_python_2/TFW_testing_single_configure_prototype
Source dir               = /scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_python_2/Trilinos
Binary dir               = /scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_python_2/pull_request_test
Parallel level           = 20
Testing Parallel level   = 20
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         = 1
Dashboard model          = Experimental
Dashboard track          = Pull Request
Running configuration:
/projects/sems/install/rhel7-x86_64/sems/utility/cmake/3.10.3/bin/cmake 
  -C "/scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_python_2/Trilinos/cmake/std/PullRequestLinuxPython2.cmake"
  -C "/scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_python_2/packageEnables.cmake"
  -DTrilinos_ENABLE_TESTS:BOOL=ON
  -DTrilinos_PARALLEL_LINK_JOBS_LIMIT:STRING=2
  -G "Ninja"
  /scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_python_2/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=tr-test-4.novalocal&field2=buildname&compare2=61&value2=PR-7508-test-Trilinos_pullrequest_python_2-2683&field3=buildstamp&compare3=61&value3=20200611-1406-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-7508-test-Trilinos_pullrequest_python_2-2683&field2=buildstamp&compare2=61&value2=20200611-1406-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-7508-test-Trilinos_pullrequest_python_2-2683&field2=buildstamp&compare2=61&value2=20200611-1406-Pull Request
Starting configure step.
   Each . represents 1024 bytes of output
    ....................... Size of output: 22K
configure submit error = 0
Configure suceeded.
Starting build step.
   Each symbol represents 1024 bytes of output.
    . Size of output: 0K
Build succeeded.
build submit error = 0
Starting testing step.
Tests succeeded.
test submit error = 0
File upload submit error = 0
.2
WORKSPACE_TMP = /scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_python_2@tmp
SEMS_CMAKE_VERSION = 3.10.3
HISTCONTROL = ignoredups
SERIAL_CXX = g++
PWD = /scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_python_2
JENKINS_SERVER_COOKIE = 248910a9cd8de38c
BUILD_DISPLAY_NAME = #2683
PULLREQUESTNUM = 7508

==========================================================================================
None
PULLREQUEST_CDASH_TRACK is set. Setting CDASH_TRACK=Pull Request
Enabled packages:
-- Setting Trilinos_ENABLE_TrilinosFrameworkTests = ON

Set CWD = /scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_python_2/TFW_testing_single_configure_prototype
Archiving artifacts
Finished: SUCCESS

Console Output (last 100 lines) : Trilinos_pullrequest_python_3 # 2692 (click to expand)

HUDSON_HOME = /var/lib/jenkins
TRILINOS_TARGET_BRANCH = develop
https_proxy = http://wwwproxy.sandia.gov:80
F90 = gfortran
SERIAL_F90 = gfortran
SEMS_CMAKE_ROOT = /projects/sems/install/rhel7-x86_64/sems/utility/cmake/3.10.3
JOB_COOWNERS = prwolfe,trilinos
SERIAL_FC = gfortran
BUILD_CAUSE_MANUALTRIGGER = true
HUDSON_COOKIE = 9fab2cde-603d-436e-8d0d-977fa2746fdc
ftp_proxy = http://wwwproxy.sandia.gov:80/
QT_GRAPHICSSYSTEM_CHECKED = 1
SEMS_NINJA_FORTRAN_LOCAL_COMPILER_VERSION = 4.8.5
F77 = gfortran
TRILINOS_TARGET_REPO = https://github.com/trilinos/Trilinos
NODE_OWNER_EMAIL = ceeadmin@sandia.gov
SEMS_GIT_LOCAL_PYTHON_VERSION = 2.7.5
NODE_NAME = tr-test-4-trilinos
GIT_CHECKOUT_DIR = Trilinos
SEMS_NINJA_FORTRAN_VERSION = 1.7.2
SEMS_COMPILER_VERSION = 7.2.0
SSH_CLIENT = 205.137.81.17 57002 22
JENKINS_URL = https://ascic-jenkins.sandia.gov/
LOGNAME = trilinos
NODE_LABELS = tr-test-4-trilinos trilinos-32 trilinos-any trilinos-cloud-32 trilinos_cloud_32_node_4
PATH = /projects/sierra/linux_rh7/install/Python/3.6.3/bin:/projects/sierra/linux_rh7/install/Python/extrasbin:/projects/sems/install/rhel7-x86_64/atdm/utility/ninja_fortran/1.7.2/sbin:/projects/sems/install/rhel7-x86_64/atdm/utility/ninja_fortran/1.7.2/bin:/projects/sems/install/rhel7-x86_64/sems/utility/cmake/3.10.3/sbin:/projects/sems/install/rhel7-x86_64/sems/utility/cmake/3.10.3/bin:/projects/sems/install/rhel7-x86_64/sems/compiler/gcc/7.2.0/base/bin:/projects/sems/install/rhel7-x86_64/sems/utility/git/2.10.1/sbin:/projects/sems/install/rhel7-x86_64/sems/utility/git/2.10.1/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/ascldap/users/trilinos/.local/bin:/ascldap/users/trilinos/bin
SEMS_NINJA_FORTRAN_LOCAL_PYTHON_VERSION = 2.7.5
GIT_PREVIOUS_SUCCESSFUL_COMMIT = 8ee2d2bd329d823ef58051c97a5873dce78b40a2
no_proxy = localhost,localnets,127.0.0.1,169.254.0.0/16,forge.sandia.gov
CC = gcc
SEMS_CMAKE_LOCAL_COMPILER_VERSION = 4.8.5
JOB_OWNER_EMAIL = prwolfe@sandia.gov
PULLREQUEST_CDASH_TRACK = Pull Request
BUILD_ID = 2692
JOB_COOWNERS_EMAILS = prwolfe@sandia.gov,trilinos@sandia.gov
GIT_URL = https://github.com/trilinos/Trilinos
SEMS_GCC_LOCAL_COMPILER_VERSION = 4.8.5
LOADEDMODULES = sems-env:sems-git/2.10.1:sems-gcc/7.2.0:sems-cmake/3.10.3:atdm-env:atdm-ninja_fortran/1.7.Currently Loaded Modulefiles:
  1) sems-env                   4) sems-cmake/3.10.3
  2) sems-git/2.10.1            5) atdm-env
  3) sems-gcc/7.2.0             6) atdm-ninja_fortran/1.7.2
Build name               = PR-7508-test-Trilinos_pullrequest_python_3-2692
Cur dir                  = /scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_python_3/TFW_testing_single_configure_prototype
Source dir               = /scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_python_3/Trilinos
Binary dir               = /scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_python_3/pull_request_test
Parallel level           = 20
Testing Parallel level   = 20
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         = 1
Dashboard model          = Experimental
Dashboard track          = Pull Request
Running configuration:
/projects/sems/install/rhel7-x86_64/sems/utility/cmake/3.10.3/bin/cmake 
  -C "/scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_python_3/Trilinos/cmake/std/PullRequestLinuxPython3.cmake"
  -C "/scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_python_3/packageEnables.cmake"
  -DTrilinos_ENABLE_TESTS:BOOL=ON
  -DTrilinos_PARALLEL_LINK_JOBS_LIMIT:STRING=2
  -G "Ninja"
  /scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_python_3/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=tr-test-4.novalocal&field2=buildname&compare2=61&value2=PR-7508-test-Trilinos_pullrequest_python_3-2692&field3=buildstamp&compare3=61&value3=20200611-1407-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-7508-test-Trilinos_pullrequest_python_3-2692&field2=buildstamp&compare2=61&value2=20200611-1407-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-7508-test-Trilinos_pullrequest_python_3-2692&field2=buildstamp&compare2=61&value2=20200611-1407-Pull Request
Starting configure step.
   Each . represents 1024 bytes of output
    ....................... Size of output: 22K
configure submit error = 0
Configure suceeded.
Starting build step.
   Each symbol represents 1024 bytes of output.
    . Size of output: 0K
Build succeeded.
build submit error = 0
Starting testing step.
Tests succeeded.
test submit error = 0
File upload submit error = 0
2
WORKSPACE_TMP = /scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_python_3@tmp
SEMS_CMAKE_VERSION = 3.10.3
HISTCONTROL = ignoredups
SERIAL_CXX = g++
PWD = /scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_python_3
JENKINS_SERVER_COOKIE = 248910a9cd8de38c
BUILD_DISPLAY_NAME = #2692
PULLREQUESTNUM = 7508

==========================================================================================
None
PULLREQUEST_CDASH_TRACK is set. Setting CDASH_TRACK=Pull Request
Enabled packages:
-- Setting Trilinos_ENABLE_TrilinosFrameworkTests = ON

Set CWD = /scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_python_3/TFW_testing_single_configure_prototype
Archiving artifacts
Finished: SUCCESS


CDash Test Results for PR# 7508.


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 11, 2020
@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_4.8.4

  • Build Num: 7009
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
COMPILER_MODULE sems-gcc/4.8.4
JENKINS_BUILD_TYPE Release
JENKINS_COMM_TYPE MPI
JENKINS_DO_COMPLEX OFF
JENKINS_JOB_TYPE Experimental
MPI_MODULE sems-openmpi/1.8.7
PULLREQUESTNUM 7508
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH 7376-build-stats
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 03ad108
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 7ba2010

Build Information

Test Name: Trilinos_pullrequest_intel_17.0.1

  • Build Num: 6819
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 7508
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH 7376-build-stats
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 03ad108
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 7ba2010

Build Information

Test Name: Trilinos_pullrequest_gcc_4.9.3_SERIAL

  • Build Num: 5244
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 7508
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH 7376-build-stats
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 03ad108
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 7ba2010

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0

  • Build Num: 5091
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 7508
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH 7376-build-stats
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 03ad108
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 7ba2010

Build Information

Test Name: Trilinos_pullrequest_gcc_8.3.0

  • Build Num: 1280
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 7508
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH 7376-build-stats
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 03ad108
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 7ba2010

Build Information

Test Name: Trilinos_pullrequest_cuda_9.2

  • Build Num: 4575
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 7508
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH 7376-build-stats
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 03ad108
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 7ba2010

Build Information

Test Name: Trilinos_pullrequest_clang_9.0.0

  • Build Num: 950
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 7508
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH 7376-build-stats
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 03ad108
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 7ba2010

Build Information

Test Name: Trilinos_pullrequest_python_2

  • Build Num: 2686
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 7508
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH 7376-build-stats
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 03ad108
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 7ba2010

Build Information

Test Name: Trilinos_pullrequest_python_3

  • Build Num: 2695
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 7508
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH 7376-build-stats
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 03ad108
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 7ba2010

Using Repos:

Repo: TRILINOS (bartlettroscoe/Trilinos)
  • Branch: 7376-build-stats
  • SHA: 03ad108
  • Mode: TEST_REPO

Pull Request Author: bartlettroscoe

@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_4.8.4

  • Build Num: 7009
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
COMPILER_MODULE sems-gcc/4.8.4
JENKINS_BUILD_TYPE Release
JENKINS_COMM_TYPE MPI
JENKINS_DO_COMPLEX OFF
JENKINS_JOB_TYPE Experimental
MPI_MODULE sems-openmpi/1.8.7
PULLREQUESTNUM 7508
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH 7376-build-stats
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 03ad108
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 7ba2010

Build Information

Test Name: Trilinos_pullrequest_intel_17.0.1

  • Build Num: 6819
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 7508
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH 7376-build-stats
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 03ad108
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 7ba2010

Build Information

Test Name: Trilinos_pullrequest_gcc_4.9.3_SERIAL

  • Build Num: 5244
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 7508
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH 7376-build-stats
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 03ad108
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 7ba2010

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0

  • Build Num: 5091
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 7508
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH 7376-build-stats
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 03ad108
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 7ba2010

Build Information

Test Name: Trilinos_pullrequest_gcc_8.3.0

  • Build Num: 1280
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 7508
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH 7376-build-stats
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 03ad108
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 7ba2010

Build Information

Test Name: Trilinos_pullrequest_cuda_9.2

  • Build Num: 4575
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 7508
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH 7376-build-stats
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 03ad108
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 7ba2010

Build Information

Test Name: Trilinos_pullrequest_clang_9.0.0

  • Build Num: 950
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 7508
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH 7376-build-stats
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 03ad108
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 7ba2010

Build Information

Test Name: Trilinos_pullrequest_python_2

  • Build Num: 2686
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 7508
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH 7376-build-stats
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 03ad108
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 7ba2010

Build Information

Test Name: Trilinos_pullrequest_python_3

  • Build Num: 2695
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 7508
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH 7376-build-stats
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 03ad108
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 7ba2010
Console Output (last 100 lines) : Trilinos_pullrequest_gcc_4.8.4 # 7009 (click to expand)

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

CHANGED_PACKAGES_ST_LIST='ALL_PACKAGES,TrilinosATDMConfigTests,TrilinosBuildStats,TrilinosFrameworkTests'

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-7508-test-Trilinos_pullrequest_gcc_4.8.4-7009
Cur dir = /scratch/trilinos/jenkins/tr-test-8/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/TFW_testing_single_configure_prototype
Source dir = /scratch/trilinos/jenkins/tr-test-8/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/Trilinos
Binary dir = /scratch/trilinos/jenkins/tr-test-8/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/pull_request_test
Parallel level = 20
Testing Parallel level = 10
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 = 59
Dashboard model = Experimental
Dashboard track = Pull Request
Running configuration:
/projects/sems/install/rhel7-x86_64/sems/utility/cmake/3.10.3/bin/cmake
-C "/scratch/trilinos/jenkins/tr-test-8/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/Trilinos/cmake/std/PullRequestLinuxGCC4.8.4TestingSettings.cmake"
-C "/scratch/trilinos/jenkins/tr-test-8/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/packageEnables.cmake"
-DTrilinos_ENABLE_TESTS:BOOL=ON
-DTrilinos_PARALLEL_LINK_JOBS_LIMIT:STRING=2
-G "Ninja"
/scratch/trilinos/jenkins/tr-test-8/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/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=tr-test-8.novalocal&field2=buildname&compare2=61&value2=PR-7508-test-Trilinos_pullrequest_gcc_4.8.4-7009&field3=buildstamp&compare3=61&value3=20200611-1743-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-7508-test-Trilinos_pullrequest_gcc_4.8.4-7009&field2=buildstamp&compare2=61&value2=20200611-1743-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-7508-test-Trilinos_pullrequest_gcc_4.8.4-7009&field2=buildstamp&compare2=61&value2=20200611-1743-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: 454K
configure submit error = 0
Configure suceeded.
Starting build step.
Each symbol represents 1024 bytes of output.
.................................................. Size: 49K
.................................................. Size: 100K
.................................................. Size: 149K
.................................................. Size: 199K
.................................................. Size: 249K
.................................................. Size: 299K
.................................................. Size: 349K
.................................................. Size: 400K
.................................................. Size: 449K
.................................................. Size: 499K
.................................................. Size: 549K
.................................................. Size: 599K
.................................................. Size: 649K
.................................................. Size: 699K
.................................................. Size: 749K
.................................................. Size: 799K
.................................................. Size: 849K
.................................................. Size: 899K
.. Size of output: 901K
Build succeeded.
build submit error = 0
Starting testing step.
Tests succeeded.
test submit error = 0
File upload submit error = 0
pace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4@tmp
SEMS_CMAKE_VERSION = 3.10.3
HISTCONTROL = ignoredups
SERIAL_CXX = g++
PWD = /scratch/trilinos/jenkins/tr-test-8/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4
JENKINS_SERVER_COOKIE = 248910a9cd8de38c
BUILD_DISPLAY_NAME = #7009
PULLREQUESTNUM = 7508
SEMS_SUPERLU_INCLUDE_PATH = /projects/sems/install/rhel7-x86_64/sems/tpl/superlu/4.3/gcc/4.8.4/base/include

==========================================================================================
None
PULLREQUEST_CDASH_TRACK is set. Setting CDASH_TRACK=Pull Request
Enabled packages:
-- Setting Trilinos_ENABLE_ALL_PACKAGES = ON
-- Setting Trilinos_ENABLE_TrilinosATDMConfigTests = ON
-- Setting Trilinos_ENABLE_TrilinosBuildStats = ON
-- Setting Trilinos_ENABLE_TrilinosFrameworkTests = ON

Set CWD = /scratch/trilinos/jenkins/tr-test-8/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/TFW_testing_single_configure_prototype
Archiving artifacts
Finished: SUCCESS

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

configure submit error = 0
Configure suceeded.
Starting build step.
   Each symbol represents 1024 bytes of output.
    ..................................................  Size: 49K
    ..................................................  Size: 99K
    ..................................................  Size: 150K
    ..................................................  Size: 200K
    ..................................................  Size: 250K
    ..................................................  Size: 300K
    ..................................................  Size: 349K
    ..................................................  Size: 399K
    ..................................................  Size: 449K
    ..................................................  Size: 499K
    ..................................................  Size: 549K
    ..................................................  Size: 599K
    ..................................................  Size: 650K
    ..................................................  Size: 699K
    ..................................................  Size: 749K
    ..................................................  Size: 799K
    ..................................................  Size: 849K
    ..................................................  Size: 900K
    ..................................................  Size: 949K
    ..................................................  Size: 1000K
    ..................................................  Size: 1050K
    ..................................................  Size: 1099K
    ..................................................  Size: 1149K
    ..................................................  Size: 1199K
    ..................................................  Size: 1250K
    ..................................................  Size: 1299K
    ..................................................  Size: 1350K
    ..................................................  Size: 1399K
    ..................................................  Size: 1449K
    ..................................................  Size: 1499K
    ..................................................  Size: 1549K
    ..................................................  Size: 1599K
    ..................................................  Size: 1650K
    ..................................................  Size: 1699K
    ..................................................  Size: 1749K
    ..................................................  Size: 1800K
    ..................................................  Size: 1849K
    ..................................................  Size: 1899K
    ..................................................  Size: 1950K
    ..................................................  Size: 1999K
    ..................................................  Size: 2049K
    ..................................................  Size: 2099K
    ..................................................  Size: 2150K
    ..................................................  Size: 2199K
    ..................................................  Size: 2249K
    ..................................................  Size: 2299K
    ..................................................  Size: 2349K
    ..................................................  Size: 2399K
    ..................................................  Size: 2449K
    ..................................................  Size: 2499K
    ..................................... Size of output: 2536K
Build succeeded.
build submit error = 0
Starting testing step.
Tests succeeded.
test submit error = 0
File upload submit error = 0
ects/sems/install/rhel6-x86_64/sems/tpl/netcdf/4.7.3/intel/17.0.1/mpich/3.2/parallel/include
MKL_LIB = /projects/sems/install/rhel6-x86_64/sems/compiler/intel/17.0.1/base/mkl/lib/intel64
MODULE_VERSION_STACK = 3.2.10
SEMS_MPICH_ROOT = /projects/sems/install/rhel6-x86_64/sems/compiler/intel/17.0.1/mpich/3.2
JOB_COOWNERS_EMAILS = prwolfe@sandia.gov,trilinos@sandia.gov
SEMS_PARMETIS_LOCAL_COMPILER_VERSION = 4.4.7
SEMS_PARMETIS_LOCAL_PYTHON_VERSION = 2.6.6
SEMS_NETCDF_LIBRARY_PATH = /projects/sems/install/rhel6-x86_64/sems/tpl/netcdf/4.7.3/intel/17.0.1/mpich/3.2/parallel/lib
GIT_URL = https://github.com/trilinos/Trilinos
SEMS_INTEL_LOCAL_PYTHON_VERSION = 2.6.6
SEMS_BOOST_LIBRARY_PATH = /projects/sems/install/rhel6-x86_64/sems/tpl/boost/1.63.0/intel/17.0.1/base/lib
SEMS_GCC_LOCAL_COMPILER_VERSION = 4.4.7
SNLSYSTEM = cee
MPIF77 = mpif77
SEMS_HDF5_ROOT = /projects/sems/install/rhel6-x86_64/sems/tpl/hdf5/1.10.6/intel/17.0.1/mpich/3.2/parallel
SEMS_SCOTCH_INCLUDE_PATH = /projects/sems/install/rhel6-x86_64/sems/tpl/scotch/6.0.3/intel/17.0.1/mpich/3.2/nopthread_64bit_parallel/include
LOADEDMODULES = sems-env:sems-git/2.10.1:sems-python/2.7.9:sems-gcc/4.9.3:sems-intel/17.0.1:sems-mpich/3.2:sems-boost/1.63.0/base:sems-zlib/1.2.8/base:sems-hdf5/1.10.6/parallel:sems-netcdf/4.7.3/parallel:sems-parmetis/4.0.3/parallel:sems-scotch/6.0.3/nopthread_64bit_parallel:sems-superlu/4.3/base:sems-cmake/3.10.3:atdm-env:atdm-ninja_fortran/1.7.2
WORKSPACE_TMP = /scratch/trilinos/jenkins/ascic143/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1@tmp
SEMS_CMAKE_VERSION = 3.10.3
HISTCONTROL = ignoredups
SERIAL_CXX = icpc
PWD = /scratch/trilinos/jenkins/ascic143/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1
JENKINS_SERVER_COOKIE = 248910a9cd8de38c
BUILD_DISPLAY_NAME = #6819
PULLREQUESTNUM = 7508
SEMS_SUPERLU_INCLUDE_PATH = /projects/sems/install/rhel6-x86_64/sems/tpl/superlu/4.3/intel/17.0.1/base/include

==========================================================================================
None
PULLREQUEST_CDASH_TRACK is set. Setting CDASH_TRACK=Pull Request
Enabled packages:
-- Setting Trilinos_ENABLE_ALL_PACKAGES = ON
-- Setting Trilinos_ENABLE_TrilinosATDMConfigTests = ON
-- Setting Trilinos_ENABLE_TrilinosBuildStats = ON
-- Setting Trilinos_ENABLE_TrilinosFrameworkTests = ON

Set CWD = /scratch/trilinos/jenkins/ascic143/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/TFW_testing_single_configure_prototype
Archiving artifacts
Finished: SUCCESS

Console Output (last 100 lines) : Trilinos_pullrequest_gcc_4.9.3_SERIAL # 5244 (click to expand)

***

A) Generate the Trilinos Packages definition and depencencies XML file

Wrote the file 'TrilinosPackageDependencies.xml'

B) Get the set of changed files

Current directory: /scratch/trilinos/jenkins/tr-test-2/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/Trilinos

git diff --name-only origin/develop..HEAD > /scratch/trilinos/jenkins/tr-test-2/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/changed-files.txt

Wrote file 'changed-files.txt'

Current directory: /scratch/trilinos/jenkins/tr-test-2/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL

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

CHANGED_PACKAGES_FULL_LIST='ALL_PACKAGES,TrilinosATDMConfigTests,TrilinosBuildStats,TrilinosFrameworkTests'

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

CHANGED_PACKAGES_ST_LIST='ALL_PACKAGES,TrilinosATDMConfigTests,TrilinosBuildStats,TrilinosFrameworkTests'

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-7508-test-Trilinos_pullrequest_gcc_4.9.3_SERIAL-5244
Cur dir = /scratch/trilinos/jenkins/tr-test-2/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/TFW_testing_single_configure_prototype
Source dir = /scratch/trilinos/jenkins/tr-test-2/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/Trilinos
Binary dir = /scratch/trilinos/jenkins/tr-test-2/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/pull_request_test
Parallel level = 20
Testing Parallel level = 10
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 = 59
Dashboard model = Experimental
Dashboard track = Pull Request
Running configuration:
/projects/sems/install/rhel7-x86_64/sems/utility/cmake/3.10.3/bin/cmake
-C "/scratch/trilinos/jenkins/tr-test-2/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/Trilinos/cmake/std/PullRequestLinuxGCC4.9.3TestingSettingsSERIAL.cmake"
-C "/scratch/trilinos/jenkins/tr-test-2/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/packageEnables.cmake"
-DTrilinos_ENABLE_TESTS:BOOL=ON
-DTrilinos_PARALLEL_LINK_JOBS_LIMIT:STRING=2
-G "Ninja"
/scratch/trilinos/jenkins/tr-test-2/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/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=tr-test-2.novalocal&field2=buildname&compare2=61&value2=PR-7508-test-Trilinos_pullrequest_gcc_4.9.3_SERIAL-5244&field3=buildstamp&compare3=61&value3=20200611-1743-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-7508-test-Trilinos_pullrequest_gcc_4.9.3_SERIAL-5244&field2=buildstamp&compare2=61&value2=20200611-1743-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-7508-test-Trilinos_pullrequest_gcc_4.9.3_SERIAL-5244&field2=buildstamp&compare2=61&value2=20200611-1743-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 of output: 380K
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 of output: 385K
Build succeeded.
build submit error = 0
Starting testing step.
Tests succeeded.
test submit error = 0
File upload submit error = 0
gcc/4.9.3/base/include

==========================================================================================
None
PULLREQUEST_CDASH_TRACK is set. Setting CDASH_TRACK=Pull Request
Enabled packages:
-- Setting Trilinos_ENABLE_ALL_PACKAGES = ON
-- Setting Trilinos_ENABLE_TrilinosATDMConfigTests = ON
-- Setting Trilinos_ENABLE_TrilinosBuildStats = ON
-- Setting Trilinos_ENABLE_TrilinosFrameworkTests = ON

Set CWD = /scratch/trilinos/jenkins/tr-test-2/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/TFW_testing_single_configure_prototype
Archiving artifacts
Finished: SUCCESS

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

git diff --name-only origin/develop..HEAD > /scratch/trilinos/jenkins/tr-test-0/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/changed-files.txt

Wrote file 'changed-files.txt'

Current directory: /scratch/trilinos/jenkins/tr-test-0/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0

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

CHANGED_PACKAGES_FULL_LIST='ALL_PACKAGES,TrilinosATDMConfigTests,TrilinosBuildStats,TrilinosFrameworkTests'

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

CHANGED_PACKAGES_ST_LIST='ALL_PACKAGES,TrilinosATDMConfigTests,TrilinosBuildStats,TrilinosFrameworkTests'

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-7508-test-Trilinos_pullrequest_gcc_7.2.0-5091
Cur dir = /scratch/trilinos/jenkins/tr-test-0/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/TFW_testing_single_configure_prototype
Source dir = /scratch/trilinos/jenkins/tr-test-0/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/Trilinos
Binary dir = /scratch/trilinos/jenkins/tr-test-0/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/pull_request_test
Parallel level = 20
Testing Parallel level = 10
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 = 59
Dashboard model = Experimental
Dashboard track = Pull Request
Running configuration:
/projects/sems/install/rhel7-x86_64/sems/utility/cmake/3.10.3/bin/cmake
-C "/scratch/trilinos/jenkins/tr-test-0/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/Trilinos/cmake/std/PullRequestLinuxGCC7.2.0TestingSettings.cmake"
-C "/scratch/trilinos/jenkins/tr-test-0/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/packageEnables.cmake"
-DTrilinos_ENABLE_TESTS:BOOL=ON
-DTrilinos_PARALLEL_LINK_JOBS_LIMIT:STRING=2
-G "Ninja"
/scratch/trilinos/jenkins/tr-test-0/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/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=tr-host-0.novalocal&field2=buildname&compare2=61&value2=PR-7508-test-Trilinos_pullrequest_gcc_7.2.0-5091&field3=buildstamp&compare3=61&value3=20200611-1743-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-7508-test-Trilinos_pullrequest_gcc_7.2.0-5091&field2=buildstamp&compare2=61&value2=20200611-1743-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-7508-test-Trilinos_pullrequest_gcc_7.2.0-5091&field2=buildstamp&compare2=61&value2=20200611-1743-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 of output: 441K
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 of output: 635K
Build succeeded.
build submit error = 0
Starting testing step.
Tests succeeded.
test submit error = 0
File upload submit error = 0
e/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0
JENKINS_SERVER_COOKIE = 248910a9cd8de38c
BUILD_DISPLAY_NAME = #5091
PULLREQUESTNUM = 7508
SEMS_SUPERLU_INCLUDE_PATH = /projects/sems/install/rhel7-x86_64/sems/tpl/superlu/4.3/gcc/7.2.0/base/include

==========================================================================================
None
PULLREQUEST_CDASH_TRACK is set. Setting CDASH_TRACK=Pull Request
Enabled packages:
-- Setting Trilinos_ENABLE_ALL_PACKAGES = ON
-- Setting Trilinos_ENABLE_TrilinosATDMConfigTests = ON
-- Setting Trilinos_ENABLE_TrilinosBuildStats = ON
-- Setting Trilinos_ENABLE_TrilinosFrameworkTests = ON

Set CWD = /scratch/trilinos/jenkins/tr-test-0/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/TFW_testing_single_configure_prototype
Archiving artifacts
Finished: SUCCESS

Console Output (last 100 lines) : Trilinos_pullrequest_gcc_8.3.0 # 1280 (click to expand)

Wrote file 'packageEnables.cmake'

F) Generate the package_subproject_list.cmake file

Wrote file 'package_subproject_list.cmake'
Build name = PR-7508-test-Trilinos_pullrequest_gcc_8.3.0-1280
Cur dir = /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0@2/TFW_testing_single_configure_prototype
Source dir = /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0@2/Trilinos
Binary dir = /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0@2/pull_request_test
Parallel level = 20
Testing Parallel level = 10
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 = 59
Dashboard model = Experimental
Dashboard track = Pull Request
Running configuration:
/projects/sems/install/rhel7-x86_64/sems/utility/cmake/3.10.3/bin/cmake
-C "/scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0@2/Trilinos/cmake/std/PullRequestLinuxGCC8.3.0TestingSettings.cmake"
-C "/scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0@2/packageEnables.cmake"
-DTrilinos_ENABLE_TESTS:BOOL=ON
-DTrilinos_PARALLEL_LINK_JOBS_LIMIT:STRING=2
-G "Ninja"
/scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0@2/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=ascic166&field2=buildname&compare2=61&value2=PR-7508-test-Trilinos_pullrequest_gcc_8.3.0-1280&field3=buildstamp&compare3=61&value3=20200611-1744-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-7508-test-Trilinos_pullrequest_gcc_8.3.0-1280&field2=buildstamp&compare2=61&value2=20200611-1744-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-7508-test-Trilinos_pullrequest_gcc_8.3.0-1280&field2=buildstamp&compare2=61&value2=20200611-1744-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 of output: 441K
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 of output: 638K
Build succeeded.
build submit error = 0
Starting testing step.
Tests succeeded.
test submit error = 0
File upload submit error = 0
B_COOWNERS_EMAILS = HRSwant@sandia.gov,trilinos@sandia.gov
SEMS_PARMETIS_LOCAL_COMPILER_VERSION = 4.8.5
SEMS_PARMETIS_LOCAL_PYTHON_VERSION = 2.7.5
SEMS_NETCDF_LIBRARY_PATH = /projects/sems/install/rhel7-x86_64/sems/tpl/netcdf/4.7.3/gcc/8.3.0/openmpi/1.10.1/parallel/lib
GIT_BRANCH = origin/develop
SEMS_BOOST_LIBRARY_PATH = /projects/sems/install/rhel7-x86_64/sems/tpl/boost/1.66.0/gcc/8.3.0/base/lib
SEMS_GCC_LOCAL_COMPILER_VERSION = 4.8.5
SNLSYSTEM = cee
MPIF77 = mpif77
SEMS_HDF5_ROOT = /projects/sems/install/rhel7-x86_64/sems/tpl/hdf5/1.10.6/gcc/8.3.0/openmpi/1.10.1/parallel
SEMS_SCOTCH_INCLUDE_PATH = /projects/sems/install/rhel7-x86_64/sems/tpl/scotch/6.0.3/gcc/8.3.0/openmpi/1.10.1/nopthread_64bit_parallel/include
LOADEDMODULES = sems-env:sems-git/2.10.1:sems-python/2.7.9:sems-gcc/8.3.0:sems-openmpi/1.10.1:sems-boost/1.66.0/base:sems-zlib/1.2.8/base:sems-hdf5/1.10.6/parallel:sems-netcdf/4.7.3/parallel:sems-parmetis/4.0.3/parallel:sems-scotch/6.0.3/nopthread_64bit_parallel:sems-superlu/4.3/base:sems-cmake/3.10.3:atdm-env:atdm-ninja_fortran/1.7.2
WORKSPACE_TMP = /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0@2@tmp
SEMS_CMAKE_VERSION = 3.10.3
HISTCONTROL = ignoredups
SERIAL_CXX = g++
PWD = /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0@2
JENKINS_SERVER_COOKIE = 248910a9cd8de38c
BUILD_DISPLAY_NAME = #1280
PULLREQUESTNUM = 7508
SEMS_SUPERLU_INCLUDE_PATH = /projects/sems/install/rhel7-x86_64/sems/tpl/superlu/4.3/gcc/8.3.0/base/include

==========================================================================================
None
PULLREQUEST_CDASH_TRACK is set. Setting CDASH_TRACK=Pull Request
Enabled packages:
-- Setting Trilinos_ENABLE_ALL_PACKAGES = ON
-- Setting Trilinos_ENABLE_TrilinosATDMConfigTests = ON
-- Setting Trilinos_ENABLE_TrilinosBuildStats = ON
-- Setting Trilinos_ENABLE_TrilinosFrameworkTests = ON

Set CWD = /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0@2/TFW_testing_single_configure_prototype
Archiving artifacts
Finished: SUCCESS

Console Output (last 100 lines) : Trilinos_pullrequest_cuda_9.2 # 4575 (click to expand)

Starting testing step.
CMake Error at /home/trilinos/jenkins/ride/workspace/trilinos-folder/Trilinos_pullrequest_cuda_9.2@2/TFW_testing_single_configure_prototype/simple_testing.cmake:218 (message):
  Test failed with error -1

test submit error = 0
File upload submit error = 0
12 ride12 ride12 ride12 ride12 ride12 ride12 ride12
METIS_ROOT = /home/projects/ppc64le-pwr8/metis/5.0.1/gcc/7.2.0
NODE_OWNER_EMAIL = ceeadmin@sandia.gov
LSB_EXIT_PRE_ABORT = 99
TRILINOS_SOURCE_REPO = https://github.com/bartlettroscoe/Trilinos
PARMETIS_HOME = /home/projects/ppc64le-pwr8-nvidia/parmetis/4.0.3/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88
FC_VERSION = 7.2.0
LSB_JOBFILENAME = /ascldap/users/trilinos/.lsbatch/1591897489.4708
BLAS_ROOT = /home/projects/ppc64le-pwr8/netlib/3.8.0/gcc/7.2.0
GIT_CHECKOUT_DIR = Trilinos
LSB_AFFINITY_HOSTFILE = /ascldap/users/trilinos/.lsbatch/1591897489.4708.hostAffinityFile
PARMETIS_ROOT = /home/projects/ppc64le-pwr8-nvidia/parmetis/4.0.3/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88
LSF_ENVDIR = /opt/lsf/conf
MPI_VENDOR = openmpi
PYTHON = /home/projects/ppc64le/python/2.7.12/bin/python
CXX_VENDOR = gcc
HDF5_ROOT = /home/projects/ppc64le-pwr8-nvidia/hdf5/1.8.20/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88
HOSTTYPE = LINUXPPC64LE
SSH_CLIENT = 205.137.81.17 44298 22
JENKINS_URL = https://ascic-jenkins.sandia.gov/
LOGNAME = trilinos
LSF_LIM_API_NTRIES = 1
PATH = /ascldap/users/rabartl/install/white-ride/cmake-3.11.2/bin:/ascldap/users/rabartl/install/white-ride/ninja-1.8.2/bin:/home/projects/ppc64le/valgrind/3.12.0/bin:/home/projects/ppc64le/cmake/3.9.6/bin:/home/projects/ppc64le-pwr8-nvidia/parmetis/4.0.3/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88/bin:/home/projects/ppc64le-pwr8/metis/5.0.1/gcc/7.2.0/bin:/home/projects/ppc64le-pwr8-nvidia/netcdf/4.6.1/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88/bin:/home/projects/ppc64le-pwr8-nvidia/hdf5/1.8.20/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88/bin:/home/projects/ppc64le-pwr8-nvidia/pnetcdf-exo/1.9.0/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88/bin:/home/projects/ppc64le-pwr8-nvidia/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88/bin:/home/projects/ppc64le/java/ibm/sdk/8.0.0/bin:/home/projects/ppc64le/papi/5.5.1/bin:/home/projects/ppc64le/gcc/7.2.0/bin:/home/projects/ppc64le/binutils/2.30.0/bin:/home/projects/ppc64le-pwr8-nvidia/cuda/9.2.88/bin:/home/projects/ppc64le/python/2.7.12/bin:/home/projects/ppc64le/git/2.10.1/bin:/opt/lsf/10.1/linux3.10-glibc2.17-ppc64le/bin:/opt/lsf/10.1/linux3.10-glibc2.17-ppc64le/etc:/usr/local/bin:/usr/bin:/opt/ibutils/bin:/usr/local/sbin:/usr/sbin:/ascldap/users/trilinos/.local/bin:/ascldap/users/trilinos/bin
LSB_QUEUE = rhel7F
LSF_JOB_TIMESTAMP_VALUE = 1591897490
LSB_EXEC_HOSTTYPE = LINUXPPC64LE
GIT_PREVIOUS_SUCCESSFUL_COMMIT = 9ad245a79cf052520d97a1fe79c11a60a4136341
LSB_DJOB_HOSTFILE = /ascldap/users/trilinos/.lsbatch/1591897489.4708.hostfile
no_proxy = localhost,localnets,127.0.0.1,169.254.0.0/16,forge.sandia.gov
LSF_LIBDIR = /opt/lsf/10.1/linux3.10-glibc2.17-ppc64le/lib
CGNS_VERSION = 20180521
LSB_SUB_USER = trilinos
NODE_LABELS = ride-trilinos trilinos-ride
GIT_BRANCH_2 = origin/pull_request_changes
GIT_CHECKOUT_DIR_1 = TFW_single_configure_support_scripts
GIT_CHECKOUT_DIR_2 = TFW_testing_single_configure_prototype
JOB_OWNER_EMAIL = HRSwant@sandia.gov
PULLREQUEST_CDASH_TRACK = Pull Request
BUILD_ID = 4575
SBD_KRB5CCNAME_VAL =
LSB_RES_GET_FANOUT_INFO = Y
RUN_DISPLAY_URL = https://ascic-jenkins.sandia.gov/job/trilinos-folder/job/Trilinos_pullrequest_cuda_9.2/4575/display/redirect
JOB_COOWNERS_EMAILS = HRSwant@sandia.gov,trilinos@sandia.gov
LSB_BATCH_JID = 4708
MPI_HOME = /home/projects/ppc64le-pwr8-nvidia/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88
SUPERLU_HOME = /home/projects/ppc64le-pwr8/superlu/4.3.0/gcc/7.2.0
F77_VENDOR = gcc
KRB5CCNAME = FILE:/tmp/krb5cc_91724_bqNHm8maFh
BINUTILS_VERSION = 2.30.0
GIT_BRANCH = origin/develop
CMAKE_ROOT = /home/projects/ppc64le/cmake/3.9.6
BOOST_ROOT = /home/projects/ppc64le-pwr8/boost/1.65.1/gcc/7.2.0
VALGRIND_ROOT = /home/projects/ppc64le/valgrind/3.12.0
MPIF77 = /home/projects/ppc64le-pwr8-nvidia/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88/bin/mpif77
PARMETIS_VERSION = 4.0.3
LSB_JOBNAME = trilinos-folder/Trilinos_pullrequest_cuda_9.2
LOADEDMODULES = git/2.10.1:python/2.7.12:cuda/9.2.88:binutils/2.30.0:gcc/7.2.0:papi/5.5.1:java/ibm/sdk/8.0.0:openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88:pnetcdf-exo/1.9.0/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88:zlib/1.2.8:hdf5/1.8.20/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88:netcdf/4.6.1/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88:cgns/20180521/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88:netlib/3.8.0/gcc/7.2.0:superlu/4.3.0/gcc/7.2.0:boost/1.65.1/gcc/7.2.0:metis/5.0.1/gcc/7.2.0:parmetis/4.0.3/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88:cmake/3.9.6:valgrind/3.12.0:devpack/20180521/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88
WORKSPACE_TMP = /home/trilinos/jenkins/ride/workspace/trilinos-folder/Trilinos_pullrequest_cuda_9.2@2@tmp
GIT_BRANCH_1 = origin/master
CUDA_MANAGED_FORCE_DEVICE_ALLOC = 1
HISTCONTROL = ignoredups
PWD = /home/trilinos/jenkins/ride/workspace/trilinos-folder/Trilinos_pullrequest_cuda_9.2@2
LS_EXECCWD = /home/trilinos/jenkins/ride/workspace/trilinos-folder/Trilinos_pullrequest_cuda_9.2@2
JENKINS_SERVER_COOKIE = 248910a9cd8de38c
BUILD_DISPLAY_NAME = #4575
CXX_VERSION = 7.2.0
PYTHON_ROOT = /home/projects/ppc64le/python/2.7.12
OMPI_CXX = /home/trilinos/jenkins/ride/workspace/trilinos-folder/Trilinos_pullrequest_cuda_9.2@2/Trilinos/packages/kokkos/bin/nvcc_wrapper
SUPERLU_VERSION = 4.3.0
PULLREQUESTNUM = 7508
BINARY_TYPE_HPC =

==========================================================================================
None
PULLREQUEST_CDASH_TRACK is set. Setting CDASH_TRACK=Pull Request
Enabled packages:
-- Setting Trilinos_ENABLE_ALL_PACKAGES = ON
-- Setting Trilinos_ENABLE_TrilinosATDMConfigTests = ON
-- Setting Trilinos_ENABLE_TrilinosBuildStats = ON
-- Setting Trilinos_ENABLE_TrilinosFrameworkTests = ON

Set CWD = /home/trilinos/jenkins/ride/workspace/trilinos-folder/Trilinos_pullrequest_cuda_9.2@2/TFW_testing_single_configure_prototype
Traceback (most recent call last):
File "/home/trilinos/jenkins/ride/workspace/trilinos-folder/Trilinos_pullrequest_cuda_9.2@2/Trilinos/cmake/std/PullRequestLinuxDriverTest.py", line 701, in
returnValue = run()
File "/home/trilinos/jenkins/ride/workspace/trilinos-folder/Trilinos_pullrequest_cuda_9.2@2/Trilinos/cmake/std/PullRequestLinuxDriverTest.py", line 694, in run
'-Dsubprojects_file=../package_subproject_list.cmake'])
File "/home/projects/ppc64le/python/2.7.12/lib/python2.7/subprocess.py", line 541, in check_call
raise CalledProcessError(retcode, cmd)
subprocess.CalledProcessError: Command '['ctest', '-S', 'simple_testing.cmake', '-Dbuild_name=PR-7508-test-Trilinos_pullrequest_cuda_9.2-4575', '-Dskip_by_parts_submit=OFF', '-Dskip_update_step=ON', '-Ddashboard_model=Experimental', '-Ddashboard_track=Pull Request', '-DPARALLEL_LEVEL=64', '-DTEST_PARALLEL_LEVEL=8', '-Dbuild_dir=/home/trilinos/jenkins/ride/workspace/trilinos-folder/Trilinos_pullrequest_cuda_9.2@2/pull_request_test', '-Dconfigure_script=/home/trilinos/jenkins/ride/workspace/trilinos-folder/Trilinos_pullrequest_cuda_9.2@2/Trilinos/cmake/std/PullRequestLinuxCuda9.2TestingSettings.cmake', '-Dpackage_enables=../packageEnables.cmake', '-Dsubprojects_file=../package_subproject_list.cmake']' returned non-zero exit status 255
Build step 'Execute shell' marked build as failure
Archiving artifacts
Finished: FAILURE

Console Output (last 100 lines) : Trilinos_pullrequest_clang_9.0.0 # 950 (click to expand)

Dashboard model          = Experimental
Dashboard track          = Pull Request
Running configuration:
/projects/sems/install/rhel6-x86_64/sems/utility/cmake/3.12.2/bin/cmake 
  -C "/scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_clang_9.0.0@2/Trilinos/cmake/std/PullRequestLinuxClang9.0.0TestingSettings.cmake"
  -C "/scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_clang_9.0.0@2/packageEnables.cmake"
  -DTrilinos_ENABLE_TESTS:BOOL=ON
  -DTrilinos_PARALLEL_LINK_JOBS_LIMIT:STRING=2
  -G "Ninja"
  /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_clang_9.0.0@2/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=ascic141&field2=buildname&compare2=61&value2=PR-7508-test-Trilinos_pullrequest_clang_9.0.0-950&field3=buildstamp&compare3=61&value3=20200611-1745-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-7508-test-Trilinos_pullrequest_clang_9.0.0-950&field2=buildstamp&compare2=61&value2=20200611-1745-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-7508-test-Trilinos_pullrequest_clang_9.0.0-950&field2=buildstamp&compare2=61&value2=20200611-1745-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 of output: 437K
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: 550K
    ..................................................  Size: 600K
    ..................................................  Size: 650K
    ..................................................  Size: 699K
    ..................................................  Size: 749K
    ..................................................  Size: 799K
    ..................................................  Size: 849K
    ..................................................  Size: 900K
    ..................................................  Size: 949K
    ..................................................  Size: 1000K
    ..................................................  Size: 1049K
    ..................................................  Size: 1099K
    ..................................................  Size: 1149K
    ..................................................  Size: 1199K
    ..................................................  Size: 1249K
    ..................................................  Size: 1299K
    ..................................................  Size: 1350K
    ..................................................  Size: 1399K
    ..................................................  Size: 1449K
    ............. Size of output: 1462K
Build succeeded.
build submit error = 0
Starting testing step.
Tests succeeded.
test submit error = 0
File upload submit error = 0
_STACK = 3.2.10
JOB_COOWNERS_EMAILS = HRSwant@sandia.gov,trilinos@sandia.gov
SEMS_PARMETIS_LOCAL_COMPILER_VERSION = 4.4.7
SEMS_PARMETIS_LOCAL_PYTHON_VERSION = 2.6.6
SEMS_NETCDF_LIBRARY_PATH = /projects/sems/install/rhel6-x86_64/sems/tpl/netcdf/4.7.3/clang/9.0.0/openmpi/1.10.1/parallel/lib
GIT_URL = https://github.com/trilinos/Trilinos
SEMS_BOOST_LIBRARY_PATH = /projects/sems/install/rhel6-x86_64/sems/tpl/boost/1.63.0/clang/9.0.0/base/lib
SEMS_GCC_LOCAL_COMPILER_VERSION = 4.4.7
SNLSYSTEM = cee
MPIF77 = mpif77
SEMS_HDF5_ROOT = /projects/sems/install/rhel6-x86_64/sems/tpl/hdf5/1.10.6/clang/9.0.0/openmpi/1.10.1/parallel
SEMS_SCOTCH_INCLUDE_PATH = /projects/sems/install/rhel6-x86_64/sems/tpl/scotch/6.0.3/clang/9.0.0/openmpi/1.10.1/nopthread_64bit_parallel/include
LOADEDMODULES = sems-env:sems-git/2.10.1:sems-python/2.7.9:sems-gcc/5.3.0:sems-clang/9.0.0:sems-openmpi/1.10.1:sems-boost/1.63.0/base:sems-zlib/1.2.8/base:sems-hdf5/1.10.6/parallel:sems-netcdf/4.7.3/parallel:sems-parmetis/4.0.3/parallel:sems-scotch/6.0.3/nopthread_64bit_parallel:sems-superlu/4.3/base:sems-cmake/3.12.2:atdm-env:atdm-ninja_fortran/1.7.2
WORKSPACE_TMP = /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_clang_9.0.0@2@tmp
SEMS_CMAKE_VERSION = 3.12.2
HISTCONTROL = ignoredups
SERIAL_CXX = clang++
PWD = /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_clang_9.0.0@2
JENKINS_SERVER_COOKIE = 248910a9cd8de38c
BUILD_DISPLAY_NAME = #950
PULLREQUESTNUM = 7508
SEMS_SUPERLU_INCLUDE_PATH = /projects/sems/install/rhel6-x86_64/sems/tpl/superlu/4.3/clang/9.0.0/base/include

==========================================================================================
None
PULLREQUEST_CDASH_TRACK is set. Setting CDASH_TRACK=Pull Request
Enabled packages:
-- Setting Trilinos_ENABLE_ALL_PACKAGES = ON
-- Setting Trilinos_ENABLE_TrilinosATDMConfigTests = ON
-- Setting Trilinos_ENABLE_TrilinosBuildStats = ON
-- Setting Trilinos_ENABLE_TrilinosFrameworkTests = ON

Set CWD = /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_clang_9.0.0@2/TFW_testing_single_configure_prototype
Archiving artifacts
Finished: SUCCESS

Console Output (last 100 lines) : Trilinos_pullrequest_python_2 # 2686 (click to expand)

HUDSON_HOME = /var/lib/jenkins
TRILINOS_TARGET_BRANCH = develop
https_proxy = http://wwwproxy.sandia.gov:80
F90 = gfortran
SERIAL_F90 = gfortran
SEMS_CMAKE_ROOT = /projects/sems/install/rhel7-x86_64/sems/utility/cmake/3.10.3
JOB_COOWNERS = prwolfe,trilinos
SERIAL_FC = gfortran
BUILD_CAUSE_MANUALTRIGGER = true
HUDSON_COOKIE = 4bb3f64c-1f3c-4260-81a4-a3f739b33955
ftp_proxy = http://wwwproxy.sandia.gov:80/
QT_GRAPHICSSYSTEM_CHECKED = 1
SEMS_NINJA_FORTRAN_LOCAL_COMPILER_VERSION = 4.8.5
F77 = gfortran
TRILINOS_TARGET_REPO = https://github.com/trilinos/Trilinos
NODE_OWNER_EMAIL = ceeadmin@sandia.gov
SEMS_GIT_LOCAL_PYTHON_VERSION = 2.7.5
NODE_NAME = tr-test-4-trilinos
GIT_CHECKOUT_DIR = Trilinos
SEMS_NINJA_FORTRAN_VERSION = 1.7.2
SEMS_COMPILER_VERSION = 7.2.0
SSH_CLIENT = 205.137.81.17 57002 22
JENKINS_URL = https://ascic-jenkins.sandia.gov/
LOGNAME = trilinos
NODE_LABELS = tr-test-4-trilinos trilinos-32 trilinos-any trilinos-cloud-32 trilinos_cloud_32_node_4
PATH = /projects/sierra/linux_rh7/install/Python/2.7.15/bin:/projects/sierra/linux_rh7/install/Python/extrasbin:/projects/sems/install/rhel7-x86_64/atdm/utility/ninja_fortran/1.7.2/sbin:/projects/sems/install/rhel7-x86_64/atdm/utility/ninja_fortran/1.7.2/bin:/projects/sems/install/rhel7-x86_64/sems/utility/cmake/3.10.3/sbin:/projects/sems/install/rhel7-x86_64/sems/utility/cmake/3.10.3/bin:/projects/sems/install/rhel7-x86_64/sems/compiler/gcc/7.2.0/base/bin:/projects/sems/install/rhel7-x86_64/sems/utility/git/2.10.1/sbin:/projects/sems/install/rhel7-x86_64/sems/utility/git/2.10.1/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/ascldap/users/trilinos/.local/bin:/ascldap/users/trilinos/bin
SEMS_NINJA_FORTRAN_LOCAL_PYTHON_VERSION = 2.7.5
GIT_PREVIOUS_SUCCESSFUL_COMMIT = fb4e63e2af8af28a939232eb2f23d5d562c1aff7
no_proxy = localhost,localnets,127.0.0.1,169.254.0.0/16,forge.sandia.gov
CC = gcc
SEMS_CMAKE_LOCAL_COMPILER_VERSION = 4.8.5
JOB_OWNER_EMAIL = prwolfe@sandia.gov
PULLREQUEST_CDASH_TRACK = Pull Request
BUILD_ID = 2686
JOB_COOWNERS_EMAILS = prwolfe@sandia.gov,trilinos@sandia.gov
GIT_URL = https://github.com/trilinos/Trilinos
SEMS_GCC_LOCAL_COMPILER_VERSION = 4.8.5
LOADEDMODULES = sems-env:sems-git/2.10.1:sems-gcc/7.2.0:sems-cmake/3.10.3:atdm-env:atdm-ninja_fortran/1.7Currently Loaded Modulefiles:
  1) sems-env                   4) sems-cmake/3.10.3
  2) sems-git/2.10.1            5) atdm-env
  3) sems-gcc/7.2.0             6) atdm-ninja_fortran/1.7.2
Build name               = PR-7508-test-Trilinos_pullrequest_python_2-2686
Cur dir                  = /scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_python_2/TFW_testing_single_configure_prototype
Source dir               = /scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_python_2/Trilinos
Binary dir               = /scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_python_2/pull_request_test
Parallel level           = 20
Testing Parallel level   = 20
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         = 1
Dashboard model          = Experimental
Dashboard track          = Pull Request
Running configuration:
/projects/sems/install/rhel7-x86_64/sems/utility/cmake/3.10.3/bin/cmake 
  -C "/scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_python_2/Trilinos/cmake/std/PullRequestLinuxPython2.cmake"
  -C "/scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_python_2/packageEnables.cmake"
  -DTrilinos_ENABLE_TESTS:BOOL=ON
  -DTrilinos_PARALLEL_LINK_JOBS_LIMIT:STRING=2
  -G "Ninja"
  /scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_python_2/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=tr-test-4.novalocal&field2=buildname&compare2=61&value2=PR-7508-test-Trilinos_pullrequest_python_2-2686&field3=buildstamp&compare3=61&value3=20200611-1745-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-7508-test-Trilinos_pullrequest_python_2-2686&field2=buildstamp&compare2=61&value2=20200611-1745-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-7508-test-Trilinos_pullrequest_python_2-2686&field2=buildstamp&compare2=61&value2=20200611-1745-Pull Request
Starting configure step.
   Each . represents 1024 bytes of output
    ....................... Size of output: 22K
configure submit error = 0
Configure suceeded.
Starting build step.
   Each symbol represents 1024 bytes of output.
    . Size of output: 0K
Build succeeded.
build submit error = 0
Starting testing step.
Tests succeeded.
test submit error = 0
File upload submit error = 0
.2
WORKSPACE_TMP = /scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_python_2@tmp
SEMS_CMAKE_VERSION = 3.10.3
HISTCONTROL = ignoredups
SERIAL_CXX = g++
PWD = /scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_python_2
JENKINS_SERVER_COOKIE = 248910a9cd8de38c
BUILD_DISPLAY_NAME = #2686
PULLREQUESTNUM = 7508

==========================================================================================
None
PULLREQUEST_CDASH_TRACK is set. Setting CDASH_TRACK=Pull Request
Enabled packages:
-- Setting Trilinos_ENABLE_TrilinosFrameworkTests = ON

Set CWD = /scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_python_2/TFW_testing_single_configure_prototype
Archiving artifacts
Finished: SUCCESS

Console Output (last 100 lines) : Trilinos_pullrequest_python_3 # 2695 (click to expand)

HUDSON_HOME = /var/lib/jenkins
TRILINOS_TARGET_BRANCH = develop
https_proxy = http://wwwproxy.sandia.gov:80
F90 = gfortran
SERIAL_F90 = gfortran
SEMS_CMAKE_ROOT = /projects/sems/install/rhel7-x86_64/sems/utility/cmake/3.10.3
JOB_COOWNERS = prwolfe,trilinos
SERIAL_FC = gfortran
BUILD_CAUSE_MANUALTRIGGER = true
HUDSON_COOKIE = 761ea1fc-3e8d-4ac4-b4de-06d3c01fcee1
ftp_proxy = http://wwwproxy.sandia.gov:80/
QT_GRAPHICSSYSTEM_CHECKED = 1
SEMS_NINJA_FORTRAN_LOCAL_COMPILER_VERSION = 4.8.5
F77 = gfortran
TRILINOS_TARGET_REPO = https://github.com/trilinos/Trilinos
NODE_OWNER_EMAIL = ceeadmin@sandia.gov
SEMS_GIT_LOCAL_PYTHON_VERSION = 2.7.5
NODE_NAME = tr-test-4-trilinos
GIT_CHECKOUT_DIR = Trilinos
SEMS_NINJA_FORTRAN_VERSION = 1.7.2
SEMS_COMPILER_VERSION = 7.2.0
SSH_CLIENT = 205.137.81.17 57002 22
JENKINS_URL = https://ascic-jenkins.sandia.gov/
LOGNAME = trilinos
NODE_LABELS = tr-test-4-trilinos trilinos-32 trilinos-any trilinos-cloud-32 trilinos_cloud_32_node_4
PATH = /projects/sierra/linux_rh7/install/Python/3.6.3/bin:/projects/sierra/linux_rh7/install/Python/extrasbin:/projects/sems/install/rhel7-x86_64/atdm/utility/ninja_fortran/1.7.2/sbin:/projects/sems/install/rhel7-x86_64/atdm/utility/ninja_fortran/1.7.2/bin:/projects/sems/install/rhel7-x86_64/sems/utility/cmake/3.10.3/sbin:/projects/sems/install/rhel7-x86_64/sems/utility/cmake/3.10.3/bin:/projects/sems/install/rhel7-x86_64/sems/compiler/gcc/7.2.0/base/bin:/projects/sems/install/rhel7-x86_64/sems/utility/git/2.10.1/sbin:/projects/sems/install/rhel7-x86_64/sems/utility/git/2.10.1/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/ascldap/users/trilinos/.local/bin:/ascldap/users/trilinos/bin
SEMS_NINJA_FORTRAN_LOCAL_PYTHON_VERSION = 2.7.5
GIT_PREVIOUS_SUCCESSFUL_COMMIT = fb4e63e2af8af28a939232eb2f23d5d562c1aff7
no_proxy = localhost,localnets,127.0.0.1,169.254.0.0/16,forge.sandia.gov
CC = gcc
SEMS_CMAKE_LOCAL_COMPILER_VERSION = 4.8.5
JOB_OWNER_EMAIL = prwolfe@sandia.gov
PULLREQUEST_CDASH_TRACK = Pull Request
BUILD_ID = 2695
JOB_COOWNERS_EMAILS = prwolfe@sandia.gov,trilinos@sandia.gov
GIT_URL = https://github.com/trilinos/Trilinos
SEMS_GCC_LOCAL_COMPILER_VERSION = 4.8.5
LOADEDMODULES = sems-env:sems-git/2.10.1:sems-gcc/7.2.0:sems-cmake/3.10.3:atdm-env:atdm-ninja_fortran/1.7.Currently Loaded Modulefiles:
  1) sems-env                   4) sems-cmake/3.10.3
  2) sems-git/2.10.1            5) atdm-env
  3) sems-gcc/7.2.0             6) atdm-ninja_fortran/1.7.2
Build name               = PR-7508-test-Trilinos_pullrequest_python_3-2695
Cur dir                  = /scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_python_3/TFW_testing_single_configure_prototype
Source dir               = /scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_python_3/Trilinos
Binary dir               = /scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_python_3/pull_request_test
Parallel level           = 20
Testing Parallel level   = 20
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         = 1
Dashboard model          = Experimental
Dashboard track          = Pull Request
Running configuration:
/projects/sems/install/rhel7-x86_64/sems/utility/cmake/3.10.3/bin/cmake 
  -C "/scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_python_3/Trilinos/cmake/std/PullRequestLinuxPython3.cmake"
  -C "/scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_python_3/packageEnables.cmake"
  -DTrilinos_ENABLE_TESTS:BOOL=ON
  -DTrilinos_PARALLEL_LINK_JOBS_LIMIT:STRING=2
  -G "Ninja"
  /scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_python_3/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=tr-test-4.novalocal&field2=buildname&compare2=61&value2=PR-7508-test-Trilinos_pullrequest_python_3-2695&field3=buildstamp&compare3=61&value3=20200611-1745-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-7508-test-Trilinos_pullrequest_python_3-2695&field2=buildstamp&compare2=61&value2=20200611-1745-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-7508-test-Trilinos_pullrequest_python_3-2695&field2=buildstamp&compare2=61&value2=20200611-1745-Pull Request
Starting configure step.
   Each . represents 1024 bytes of output
    ....................... Size of output: 22K
configure submit error = 0
Configure suceeded.
Starting build step.
   Each symbol represents 1024 bytes of output.
    . Size of output: 0K
Build succeeded.
build submit error = 0
Starting testing step.
Tests succeeded.
test submit error = 0
File upload submit error = 0
2
WORKSPACE_TMP = /scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_python_3@tmp
SEMS_CMAKE_VERSION = 3.10.3
HISTCONTROL = ignoredups
SERIAL_CXX = g++
PWD = /scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_python_3
JENKINS_SERVER_COOKIE = 248910a9cd8de38c
BUILD_DISPLAY_NAME = #2695
PULLREQUESTNUM = 7508

==========================================================================================
None
PULLREQUEST_CDASH_TRACK is set. Setting CDASH_TRACK=Pull Request
Enabled packages:
-- Setting Trilinos_ENABLE_TrilinosFrameworkTests = ON

Set CWD = /scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_python_3/TFW_testing_single_configure_prototype
Archiving artifacts
Finished: SUCCESS


CDash Test Results for PR# 7508.


Wiki: How to Reproduce PR Testing Builds and Errors.

…nos#7376)

These worked on all of the PR builds where they are turned on (excpet for
Intel builds due to a know issue with Intel Fortran, see trilinos#7376).

This makes it so that none of the Trilinos PR builds with have build stats
compiler wrappers enabled.  But at some later time, it will be easy to turn
them on after some more review gets done.
@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: 2935
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;ATDM DevOps;client: ATDM;type: enhancement
PULLREQUESTNUM 7508
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH 7376-build-stats
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA afca3be
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 8937932

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0_serial

  • Build Num: 568
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;ATDM DevOps;client: ATDM;type: enhancement
PULLREQUESTNUM 7508
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH 7376-build-stats
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA afca3be
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 8937932

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0_debug

  • Build Num: 1064
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;ATDM DevOps;client: ATDM;type: enhancement
PULLREQUESTNUM 7508
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH 7376-build-stats
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA afca3be
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 8937932

Build Information

Test Name: Trilinos_pullrequest_intel_17.0.1

  • Build Num: 8428
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;ATDM DevOps;client: ATDM;type: enhancement
PULLREQUESTNUM 7508
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH 7376-build-stats
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA afca3be
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 8937932

Build Information

Test Name: Trilinos_pullrequest_cuda_9.2

  • Build Num: 6163
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;ATDM DevOps;client: ATDM;type: enhancement
PULLREQUESTNUM 7508
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH 7376-build-stats
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA afca3be
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 8937932

Build Information

Test Name: Trilinos_pullrequest_clang_10.0.0

  • Build Num: 1298
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;ATDM DevOps;client: ATDM;type: enhancement
PULLREQUESTNUM 7508
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH 7376-build-stats
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA afca3be
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 8937932

Build Information

Test Name: Trilinos_pullrequest_python_3

  • Build Num: 4060
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;ATDM DevOps;client: ATDM;type: enhancement
PULLREQUESTNUM 7508
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH 7376-build-stats
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA afca3be
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 8937932

Using Repos:

Repo: TRILINOS (bartlettroscoe/Trilinos)
  • Branch: 7376-build-stats
  • SHA: afca3be
  • Mode: TEST_REPO

Pull Request Author: bartlettroscoe

@bartlettroscoe
Copy link
Member Author

As of commit afca3be the build stats wrappers should be off in all of the PR builds for now. Hopefully this will facilitate getting this PR merged sooner rather than later.

@bartlettroscoe
Copy link
Member Author

CC: @rppawlo, @jjellio, @jeforster

So here is a pretty cool thing about the TrilinosBuildStats_Results test. With it, you can see how the max values change over time for any given build. For example, in this query (click "Show Matching Output" in the upper right) you can see how the max(elapsed_real_time_sec) changed since 2020-10-01. It went from the most expensive being a Panzer file as shown here on 2020-10-01 showing:

Full Project: max(elapsed_real_time_sec) = 351.56 (packages/panzer/disc-fe/src/CMakeFiles/panzer-disc-fe.dir/Panzer_IntegrationValues2.cpp.o)

to being a Zoltan2 file a shown here on 2020-12-01 showing:

Full Project: max(elapsed_real_time_sec) = 271.92 (packages/zoltan2/test/driver/CMakeFiles/Zoltan2_test_driver.dir/test_driver.cpp.o)

As shown shown in this query, since 2020-12-03, we can now monitor these build stats on a package-by-package basis as well. (Note the build stats for 2020-02-03 did not include all of the build targets but that was fixed the next day.)

It would be good to get this PR merged so Trilinos developers and users can take advantage of this and so we can think about next steps on how to use this information. (For example, I know that @jeforster is working on some experimentation with Tpetra to bring down build times where this data would help.)

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

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;ATDM DevOps;client: ATDM;type: enhancement
PULLREQUESTNUM 7508
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH 7376-build-stats
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA afca3be
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 8937932

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0_serial

  • Build Num: 568
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;ATDM DevOps;client: ATDM;type: enhancement
PULLREQUESTNUM 7508
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH 7376-build-stats
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA afca3be
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 8937932

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0_debug

  • Build Num: 1064
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;ATDM DevOps;client: ATDM;type: enhancement
PULLREQUESTNUM 7508
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH 7376-build-stats
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA afca3be
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 8937932

Build Information

Test Name: Trilinos_pullrequest_intel_17.0.1

  • Build Num: 8428
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;ATDM DevOps;client: ATDM;type: enhancement
PULLREQUESTNUM 7508
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH 7376-build-stats
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA afca3be
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 8937932

Build Information

Test Name: Trilinos_pullrequest_cuda_9.2

  • Build Num: 6163
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;ATDM DevOps;client: ATDM;type: enhancement
PULLREQUESTNUM 7508
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH 7376-build-stats
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA afca3be
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 8937932

Build Information

Test Name: Trilinos_pullrequest_clang_10.0.0

  • Build Num: 1298
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;ATDM DevOps;client: ATDM;type: enhancement
PULLREQUESTNUM 7508
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH 7376-build-stats
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA afca3be
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 8937932

Build Information

Test Name: Trilinos_pullrequest_python_3

  • Build Num: 4060
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;ATDM DevOps;client: ATDM;type: enhancement
PULLREQUESTNUM 7508
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH 7376-build-stats
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA afca3be
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 8937932
Console Output (last 100 lines) : Trilinos_pullrequest_gcc_8.3.0 # 2935 (click to expand)

    ..................................................  Size: 149K
    ..................................................  Size: 199K
    ..................................................  Size: 249K
    ..................................................  Size: 299K
    ..................................................  Size: 349K
    ..................................................  Size: 399K
    ..................................................  Size: 449K
    ..................................................  Size: 499K
    ..................................................  Size: 549K
    ..................................................  Size: 599K
    ..................................................  Size: 649K
    ..................................................  Size: 699K
    ..................................................  Size: 749K
    ..................................................  Size: 799K
    ..................................................  Size: 849K
    ..................................................  Size: 899K
    ..................................................  Size: 949K
    ..................................................  Size: 999K
    ..................................................  Size: 1049K
    ..................................................  Size: 1099K
    ..................................................  Size: 1149K
    ..................................................  Size: 1199K
    ..................................................  Size: 1249K
    ..................................................  Size: 1299K
    ..................................................  Size: 1350K
    ..................................................  Size: 1399K
    ..................................................  Size: 1449K
    ..................................................  Size: 1499K
    ..................................................  Size: 1549K
    ..................................................  Size: 1600K
    ..................................................  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 of output: 2879K
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
-- 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/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-7508-test-Trilinos_pullrequest_gcc_8.3.0-2935
-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

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

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

    ..................................................  Size: 50K
    ..................................................  Size: 100K
    ..................................................  Size: 150K
    ..................................................  Size: 200K
    ..................................................  Size: 250K
    ..................................................  Size: 300K
    ..................................................  Size: 350K
    ........................... Size of output: 376K
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: 2153K
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
-- 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/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-7508-test-Trilinos_pullrequest_gcc_7.2.0_serial-568
-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 # 1064 (click to expand)

  /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-7508-test-Trilinos_pullrequest_gcc_7.2.0_debug-1064&field3=buildstamp&compare3=61&value3=20201208-1704-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-7508-test-Trilinos_pullrequest_gcc_7.2.0_debug-1064&field2=buildstamp&compare2=61&value2=20201208-1704-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-7508-test-Trilinos_pullrequest_gcc_7.2.0_debug-1064&field2=buildstamp&compare2=61&value2=20201208-1704-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: 451K
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: 1718K
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
-- 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/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-7508-test-Trilinos_pullrequest_gcc_7.2.0_debug-1064
-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 # 8428 (click to expand)

    ..................................................  Size: 450K
    ....................... Size of output: 472K
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: 950K
    ..................................................  Size: 999K
    ..................................................  Size: 1049K
    ..................................................  Size: 1099K
    ..................................................  Size: 1149K
    ..................................................  Size: 1199K
    ..................................................  Size: 1250K
    ..................................................  Size: 1300K
    ..................................................  Size: 1349K
    ..................................................  Size: 1399K
    ..................................................  Size: 1449K
    ..................................................  Size: 1499K
    ..................................................  Size: 1549K
    ..................................................  Size: 1599K
    ..................................................  Size: 1649K
    ..................................................  Size: 1700K
    ..................................................  Size: 1750K
    ..................................................  Size: 1799K
    ..................................................  Size: 1849K
    ..................................................  Size: 1899K
    ..................................................  Size: 1950K
    ..................................................  Size: 2000K
    ..................................................  Size: 2049K
    ..................................................  Size: 2099K
    ..................................................  Size: 2149K
    ..................................................  Size: 2199K
    ..................................................  Size: 2249K
    ..................................................  Size: 2299K
    ..................................................  Size: 2350K
    ..................................................  Size: 2399K
    ..................................................  Size: 2449K
    ........................ Size of output: 2473K
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
-- 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/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-7508-test-Trilinos_pullrequest_intel_17.0.1-8428
-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

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

Console Output (last 100 lines) : Trilinos_pullrequest_cuda_9.2 # 6163 (click to expand)

    ..................................................  Size: 2200K
    ..................................................  Size: 2249K
    ..................................................  Size: 2300K
    ..................................................  Size: 2350K
    ..................................................  Size: 2399K
    ..................................................  Size: 2449K
    ..................................................  Size: 2500K
    ..................................................  Size: 2550K
    ..................................................  Size: 2599K
    ..................................................  Size: 2650K
    ..................................................  Size: 2699K
    ..................................................  Size: 2750K
    ..................................................  Size: 2799K
    ..................................................  Size: 2850K
    ..................................................  Size: 2899K
    ..................................................  Size: 2949K
    ..................................................  Size: 2999K
    ..................................................  Size: 3049K
    ..................................................  Size: 3099K
    ..................................................  Size: 3150K
    ..................................................  Size: 3199K
    ..................................................  Size: 3250K
    ..................................................  Size: 3299K
    ..................................................  Size: 3350K
    ..................................................  Size: 3400K
    ..................................................  Size: 3449K
    ..................................................  Size: 3499K
    ..................................................  Size: 3550K
    ..................................................  Size: 3599K
    ..................................................  Size: 3650K
    ..................................................  Size: 3700K
    ..................................................  Size: 3750K
    ..................................................  Size: 3800K
    ..................................................  Size: 3850K
    ..................................................  Size: 3899K
    ..................................................  Size: 3950K
    ..................................................  Size: 3999K
    ..................................................  Size: 4049K
    ..................................................  Size: 4099K
    ..................................................  Size: 4149K
    ..................................................  Size: 4199K
    ..................................................  Size: 4249K
    ..................................................  Size: 4299K
    ..................................................  Size: 4349K
    ..................................................  Size: 4399K
    ..................................................  Size: 4449K
    ..................................................  Size: 4499K
    ..................................................  Size: 4549K
    ..................................................  Size: 4599K
    ..................................................  Size: 4649K
    ..................................................  Size: 4699K
    .......................... Size of output: 4726K
Build succeeded.
build submit error = 0
Starting testing step.
CMake Error at /home/trilinos/jenkins/ride/workspace/trilinos-folder/Trilinos_pullrequest_cuda_9.2/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
-- 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 /home/trilinos/jenkins/ride/workspace/trilinos-folder/Trilinos_pullrequest_cuda_9.2/TFW_testing_single_configure_prototype
--- OK

--- ctest command:
--- cmd = ctest
-S
simple_testing.cmake
-Dbuild_name=PR-7508-test-Trilinos_pullrequest_cuda_9.2-6163
-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_9.2/pull_request_test
-Dconfigure_script=/home/trilinos/jenkins/ride/workspace/trilinos-folder/Trilinos_pullrequest_cuda_9.2/Trilinos/cmake/std/PullRequestLinuxCuda9.2TestingSettings.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 # 1298 (click to expand)

    ..................................................  Size: 1599K
    ..................................................  Size: 1649K
    ..................................................  Size: 1699K
    ..................................................  Size: 1749K
    ..................................................  Size: 1799K
    ..................................................  Size: 1850K
    ..................................................  Size: 1899K
    ..................................................  Size: 1949K
    ..................................................  Size: 1999K
    ..................................................  Size: 2050K
    ..................................................  Size: 2099K
    ..................................................  Size: 2150K
    ..................................................  Size: 2199K
    ..................................................  Size: 2249K
    ..................................................  Size: 2299K
    ..................................................  Size: 2349K
    ..................................................  Size: 2399K
    ..................................................  Size: 2450K
    ..................................................  Size: 2500K
    ..................................................  Size: 2549K
    ..................................................  Size: 2600K
    ..................................................  Size: 2649K
    ..................................................  Size: 2700K
    ..................................................  Size: 2749K
    ..................................................  Size: 2800K
    ..................................................  Size: 2850K
    ..................................................  Size: 2899K
    ..................................................  Size: 2950K
    ..................................................  Size: 3000K
    ..................................................  Size: 3049K
    ..................................................  Size: 3099K
    ..................................................  Size: 3149K
    ..................................................  Size: 3199K
    ..................................................  Size: 3249K
    ..................................................  Size: 3299K
    ..................................................  Size: 3350K
    ..................................................  Size: 3400K
    ..................................................  Size: 3450K
    ..................................................  Size: 3499K
    ..................................................  Size: 3549K
    ..................................................  Size: 3599K
    ..................................................  Size: 3650K
    ..................................................  Size: 3699K
    ..................................................  Size: 3749K
    ..................................................  Size: 3800K
    ..................................................  Size: 3850K
    ..................................................  Size: 3900K
    ..................................................  Size: 3950K
    ..................................................  Size: 4000K
    ..................................................  Size: 4050K
    ..................................................  Size: 4100K
    ..................................................  Size: 4149K
    ..................................................  Size: 4199K
    ..................................................  Size: 4249K
    ..................................................  Size: 4299K
    .... Size of output: 4303K
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
-- 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/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-7508-test-Trilinos_pullrequest_clang_10.0.0-1298
-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

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

Console Output (last 100 lines) : Trilinos_pullrequest_python_3 # 4060 (click to expand)

--- WORKSPACE_TMP = /scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_python_3@tmp
--- JOB_OWNER = prwolfe
--- EXECUTOR_NUMBER
--- JOB_COOWNERS = prwolfe,trilinos
--- NODE_LABELS
--- GIT_URL
--- LOGNAME
--- CVS_RSH
--- QTLIB
--- HUDSON_HOME
--- SSH_CONNECTION
--- NODE_NAME
--- MODULESHOME
--- 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 = 4060
--- TRILINOS_SOURCE_BRANCH = 7376-build-stats
--- 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
--- CXX
--- F77
--- F90
--- FC
--- 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
--- SERIAL_CXX
--- SERIAL_F77
--- SERIAL_F90
--- SERIAL_FC
--- 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-7508-test-Trilinos_pullrequest_python_3-4060
-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

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


CDash Test Results for PR# 7508.


Wiki: How to Reproduce PR Testing Builds and Errors.

@csiefer2
Copy link
Member

csiefer2 commented Dec 8, 2020

Is this info going to be collected somewhere?

@bartlettroscoe
Copy link
Member Author

Is this info going to be collected somewhere?

@csiefer2, it is being collected on CDash. You just run CDash queries to view it. It would be pretty easy to write a Python script that pulled down data from CDash and plotted just about anything you wanted to see.

I will bring ideas for using this data t the next Trilinos Developers meeting.

@bartlettroscoe bartlettroscoe added the AT: RETEST Causes the PR autotester to run a new round of PR tests on the next iteration label Dec 8, 2020
@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: 2941
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;AT: RETEST;ATDM DevOps;client: ATDM;type: enhancement
PULLREQUESTNUM 7508
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH 7376-build-stats
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA afca3be
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 8937932

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0_serial

  • Build Num: 574
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;AT: RETEST;ATDM DevOps;client: ATDM;type: enhancement
PULLREQUESTNUM 7508
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH 7376-build-stats
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA afca3be
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 8937932

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0_debug

  • Build Num: 1070
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;AT: RETEST;ATDM DevOps;client: ATDM;type: enhancement
PULLREQUESTNUM 7508
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH 7376-build-stats
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA afca3be
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 8937932

Build Information

Test Name: Trilinos_pullrequest_intel_17.0.1

  • Build Num: 8434
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;AT: RETEST;ATDM DevOps;client: ATDM;type: enhancement
PULLREQUESTNUM 7508
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH 7376-build-stats
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA afca3be
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 8937932

Build Information

Test Name: Trilinos_pullrequest_cuda_9.2

  • Build Num: 6169
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;AT: RETEST;ATDM DevOps;client: ATDM;type: enhancement
PULLREQUESTNUM 7508
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH 7376-build-stats
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA afca3be
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 8937932

Build Information

Test Name: Trilinos_pullrequest_clang_10.0.0

  • Build Num: 1304
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;AT: RETEST;ATDM DevOps;client: ATDM;type: enhancement
PULLREQUESTNUM 7508
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH 7376-build-stats
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA afca3be
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 8937932

Build Information

Test Name: Trilinos_pullrequest_python_3

  • Build Num: 4065
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;AT: RETEST;ATDM DevOps;client: ATDM;type: enhancement
PULLREQUESTNUM 7508
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH 7376-build-stats
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA afca3be
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 8937932

Using Repos:

Repo: TRILINOS (bartlettroscoe/Trilinos)
  • Branch: 7376-build-stats
  • SHA: afca3be
  • Mode: TEST_REPO

Pull Request Author: bartlettroscoe

@bartlettroscoe
Copy link
Member Author

Shoot, the last PR testing iteration shown above failed due to a non-related test failure KokkosCore_UnitTest_CudaTimingBased_MPI_1 shown in the cuda_9.2 PR build here showing:

[==========] Running 2 tests from 1 test case.
[----------] Global test environment set-up.
[----------] 2 tests from cuda
[ RUN      ] cuda.debug_serial_execution
[       OK ] cuda.debug_serial_execution (118 ms)
[ RUN      ] cuda.debug_pin_um_to_host
Time CudaSpace: 0.056514 CudaUVMSpace_1: 0.059909 CudaUVMSpace_2: 0.059805 CudaPinnedHostSpace: 0.766980 CudaUVMSpace_Pinned: 0.194805
/home/trilinos/jenkins/ride/workspace/trilinos-folder/Trilinos_pullrequest_cuda_9.2/Trilinos/packages/kokkos/core/unit_test/cuda/TestCuda_DebugPinUVMSpace.cpp:128: Failure
Value of: passed
  Actual: false
Expected: true
[  FAILED  ] cuda.debug_pin_um_to_host (1219 ms)
[----------] 2 tests from cuda (1337 ms total)

[----------] Global test environment tear-down
[==========] 2 tests from 1 test case ran. (1338 ms total)
[  PASSED  ] 1 test.
[  FAILED  ] 1 test, listed below:
[  FAILED  ] cuda.debug_pin_um_to_host

 1 FAILED TEST
-------------------------------------------------------
Primary job  terminated normally, but 1 process returned
a non-zero exit code.. Per user-direction, the job has been aborted.
-------------------------------------------------------
--------------------------------------------------------------------------
mpiexec detected that one or more processes exited with non-zero status, thus causing
the job to be terminated. The first process to do so was:

  Process name: [[9319,1],0]
  Exit code:    1
--------------------------------------------------------------------------

According to this query this test only seems to be failing randomly in this PR build showing:

Site Build Name Test Name Status Time Proc Time Details Build Time Processors
ride14 PR-7508-test-Trilinos_pullrequest_cuda_9.2-6163 KokkosCore_UnitTest_CudaTimingBased_MPI_1 Failed 3s 700ms 3s 700ms Completed (Failed) 2020-12-08T10:05:47 MST 1
ride11 PR-7508-test-Trilinos_pullrequest_cuda_9.2-6151 KokkosCore_UnitTest_CudaTimingBased_MPI_1 Failed 3s 330ms 3s 330ms Completed (Failed) 2020-12-04T18:50:12 MST 1
ride10 PR-7508-test-Trilinos_pullrequest_cuda_9.2-6149 KokkosCore_UnitTest_CudaTimingBased_MPI_1 Failed 3s 390ms 3s 390ms Completed (Failed) 2020-12-04T13:21:43 MST 1
ride13 PR-7508-test-Trilinos_pullrequest_cuda_9.2-6144 KokkosCore_UnitTest_CudaTimingBased_MPI_1 Failed 4s 160ms 4s 160ms Completed (Failed) 2020-12-04T00:34:49 MST 1

It seems impossible that this PR could be trigging that test failure since the last PR testing iteration does not even have build stats compiler wrappers being used.

If you look at this query, Kokkos tests are getting enabled and run on other PRs as recent as for PRs #8392 on 2020-12-02. But there are not a lot of PR iterations that enable Kokkos tests over the month of Nov.

Let's see what the next PR iteration produces.

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

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;AT: RETEST;ATDM DevOps;client: ATDM;type: enhancement
PULLREQUESTNUM 7508
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH 7376-build-stats
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA afca3be
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 8937932

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0_serial

  • Build Num: 574
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;AT: RETEST;ATDM DevOps;client: ATDM;type: enhancement
PULLREQUESTNUM 7508
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH 7376-build-stats
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA afca3be
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 8937932

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0_debug

  • Build Num: 1070
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;AT: RETEST;ATDM DevOps;client: ATDM;type: enhancement
PULLREQUESTNUM 7508
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH 7376-build-stats
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA afca3be
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 8937932

Build Information

Test Name: Trilinos_pullrequest_intel_17.0.1

  • Build Num: 8434
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;AT: RETEST;ATDM DevOps;client: ATDM;type: enhancement
PULLREQUESTNUM 7508
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH 7376-build-stats
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA afca3be
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 8937932

Build Information

Test Name: Trilinos_pullrequest_cuda_9.2

  • Build Num: 6169
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;AT: RETEST;ATDM DevOps;client: ATDM;type: enhancement
PULLREQUESTNUM 7508
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH 7376-build-stats
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA afca3be
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 8937932

Build Information

Test Name: Trilinos_pullrequest_clang_10.0.0

  • Build Num: 1304
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;AT: RETEST;ATDM DevOps;client: ATDM;type: enhancement
PULLREQUESTNUM 7508
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH 7376-build-stats
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA afca3be
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 8937932

Build Information

Test Name: Trilinos_pullrequest_python_3

  • Build Num: 4065
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;AT: RETEST;ATDM DevOps;client: ATDM;type: enhancement
PULLREQUESTNUM 7508
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH 7376-build-stats
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA afca3be
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 8937932


CDash Test Results for PR# 7508.

@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 Dec 9, 2020
@trilinos-autotester
Copy link
Contributor

Status Flag 'Pre-Merge Inspection' - - This Pull Request Requires Inspection... The code must be inspected by a member of the Team before Testing/Merging
THE LAST COMMIT TO THIS PULL REQUEST HAS NOT BEEN REVIEWED YET!

@trilinos-autotester
Copy link
Contributor

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

@jjellio
Copy link
Contributor

jjellio commented Dec 9, 2020

@bartlettroscoe Can we touch base on what you need from me?
I have a branch (old) with edits to make Fortran, AR, and LD work (captures static / shared libraries).

As for rebuilds - When I worked on the Fortran/Cray issues, it was triggering a rebuild because CMAKE_CXX_COMPILER was detected as changed. I'm guessing the Cache is getting the original unwrapped compiler, and then it is updated to the wrapped version. Then, when Cmake is rerun for any reason (by simply running make again) - it gets confused and reconfigures, which triggers a full rebuild because it thinks the compiler has changed.
(All speculation - I observed rebuilds like this on Mutrino)

@bartlettroscoe
Copy link
Member Author

@rppawlo and @jjellio, this current branch is ready to merge. It passed the last round of PR builds and it only currently enabled in the ATDM Trilinos builds.

Then we can create new PRs for the remaining issues outlined in #7376.

@bartlettroscoe
Copy link
Member Author

Can we touch base on what you need from me?

@jjellio, I will contact you offline.

I have a branch (old) with edits to make Fortran, AR, and LD work (captures static / shared libraries).

That is great news. After this PR is merged to 'develop', can we work together create a new branch to integrate your fixes for these?

@bartlettroscoe
Copy link
Member Author

As for rebuilds ...

@jjellio, as I showed and concluded toward the bottom of the above comment I am not sure the build stats wrapper scripts are actually triggering rebuilds. If they were triggering rebuilds, we would see very expensive builds every day in the ATDM Trilinos builds and we are not seeing that. For example, for the build Trilinos-atdm-ats2-cuda-10.1.243-gnu-7.3.1-spmpi-rolling_static_opt as shown here the last couple of days, some days that CUDA build rebuilds on just a few minutes.

@trilinos-autotester
Copy link
Contributor

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

Copy link
Contributor

@rppawlo rppawlo left a comment

Choose a reason for hiding this comment

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

Looks good! Only had a question on a couple of csv files.

@@ -0,0 +1,22 @@
avg_size_unshared_text_area_Kb,max_resident_size_Kb,cpu_sec_user_mode,elapsed_real_time_sec,num_involuntary_context_switch,FileName,symbol_text_local,FileSize,cpu_sec_kernel_mode,num_filesystem_outputs
Copy link
Contributor

Choose a reason for hiding this comment

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

Should this csv file be included? Looks like it is output from a run that was accidentally included.

Copy link
Member Author

Choose a reason for hiding this comment

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

@rppawlo, this file gets used in some automated system-level tests of the summarize_build_stats.py tool. See:

g_testBaseDir+"/build_stats.big.small.csv",

@@ -0,0 +1,5 @@
avg_size_unshared_text_area_Kb,max_resident_size_Kb,cpu_sec_user_mode,elapsed_real_time_sec,num_involuntary_context_switch,FileName,symbol_text_local,FileSize,cpu_sec_kernel_mode,num_filesystem_outputs
Copy link
Contributor

Choose a reason for hiding this comment

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

Another csv file that probably should not be here?

Copy link
Member Author

Choose a reason for hiding this comment

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

@rppawlo, this file also gets used in automated testing. See:

g_testBaseDir+"/build_stats.incomplete_row.csv",

@rppawlo rppawlo removed the AT: AUTOMERGE Causes the PR autotester to automatically merge the PR branch once approvals are completed label Dec 10, 2020
@rppawlo
Copy link
Contributor

rppawlo commented Dec 10, 2020

@bartlettroscoe - I removed the automerge in case you wanted to remove the csv files.

@trilinos-autotester
Copy link
Contributor

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

@trilinos-autotester
Copy link
Contributor

Status Flag 'Pull Request AutoTester' - AutoMerge IS ENABLED, but the Label AT: AUTOMERGE is not set. Either set Label AT: AUTOMERGE or manually merge the PR...

@bartlettroscoe bartlettroscoe merged commit 2b90697 into trilinos:develop Dec 10, 2020
@bartlettroscoe
Copy link
Member Author

Thanks for the review @rppawlo! I click the merged button.

@bartlettroscoe
Copy link
Member Author

Related to:

  • SESW-203

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.

7 participants