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

ATDM: Recursively set group and perms on install dir (ATDV-241) #7285

Conversation

bartlettroscoe
Copy link
Member

This should fix all of the install ownership and permissions issues described in ATDV-241. This pulls in the updates from TriBITS in TriBITSPub/TriBITS#315 and applies that to the ATDM Trilinos configuration.

How was this tested?

On the CEE RHE7 machine 'ews00232' I did:

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

$  env \
      Trilinos_PACKAGES=Kokkos,Teuchos \
      ATDM_CONFIG_USE_JENKINS_INSTALL_DEFAULTS=1 \
     CTEST_DO_INSTALL=ON CTEST_DO_SUBMIT=OFF \
  ./ctest-s-local-test-driver.sh \
    sems-rhel6-gnu-7.2.0-openmp-release

That submitted to:

(Something is broken with MPI).

But more importantly, this installed to:

 ls -ld /projects/atdm_devops/trilinos_installs/2020-04-29/
drwxrwxr-x 3 rabartl wg-run-as-atdm-devops 4096 Apr 29 19:04 /projects/atdm_devops/trilinos_installs/2020-04-29/

$ ls -ld /projects/atdm_devops/trilinos_installs/2020-04-29/sems-rhel7-intel-18.0.5-openmp-shared-release-debug
drwxrwxr-x 6 rabartl wg-run-as-atdm-devops 4096 Apr 29 19:04 /projects/atdm_devops/trilinos_installs/2020-04-29/sems-rhel7-intel-18.0.5-openmp-shared-release-debug

$ ls -ld /projects/atdm_devops/trilinos_installs/2020-04-29/sems-rhel7-intel-18.0.5-openmp-shared-release-debug/share/atdm-trilinos/sems-rhel7
drwxrwxr-x 2 rabartl wg-run-as-atdm-devops 4096 Apr 29 19:04 /projects/atdm_devops/trilinos_installs/2020-04-29/sems-rhel7-intel-18.0.5-openmp-shared-release-debug/share/atdm-trilinos/sems-rhel7

Note the owning group 'wg-run-as-admin-devops`.

Note the group read/write permissions and the group read/write and other read permissions on the installed 'sems-rhel7' subdir.

This generated the permissions fixup script:

#!/bin/sh

#
# Configured inputs
#

# Base install dir and subdirs where last element in array gives CMAKE_INSTALL_PREFIX
SET(projectInstallBaseDir "/projects/atdm_devops/trilinos_installs/2020-04-29")
SET(projectSubdirPathsArray "sems-rhel7-intel-18.0.5-openmp-shared-release-debug")
# Group and permissions
SET(PROJECT_MAKE_INSTALL_GROUP "wg-run-as-atdm-devops")
SET(PROJECT_MAKE_INSTALL_PERMS_CHANGE "g+rwX,o+rX")

# Helper functions

SET(CHMOD_CHGRP_IDX 0)

FUNCTION(ECHO_AND_RUN_CMND)
  STRING(REPLACE ";" " " CMND_STR "${ARGN}")
  MESSAGE(STATUS "${CHMOD_CHGRP_IDX}: Running: ${CMND_STR}")
  EXECUTE_PROCESS(COMMAND ${ARGN} RESULT_VARIABLE RTN_CODE)
  IF (NOT RTN_CODE EQUAL 0)
    MESSAGE(SEND_ERROR "ERROR: Above command failed!")
  ENDIF()
ENDFUNCTION()

FUNCTION(SET_DIR_OWNER_AND_PERMS  dirPath  recurseFlag)

  IF (NOT "${PROJECT_MAKE_INSTALL_GROUP}" STREQUAL "")
    ECHO_AND_RUN_CMND(
      chgrp ${PROJECT_MAKE_INSTALL_GROUP} ${recurseFlag} "${dirPath}")
  ENDIF()

  IF (NOT "${PROJECT_MAKE_INSTALL_PERMS_CHANGE}" STREQUAL "")
    ECHO_AND_RUN_CMND(
      chmod ${PROJECT_MAKE_INSTALL_PERMS_CHANGE} ${recurseFlag} "${dirPath}")
  ENDIF()

  MATH(EXPR CHMOD_CHGRP_IDX "${CHMOD_CHGRP_IDX}+1")
  SET(CHMOD_CHGRP_IDX ${CHMOD_CHGRP_IDX} PARENT_SCOPE)

ENDFUNCTION()

# Executable script

IF (EXISTS "${projectInstallBaseDir}")

  LIST(LENGTH projectSubdirPathsArray numSubDirs)

  # Get projectSubdirPathsArrayLessOne and CMAKE_INSTALL_PREFIX
  SET(projectSubdirPathsArrayLessOne "${projectSubdirPathsArray}")
  IF (numSubDirs GREATER 0)
    LIST(REMOVE_AT projectSubdirPathsArrayLessOne -1)
  ENDIF()

  # Loop over base dirs and set group and permissions and set CMAKE_INSTALL_PREFIX
  SET(dirPath "${projectInstallBaseDir}")
  IF (numSubDirs EQUAL 0)
    # The base dir is CMAKE_INSTALL_PREFIX
    SET(CMAKE_INSTALL_PREFIX "${dirPath}")
  ELSE()
    # Non-recursive set of the group and permissions
    SET_DIR_OWNER_AND_PERMS("${dirPath}" "")
    FOREACH(subDirEle ${projectSubdirPathsArrayLessOne})
      SET(dirPath "${dirPath}/${subDirEle}")
      SET_DIR_OWNER_AND_PERMS("${dirPath}" "")
    ENDFOREACH()
    # Append last subdir which gives CMAKE_INSTALL_PREFIX
    LIST(GET projectSubdirPathsArray -1 lastSubdir)
    SET(CMAKE_INSTALL_PREFIX "${dirPath}/${lastSubdir}")
 ENDIF()

  # Recursive set of group and permsisions on CMAKE_INSTALL_PREFIX
  SET_DIR_OWNER_AND_PERMS("${CMAKE_INSTALL_PREFIX}" "-R")

ELSE()

  MESSAGE(FATAL_ERROR
    ""
    "*** ERROR: The directory:"
    "***"
    "***   ${projectInstallBaseDir}"
    "***"
    "*** does not exist so can't fix group and permissions!"
    "***"
    ""
    )

ENDIF()

Origin repo remote tracking branch: 'github/master'
Origin repo remote repo URL: 'github = [email protected]:TriBITSPub/TriBITS.git'

At commit:

commit 889fa648b58503cba5b4c52ec732e78f0045ef27
Author:  Roscoe A. Bartlett <[email protected]>
Date:    Thu Apr 23 17:42:54 2020 -0600
Summary: Implement recursive chgrp and chmod for installed files/directories (trilinos#314, ATDV-241)
I am doing this partially because I want to test these installs on CEE
sems-rhel7 machines.  But I think it would also be useful to do installs of
Trilinos on CEE sems-rhel7 machines (so EMPIRE can test against them).
@bartlettroscoe bartlettroscoe added type: enhancement Issue is an enhancement, not a bug client: ATDM Any issue primarily impacting the ATDM project ATDM Config Issues that are specific to the ATDM configuration settings client: EMPIRE All issues that most directly target the ATDM EMPIRE code AT: AUTOMERGE Causes the PR autotester to automatically merge the PR branch once approvals are completed ATDM DevOps Issues that will be worked by the Coordinated ATDM DevOps teams labels Apr 30, 2020
@bartlettroscoe bartlettroscoe self-assigned this Apr 30, 2020
bartlettroscoe added a commit that referenced this pull request Apr 30, 2020
…dates (ATDV-241, #7285)

Want to get this into ATDM Trilinos testing tomorrow so I am manually merging.
I did manaully testing.  (The Trilinos PR tester does not really test this at
all.)
@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: 6551
  • 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 7285
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH atdv-241-fix-install-perms
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 9be1576
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 8d02048

Build Information

Test Name: Trilinos_pullrequest_intel_17.0.1

  • Build Num: 6363
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 7285
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH atdv-241-fix-install-perms
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 9be1576
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 8d02048

Build Information

Test Name: Trilinos_pullrequest_gcc_4.9.3_SERIAL

  • Build Num: 4788
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 7285
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH atdv-241-fix-install-perms
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 9be1576
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 8d02048

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0

  • Build Num: 4635
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 7285
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH atdv-241-fix-install-perms
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 9be1576
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 8d02048

Build Information

Test Name: Trilinos_pullrequest_gcc_8.3.0

  • Build Num: 824
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 7285
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH atdv-241-fix-install-perms
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 9be1576
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 8d02048

Build Information

Test Name: Trilinos_pullrequest_cuda_9.2

  • Build Num: 4149
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 7285
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH atdv-241-fix-install-perms
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 9be1576
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 8d02048

Build Information

Test Name: Trilinos_pullrequest_clang_9.0.0

  • Build Num: 522
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 7285
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH atdv-241-fix-install-perms
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 9be1576
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 8d02048

Build Information

Test Name: Trilinos_pullrequest_python_2

  • Build Num: 2312
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 7285
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH atdv-241-fix-install-perms
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 9be1576
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 8d02048

Build Information

Test Name: Trilinos_pullrequest_python_3

  • Build Num: 2323
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 7285
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH atdv-241-fix-install-perms
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 9be1576
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 8d02048

Using Repos:

Repo: TRILINOS (bartlettroscoe/Trilinos)
  • Branch: atdv-241-fix-install-perms
  • SHA: 9be1576
  • 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: 6551
  • 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 7285
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH atdv-241-fix-install-perms
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 9be1576
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 8d02048

Build Information

Test Name: Trilinos_pullrequest_intel_17.0.1

  • Build Num: 6363
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 7285
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH atdv-241-fix-install-perms
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 9be1576
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 8d02048

Build Information

Test Name: Trilinos_pullrequest_gcc_4.9.3_SERIAL

  • Build Num: 4788
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 7285
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH atdv-241-fix-install-perms
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 9be1576
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 8d02048

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0

  • Build Num: 4635
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 7285
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH atdv-241-fix-install-perms
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 9be1576
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 8d02048

Build Information

Test Name: Trilinos_pullrequest_gcc_8.3.0

  • Build Num: 824
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 7285
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH atdv-241-fix-install-perms
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 9be1576
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 8d02048

Build Information

Test Name: Trilinos_pullrequest_cuda_9.2

  • Build Num: 4149
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 7285
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH atdv-241-fix-install-perms
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 9be1576
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 8d02048

Build Information

Test Name: Trilinos_pullrequest_clang_9.0.0

  • Build Num: 522
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 7285
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH atdv-241-fix-install-perms
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 9be1576
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 8d02048

Build Information

Test Name: Trilinos_pullrequest_python_2

  • Build Num: 2312
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 7285
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH atdv-241-fix-install-perms
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 9be1576
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 8d02048

Build Information

Test Name: Trilinos_pullrequest_python_3

  • Build Num: 2323
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 7285
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH atdv-241-fix-install-perms
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 9be1576
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 8d02048
Console Output (last 100 lines) : Trilinos_pullrequest_gcc_4.8.4 # 6551 (click to expand)

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='TrilinosATDMConfigTests,ALL_PACKAGES'

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

CHANGED_PACKAGES_PT_LIST='TrilinosATDMConfigTests,ALL_PACKAGES'

E) Generate the *.cmake enables file

Wrote file 'packageEnables.cmake'
Build name = PR-7285-test-Trilinos_pullrequest_gcc_4.8.4-6551
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
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 = 53
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-7285-test-Trilinos_pullrequest_gcc_4.8.4-6551&field3=buildstamp&compare3=61&value3=20200430-0140-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-7285-test-Trilinos_pullrequest_gcc_4.8.4-6551&field2=buildstamp&compare2=61&value2=20200430-0140-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-7285-test-Trilinos_pullrequest_gcc_4.8.4-6551&field2=buildstamp&compare2=61&value2=20200430-0140-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: 450K
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: 300K
.................................................. Size: 349K
.................................................. Size: 399K
.................................................. Size: 449K
.................................................. Size: 499K
.................................................. Size: 549K
.................................................. Size: 599K
.................................................. Size: 649K
............................. Size of output: 679K
Build succeeded.
build submit error = 0
Starting testing step.
Tests succeeded.
test submit error = 0
File upload submit error = 0
linos-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 = #6551
PULLREQUESTNUM = 7285
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_TrilinosATDMConfigTests = ON
-- Setting Trilinos_ENABLE_ALL_PACKAGES = 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 # 6363 (click to expand)

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

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

Wrote file 'changed-files.txt'

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

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

CHANGED_PACKAGES_FULL_LIST='TrilinosATDMConfigTests,ALL_PACKAGES'

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

CHANGED_PACKAGES_PT_LIST='TrilinosATDMConfigTests,ALL_PACKAGES'

E) Generate the *.cmake enables file

Wrote file 'packageEnables.cmake'
Build name = PR-7285-test-Trilinos_pullrequest_intel_17.0.1-6363
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
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 = 53
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-7285-test-Trilinos_pullrequest_intel_17.0.1-6363&field3=buildstamp&compare3=61&value3=20200430-0140-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-7285-test-Trilinos_pullrequest_intel_17.0.1-6363&field2=buildstamp&compare2=61&value2=20200430-0140-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-7285-test-Trilinos_pullrequest_intel_17.0.1-6363&field2=buildstamp&compare2=61&value2=20200430-0140-Pull Request
Starting configure step.
Each . represents 1024 bytes of output
.................................................. Size: 50K
....................... Size of output: 72K
Error(s) when configuring the project
configure submit error = 0
CMake Error at /scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/TFW_testing_single_configure_prototype/simple_testing.cmake:189 (message):
Configure failed with error -1

H = /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 = [email protected],[email protected]
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 = #6363
PULLREQUESTNUM = 7285
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_TrilinosATDMConfigTests = ON
-- Setting Trilinos_ENABLE_ALL_PACKAGES = 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 691, in
returnValue = run()
File "/scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/Trilinos/cmake/std/PullRequestLinuxDriverTest.py", line 684, in run
'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-7285-test-Trilinos_pullrequest_intel_17.0.1-6363', '-Dskip_by_parts_submit=OFF', '-Dskip_update_step=ON', '-Ddashboard_model=Experimental', '-Ddashboard_track=Pull Request', '-DPARALLEL_LEVEL=20', '-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=../TFW_single_configure_support_scripts/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 # 4788 (click to expand)

B) Get the set of changed files

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

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

Wrote file 'changed-files.txt'

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='TrilinosATDMConfigTests,ALL_PACKAGES'

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

CHANGED_PACKAGES_PT_LIST='TrilinosATDMConfigTests,ALL_PACKAGES'

E) Generate the *.cmake enables file

Wrote file 'packageEnables.cmake'
Build name = PR-7285-test-Trilinos_pullrequest_gcc_4.9.3_SERIAL-4788
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
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 = 53
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-7285-test-Trilinos_pullrequest_gcc_4.9.3_SERIAL-4788&field3=buildstamp&compare3=61&value3=20200430-0141-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-7285-test-Trilinos_pullrequest_gcc_4.9.3_SERIAL-4788&field2=buildstamp&compare2=61&value2=20200430-0141-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-7285-test-Trilinos_pullrequest_gcc_4.9.3_SERIAL-4788&field2=buildstamp&compare2=61&value2=20200430-0141-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: 377K
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: 160K
Build succeeded.
build submit error = 0
Starting testing step.
Tests succeeded.
test submit error = 0
File upload submit error = 0
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 = [email protected],[email protected]
SEMS_NETCDF_LIBRARY_PATH = /projects/sems/install/rhel7-x86_64/sems/tpl/netcdf/4.7.3/gcc/4.9.3/base/lib
GIT_URL = https://github.com/trilinos/Trilinos
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 = #4788
PULLREQUESTNUM = 7285
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_TrilinosATDMConfigTests = ON
-- Setting Trilinos_ENABLE_ALL_PACKAGES = 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 # 4635 (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/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='TrilinosATDMConfigTests,ALL_PACKAGES'

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

CHANGED_PACKAGES_PT_LIST='TrilinosATDMConfigTests,ALL_PACKAGES'

E) Generate the *.cmake enables file

Wrote file 'packageEnables.cmake'
Build name = PR-7285-test-Trilinos_pullrequest_gcc_7.2.0-4635
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
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 = 53
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-7285-test-Trilinos_pullrequest_gcc_7.2.0-4635&field3=buildstamp&compare3=61&value3=20200430-0141-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-7285-test-Trilinos_pullrequest_gcc_7.2.0-4635&field2=buildstamp&compare2=61&value2=20200430-0141-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-7285-test-Trilinos_pullrequest_gcc_7.2.0-4635&field2=buildstamp&compare2=61&value2=20200430-0141-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: 438K
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: 263K
Build succeeded.
build submit error = 0
Starting testing step.
Tests succeeded.
test submit error = 0
File upload submit error = 0
/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 = #4635
PULLREQUESTNUM = 7285
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_TrilinosATDMConfigTests = ON
-- Setting Trilinos_ENABLE_ALL_PACKAGES = 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 # 824 (click to expand)

CHANGED_PACKAGES_PT_LIST='TrilinosATDMConfigTests,ALL_PACKAGES'

E) Generate the *.cmake enables file

Wrote file 'packageEnables.cmake'
Build name = PR-7285-test-Trilinos_pullrequest_gcc_8.3.0-824
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
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 = 53
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-7285-test-Trilinos_pullrequest_gcc_8.3.0-824&field3=buildstamp&compare3=61&value3=20200430-0141-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-7285-test-Trilinos_pullrequest_gcc_8.3.0-824&field2=buildstamp&compare2=61&value2=20200430-0141-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-7285-test-Trilinos_pullrequest_gcc_8.3.0-824&field2=buildstamp&compare2=61&value2=20200430-0141-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: 438K
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 of output: 780K
Build succeeded.
build submit error = 0
Starting testing step.
Tests succeeded.
test submit error = 0
File upload submit error = 0
ov,[email protected]
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_URL = https://github.com/trilinos/Trilinos
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 = #824
PULLREQUESTNUM = 7285
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_TrilinosATDMConfigTests = ON
-- Setting Trilinos_ENABLE_ALL_PACKAGES = 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 # 4149 (click to expand)

    ..................................................  Size: 5349K
    ..................................................  Size: 5399K
    ..................................................  Size: 5449K
    ..................................................  Size: 5499K
    ..................................................  Size: 5550K
    ..................................................  Size: 5599K
    ..................................................  Size: 5650K
    ..................................................  Size: 5700K
    ..................................................  Size: 5749K
    ..................................................  Size: 5800K
    ..................................................  Size: 5849K
    ........................................... Size of output: 5893K
Build succeeded.
build submit error = 0
Starting testing step.
Tests succeeded.
test submit error = 0
File upload submit error = 0
de10 ride10 ride10 ride10 ride10
METIS_ROOT = /home/projects/ppc64le-pwr8/metis/5.0.1/gcc/7.2.0
NODE_OWNER_EMAIL = [email protected]
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/1588210920.3305
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/1588210920.3305.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 56294 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 = 1588210920
LSB_EXEC_HOSTTYPE = LINUXPPC64LE
GIT_PREVIOUS_SUCCESSFUL_COMMIT = 8d0204884ee7a52ffcad920ce4a4d8000a768d18
LSB_DJOB_HOSTFILE = /ascldap/users/trilinos/.lsbatch/1588210920.3305.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 = [email protected]
PULLREQUEST_CDASH_TRACK = Pull Request
BUILD_ID = 4149
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/4149/display/redirect
JOB_COOWNERS_EMAILS = [email protected],[email protected]
LSB_BATCH_JID = 3305
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_YfeZN6lMfr
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 = #4149
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 = 7285
BINARY_TYPE_HPC = 

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

Set CWD = /home/trilinos/jenkins/ride/workspace/trilinos-folder/Trilinos_pullrequest_cuda_9.2/TFW_testing_single_configure_prototype
Archiving artifacts
Finished: SUCCESS

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

Wrote file 'packageEnables.cmake'
Build name               = PR-7285-test-Trilinos_pullrequest_clang_9.0.0-522
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
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         = 53
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-7285-test-Trilinos_pullrequest_clang_9.0.0-522&field3=buildstamp&compare3=61&value3=20200430-0142-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-7285-test-Trilinos_pullrequest_clang_9.0.0-522&field2=buildstamp&compare2=61&value2=20200430-0142-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-7285-test-Trilinos_pullrequest_clang_9.0.0-522&field2=buildstamp&compare2=61&value2=20200430-0142-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: 434K
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: 650K
    ..................................................  Size: 700K
    ..................................................  Size: 750K
    ..................................................  Size: 799K
    ..................................................  Size: 849K
    ..................................................  Size: 899K
    ..................................................  Size: 949K
    ................................................ Size of output: 997K
Build succeeded.
build submit error = 0
Starting testing step.
Tests succeeded.
test submit error = 0
File upload submit error = 0
DULE_VERSION_STACK = 3.2.10
JOB_COOWNERS_EMAILS = [email protected],[email protected]
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 = #522
PULLREQUESTNUM = 7285
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_TrilinosATDMConfigTests = ON
-- Setting Trilinos_ENABLE_ALL_PACKAGES = 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 # 2312 (click to expand)

QTINC = /usr/lib64/qt-3.3/include
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 = 5bc708a8-f406-4421-afaf-0bf2848dfb2e
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 = [email protected]
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 40880 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 = 8d0204884ee7a52ffcad920ce4a4d8000a768d18
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 = [email protected]
PULLREQUEST_CDASH_TRACK = Pull Request
BUILD_ID = 2312
JOB_COOWNERS_EMAILS = [email protected],[email protected]
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:atdCurrently 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-7285-test-Trilinos_pullrequest_python_2-2312
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
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         = 53
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-7285-test-Trilinos_pullrequest_python_2-2312&field3=buildstamp&compare3=61&value3=20200430-0142-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-7285-test-Trilinos_pullrequest_python_2-2312&field2=buildstamp&compare2=61&value2=20200430-0142-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-7285-test-Trilinos_pullrequest_python_2-2312&field2=buildstamp&compare2=61&value2=20200430-0142-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.
Tests succeeded.
test submit error = 0
File upload submit error = 0
m-ninja_fortran/1.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 = #2312
PULLREQUESTNUM = 7285

==========================================================================================
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 # 2323 (click to expand)

QTINC = /usr/lib64/qt-3.3/include
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 = c5cfe2bc-d62f-401e-ad0c-4004532b5344
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 = [email protected]
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 40880 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 = 8d0204884ee7a52ffcad920ce4a4d8000a768d18
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 = [email protected]
PULLREQUEST_CDASH_TRACK = Pull Request
BUILD_ID = 2323
JOB_COOWNERS_EMAILS = [email protected],[email protected]
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-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-7285-test-Trilinos_pullrequest_python_3-2323
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
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         = 53
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-7285-test-Trilinos_pullrequest_python_3-2323&field3=buildstamp&compare3=61&value3=20200430-0142-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-7285-test-Trilinos_pullrequest_python_3-2323&field2=buildstamp&compare2=61&value2=20200430-0142-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-7285-test-Trilinos_pullrequest_python_3-2323&field2=buildstamp&compare2=61&value2=20200430-0142-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.
Tests succeeded.
test submit error = 0
File upload submit error = 0
ninja_fortran/1.7.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 = #2323
PULLREQUESTNUM = 7285

==========================================================================================
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# 7285.


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: 6555
  • 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 7285
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH atdv-241-fix-install-perms
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 9be1576
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 8d02048

Build Information

Test Name: Trilinos_pullrequest_intel_17.0.1

  • Build Num: 6367
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 7285
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH atdv-241-fix-install-perms
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 9be1576
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 8d02048

Build Information

Test Name: Trilinos_pullrequest_gcc_4.9.3_SERIAL

  • Build Num: 4792
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 7285
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH atdv-241-fix-install-perms
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 9be1576
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 8d02048

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0

  • Build Num: 4639
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 7285
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH atdv-241-fix-install-perms
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 9be1576
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 8d02048

Build Information

Test Name: Trilinos_pullrequest_gcc_8.3.0

  • Build Num: 828
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 7285
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH atdv-241-fix-install-perms
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 9be1576
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 8d02048

Build Information

Test Name: Trilinos_pullrequest_cuda_9.2

  • Build Num: 4153
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 7285
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH atdv-241-fix-install-perms
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 9be1576
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 8d02048

Build Information

Test Name: Trilinos_pullrequest_clang_9.0.0

  • Build Num: 526
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 7285
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH atdv-241-fix-install-perms
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 9be1576
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 8d02048

Build Information

Test Name: Trilinos_pullrequest_python_2

  • Build Num: 2315
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 7285
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH atdv-241-fix-install-perms
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 9be1576
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 8d02048

Build Information

Test Name: Trilinos_pullrequest_python_3

  • Build Num: 2326
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 7285
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH atdv-241-fix-install-perms
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 9be1576
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 8d02048

Using Repos:

Repo: TRILINOS (bartlettroscoe/Trilinos)
  • Branch: atdv-241-fix-install-perms
  • SHA: 9be1576
  • 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: 6555
  • 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 7285
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH atdv-241-fix-install-perms
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 9be1576
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 8d02048

Build Information

Test Name: Trilinos_pullrequest_intel_17.0.1

  • Build Num: 6367
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 7285
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH atdv-241-fix-install-perms
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 9be1576
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 8d02048

Build Information

Test Name: Trilinos_pullrequest_gcc_4.9.3_SERIAL

  • Build Num: 4792
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 7285
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH atdv-241-fix-install-perms
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 9be1576
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 8d02048

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0

  • Build Num: 4639
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 7285
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH atdv-241-fix-install-perms
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 9be1576
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 8d02048

Build Information

Test Name: Trilinos_pullrequest_gcc_8.3.0

  • Build Num: 828
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 7285
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH atdv-241-fix-install-perms
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 9be1576
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 8d02048

Build Information

Test Name: Trilinos_pullrequest_cuda_9.2

  • Build Num: 4153
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 7285
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH atdv-241-fix-install-perms
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 9be1576
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 8d02048

Build Information

Test Name: Trilinos_pullrequest_clang_9.0.0

  • Build Num: 526
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 7285
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH atdv-241-fix-install-perms
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 9be1576
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 8d02048

Build Information

Test Name: Trilinos_pullrequest_python_2

  • Build Num: 2315
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 7285
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH atdv-241-fix-install-perms
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 9be1576
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 8d02048

Build Information

Test Name: Trilinos_pullrequest_python_3

  • Build Num: 2326
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 7285
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH atdv-241-fix-install-perms
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 9be1576
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 8d02048
Console Output (last 100 lines) : Trilinos_pullrequest_gcc_4.8.4 # 6555 (click to expand)

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

CHANGED_PACKAGES_PT_LIST='TrilinosATDMConfigTests,ALL_PACKAGES'

E) Generate the *.cmake enables file

Wrote file 'packageEnables.cmake'
Build name = PR-7285-test-Trilinos_pullrequest_gcc_4.8.4-6555
Cur dir = /scratch/trilinos/jenkins/tr-test-6/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/TFW_testing_single_configure_prototype
Source dir = /scratch/trilinos/jenkins/tr-test-6/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/Trilinos
Binary dir = /scratch/trilinos/jenkins/tr-test-6/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/pull_request_test
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 = 53
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-6/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/Trilinos/cmake/std/PullRequestLinuxGCC4.8.4TestingSettings.cmake"
-C "/scratch/trilinos/jenkins/tr-test-6/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-6/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-6.novalocal&field2=buildname&compare2=61&value2=PR-7285-test-Trilinos_pullrequest_gcc_4.8.4-6555&field3=buildstamp&compare3=61&value3=20200430-0640-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-7285-test-Trilinos_pullrequest_gcc_4.8.4-6555&field2=buildstamp&compare2=61&value2=20200430-0640-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-7285-test-Trilinos_pullrequest_gcc_4.8.4-6555&field2=buildstamp&compare2=61&value2=20200430-0640-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: 450K
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: 399K
.................................................. Size: 450K
.................................................. 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 of output: 1295K
Build succeeded.
build submit error = 0
Starting testing step.
Tests succeeded.
test submit error = 0
File upload submit error = 0
4.8.4@tmp
SEMS_CMAKE_VERSION = 3.10.3
HISTCONTROL = ignoredups
SERIAL_CXX = g++
PWD = /scratch/trilinos/jenkins/tr-test-6/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4
JENKINS_SERVER_COOKIE = 248910a9cd8de38c
BUILD_DISPLAY_NAME = #6555
PULLREQUESTNUM = 7285
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_TrilinosATDMConfigTests = ON
-- Setting Trilinos_ENABLE_ALL_PACKAGES = ON

Set CWD = /scratch/trilinos/jenkins/tr-test-6/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 # 6367 (click to expand)

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

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

Wrote file 'changed-files.txt'

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

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

CHANGED_PACKAGES_FULL_LIST='TrilinosATDMConfigTests,ALL_PACKAGES'

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

CHANGED_PACKAGES_PT_LIST='TrilinosATDMConfigTests,ALL_PACKAGES'

E) Generate the *.cmake enables file

Wrote file 'packageEnables.cmake'
Build name = PR-7285-test-Trilinos_pullrequest_intel_17.0.1-6367
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
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 = 53
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-7285-test-Trilinos_pullrequest_intel_17.0.1-6367&field3=buildstamp&compare3=61&value3=20200430-0641-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-7285-test-Trilinos_pullrequest_intel_17.0.1-6367&field2=buildstamp&compare2=61&value2=20200430-0641-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-7285-test-Trilinos_pullrequest_intel_17.0.1-6367&field2=buildstamp&compare2=61&value2=20200430-0641-Pull Request
Starting configure step.
Each . represents 1024 bytes of output
.................................................. Size: 50K
....................... Size of output: 72K
Error(s) when configuring the project
configure submit error = 0
CMake Error at /scratch/trilinos/jenkins/ascic143/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/TFW_testing_single_configure_prototype/simple_testing.cmake:189 (message):
Configure failed with error -1

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 = [email protected],[email protected]
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 = #6367
PULLREQUESTNUM = 7285
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_TrilinosATDMConfigTests = ON
-- Setting Trilinos_ENABLE_ALL_PACKAGES = ON

Set CWD = /scratch/trilinos/jenkins/ascic143/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/TFW_testing_single_configure_prototype
Traceback (most recent call last):
File "/scratch/trilinos/jenkins/ascic143/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/Trilinos/cmake/std/PullRequestLinuxDriverTest.py", line 691, in
returnValue = run()
File "/scratch/trilinos/jenkins/ascic143/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/Trilinos/cmake/std/PullRequestLinuxDriverTest.py", line 684, in run
'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-7285-test-Trilinos_pullrequest_intel_17.0.1-6367', '-Dskip_by_parts_submit=OFF', '-Dskip_update_step=ON', '-Ddashboard_model=Experimental', '-Ddashboard_track=Pull Request', '-DPARALLEL_LEVEL=20', '-Dbuild_dir=/scratch/trilinos/jenkins/ascic143/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/pull_request_test', '-Dconfigure_script=/scratch/trilinos/jenkins/ascic143/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/Trilinos/cmake/std/PullRequestLinuxIntelTestingSettings.cmake', '-Dpackage_enables=../packageEnables.cmake', '-Dsubprojects_file=../TFW_single_configure_support_scripts/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 # 4792 (click to expand)

*** git commit origin/develop to HEAD
***

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

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='TrilinosATDMConfigTests,ALL_PACKAGES'

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

CHANGED_PACKAGES_PT_LIST='TrilinosATDMConfigTests,ALL_PACKAGES'

E) Generate the *.cmake enables file

Wrote file 'packageEnables.cmake'
Build name = PR-7285-test-Trilinos_pullrequest_gcc_4.9.3_SERIAL-4792
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
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 = 53
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-7285-test-Trilinos_pullrequest_gcc_4.9.3_SERIAL-4792&field3=buildstamp&compare3=61&value3=20200430-0640-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-7285-test-Trilinos_pullrequest_gcc_4.9.3_SERIAL-4792&field2=buildstamp&compare2=61&value2=20200430-0640-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-7285-test-Trilinos_pullrequest_gcc_4.9.3_SERIAL-4792&field2=buildstamp&compare2=61&value2=20200430-0640-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: 377K
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: 400K
.................................................. Size: 449K
.................................................. Size: 499K
......................................... Size of output: 540K
Build succeeded.
build submit error = 0
Starting testing step.
Tests succeeded.
test submit error = 0
File upload submit error = 0
.3/base/include

==========================================================================================
None
PULLREQUEST_CDASH_TRACK is set. Setting CDASH_TRACK=Pull Request
Enabled packages:
-- Setting Trilinos_ENABLE_TrilinosATDMConfigTests = ON
-- Setting Trilinos_ENABLE_ALL_PACKAGES = 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 # 4639 (click to expand)

  -G "Ninja"
  /scratch/trilinos/jenkins/ascic113/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=ascic113&field2=buildname&compare2=61&value2=PR-7285-test-Trilinos_pullrequest_gcc_7.2.0-4639&field3=buildstamp&compare3=61&value3=20200430-0642-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-7285-test-Trilinos_pullrequest_gcc_7.2.0-4639&field2=buildstamp&compare2=61&value2=20200430-0642-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-7285-test-Trilinos_pullrequest_gcc_7.2.0-4639&field2=buildstamp&compare2=61&value2=20200430-0642-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: 438K
configure submit error = 0
Configure suceeded.
Starting build step.
   Each symbol represents 1024 bytes of output.
    ..................................................  Size: 49K
    ..................................................  Size: 99K
    ..................................................  Size: 149K
    ..................................................  Size: 199K
    ..................................................  Size: 249K
    ..................................................  Size: 299K
    ..................................................  Size: 349K
    ..................................................  Size: 399K
    ..................................................  Size: 449K
    ..................................................  Size: 499K
    ..................................................  Size: 549K
    ..................................................  Size: 599K
    ..................................................  Size: 649K
    ..................................................  Size: 699K
    ..................................................  Size: 749K
    ..................................................  Size: 799K
    ..................................................  Size: 849K
    ..................................................  Size: 899K
    ..................................................  Size: 949K
    ..................................................  Size: 999K
    ..................................................  Size: 1049K
    ..................................................  Size: 1099K
    ..................................................  Size: 1149K
    ..................................................  Size: 1199K
    ..................................................  Size: 1250K
    ..................................................  Size: 1299K
    ..................................................  Size: 1349K
    ..................................................  Size: 1399K
    ..................................................  Size: 1449K
    ..................................................  Size: 1499K
    ..................................................  Size: 1549K
    ..................................................  Size: 1599K
    ..................................................  Size: 1649K
    ..................................................  Size: 1699K
    ..................................................  Size: 1749K
    ..................................................  Size: 1799K
    ..................................................  Size: 1849K
    ..................................................  Size: 1899K
    ..................................................  Size: 1949K
    ..................................................  Size: 1999K
    ..................................................  Size: 2049K
    ..................................................  Size: 2099K
    ..................................................  Size: 2149K
    ..................................................  Size: 2199K
    ..................................................  Size: 2249K
    ..................................................  Size: 2299K
    ..................................................  Size: 2349K
    ..................................................  Size: 2399K
    ..................................................  Size: 2449K
    .... Size of output: 2454K
Build succeeded.
build submit error = 0
Starting testing step.
Tests succeeded.
test submit error = 0
File upload submit error = 0
/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/ascic113/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/ascic113/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0
JENKINS_SERVER_COOKIE = 248910a9cd8de38c
BUILD_DISPLAY_NAME = #4639
PULLREQUESTNUM = 7285
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_TrilinosATDMConfigTests = ON
-- Setting Trilinos_ENABLE_ALL_PACKAGES = ON

Set CWD = /scratch/trilinos/jenkins/ascic113/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 # 828 (click to expand)

Wrote file 'changed-files.txt'

Current directory: /scratch/trilinos/jenkins/ascic144/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0

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

CHANGED_PACKAGES_FULL_LIST='TrilinosATDMConfigTests,ALL_PACKAGES'

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

CHANGED_PACKAGES_PT_LIST='TrilinosATDMConfigTests,ALL_PACKAGES'

E) Generate the *.cmake enables file

Wrote file 'packageEnables.cmake'
Build name = PR-7285-test-Trilinos_pullrequest_gcc_8.3.0-828
Cur dir = /scratch/trilinos/jenkins/ascic144/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/TFW_testing_single_configure_prototype
Source dir = /scratch/trilinos/jenkins/ascic144/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/Trilinos
Binary dir = /scratch/trilinos/jenkins/ascic144/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/pull_request_test
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 = 53
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/ascic144/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/Trilinos/cmake/std/PullRequestLinuxGCC8.3.0TestingSettings.cmake"
-C "/scratch/trilinos/jenkins/ascic144/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/ascic144/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=ascic144&field2=buildname&compare2=61&value2=PR-7285-test-Trilinos_pullrequest_gcc_8.3.0-828&field3=buildstamp&compare3=61&value3=20200430-0641-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-7285-test-Trilinos_pullrequest_gcc_8.3.0-828&field2=buildstamp&compare2=61&value2=20200430-0641-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-7285-test-Trilinos_pullrequest_gcc_8.3.0-828&field2=buildstamp&compare2=61&value2=20200430-0641-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: 438K
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: 250K
.................................................. Size: 299K
.................................................. Size: 349K
.................................................. Size: 399K
.................................................. Size: 449K
.................................................. Size: 499K
.................................................. Size: 549K
.................................................. Size: 599K
.................................................. Size: 649K
.................................................. Size: 699K
.............. Size of output: 713K
Build succeeded.
build submit error = 0
Starting testing step.
Tests succeeded.
test submit error = 0
File upload submit error = 0
.3.0/openmpi/1.10.1/parallel
SEMS_SCOTCH_INCLUDE_PATH = /projects/sems/install/rhel6-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/ascic144/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/ascic144/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0
JENKINS_SERVER_COOKIE = 248910a9cd8de38c
BUILD_DISPLAY_NAME = #828
PULLREQUESTNUM = 7285
SEMS_SUPERLU_INCLUDE_PATH = /projects/sems/install/rhel6-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_TrilinosATDMConfigTests = ON
-- Setting Trilinos_ENABLE_ALL_PACKAGES = ON

Set CWD = /scratch/trilinos/jenkins/ascic144/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 # 4153 (click to expand)

    ..................................................  Size: 4899K
    ..................................................  Size: 4949K
    ..................................................  Size: 4999K
    ..................................................  Size: 5049K
    ..................................................  Size: 5100K
    ..................................................  Size: 5150K
    ..................................................  Size: 5200K
    ..................................................  Size: 5250K
    ..................................................  Size: 5300K
    ..................................................  Size: 5350K
    ..................................................  Size: 5399K
    ........................... Size of output: 5427K
Build succeeded.
build submit error = 0
Starting testing step.
Tests succeeded.
test submit error = 0
File upload submit error = 0
 ride12 ride12 ride12 ride12 ride12 ride12
METIS_ROOT = /home/projects/ppc64le-pwr8/metis/5.0.1/gcc/7.2.0
NODE_OWNER_EMAIL = [email protected]
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/1588228911.3310
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/1588228911.3310.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 56294 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 = 1588228911
LSB_EXEC_HOSTTYPE = LINUXPPC64LE
GIT_PREVIOUS_SUCCESSFUL_COMMIT = 8d0204884ee7a52ffcad920ce4a4d8000a768d18
LSB_DJOB_HOSTFILE = /ascldap/users/trilinos/.lsbatch/1588228911.3310.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 = [email protected]
PULLREQUEST_CDASH_TRACK = Pull Request
BUILD_ID = 4153
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/4153/display/redirect
JOB_COOWNERS_EMAILS = [email protected],[email protected]
LSB_BATCH_JID = 3310
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_YfeZN6lMfr
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 = #4153
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 = 7285
BINARY_TYPE_HPC = 

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

Set CWD = /home/trilinos/jenkins/ride/workspace/trilinos-folder/Trilinos_pullrequest_cuda_9.2@2/TFW_testing_single_configure_prototype
Archiving artifacts
Finished: SUCCESS

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

Cur dir                  = /scratch/trilinos/jenkins/ascic114/workspace/trilinos-folder/Trilinos_pullrequest_clang_9.0.0/TFW_testing_single_configure_prototype
Source dir               = /scratch/trilinos/jenkins/ascic114/workspace/trilinos-folder/Trilinos_pullrequest_clang_9.0.0/Trilinos
Binary dir               = /scratch/trilinos/jenkins/ascic114/workspace/trilinos-folder/Trilinos_pullrequest_clang_9.0.0/pull_request_test
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         = 53
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/ascic114/workspace/trilinos-folder/Trilinos_pullrequest_clang_9.0.0/Trilinos/cmake/std/PullRequestLinuxClang9.0.0TestingSettings.cmake"
  -C "/scratch/trilinos/jenkins/ascic114/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/ascic114/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=ascic114&field2=buildname&compare2=61&value2=PR-7285-test-Trilinos_pullrequest_clang_9.0.0-526&field3=buildstamp&compare3=61&value3=20200430-0642-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-7285-test-Trilinos_pullrequest_clang_9.0.0-526&field2=buildstamp&compare2=61&value2=20200430-0642-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-7285-test-Trilinos_pullrequest_clang_9.0.0-526&field2=buildstamp&compare2=61&value2=20200430-0642-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: 434K
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: 650K
    ..................................................  Size: 699K
    ..................................................  Size: 750K
    ..................................................  Size: 799K
    ..................................................  Size: 849K
    ..................................................  Size: 899K
    ..................................................  Size: 949K
    ..................................................  Size: 999K
    ............................... Size of output: 1031K
Build succeeded.
build submit error = 0
Starting testing step.
Tests succeeded.
test submit error = 0
File upload submit error = 0
6.6
MODULE_VERSION_STACK = 3.2.10
JOB_COOWNERS_EMAILS = [email protected],[email protected]
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/ascic114/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/ascic114/workspace/trilinos-folder/Trilinos_pullrequest_clang_9.0.0
JENKINS_SERVER_COOKIE = 248910a9cd8de38c
BUILD_DISPLAY_NAME = #526
PULLREQUESTNUM = 7285
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_TrilinosATDMConfigTests = ON
-- Setting Trilinos_ENABLE_ALL_PACKAGES = ON

Set CWD = /scratch/trilinos/jenkins/ascic114/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 # 2315 (click to expand)

QTINC = /usr/lib64/qt-3.3/include
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 = 0ef439b8-6041-4a5f-8cb6-8e8f4caa37ce
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 = [email protected]
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 40880 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 = 8d0204884ee7a52ffcad920ce4a4d8000a768d18
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 = [email protected]
PULLREQUEST_CDASH_TRACK = Pull Request
BUILD_ID = 2315
JOB_COOWNERS_EMAILS = [email protected],[email protected]
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:atdCurrently 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-7285-test-Trilinos_pullrequest_python_2-2315
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
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         = 53
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-7285-test-Trilinos_pullrequest_python_2-2315&field3=buildstamp&compare3=61&value3=20200430-0642-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-7285-test-Trilinos_pullrequest_python_2-2315&field2=buildstamp&compare2=61&value2=20200430-0642-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-7285-test-Trilinos_pullrequest_python_2-2315&field2=buildstamp&compare2=61&value2=20200430-0642-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.
Tests succeeded.
test submit error = 0
File upload submit error = 0
m-ninja_fortran/1.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 = #2315
PULLREQUESTNUM = 7285

==========================================================================================
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 # 2326 (click to expand)

QTINC = /usr/lib64/qt-3.3/include
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 = c2e7bbf0-9c67-4a9e-af63-56fde12e82ae
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 = [email protected]
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 40880 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 = 8d0204884ee7a52ffcad920ce4a4d8000a768d18
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 = [email protected]
PULLREQUEST_CDASH_TRACK = Pull Request
BUILD_ID = 2326
JOB_COOWNERS_EMAILS = [email protected],[email protected]
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-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-7285-test-Trilinos_pullrequest_python_3-2326
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
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         = 53
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-7285-test-Trilinos_pullrequest_python_3-2326&field3=buildstamp&compare3=61&value3=20200430-0642-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-7285-test-Trilinos_pullrequest_python_3-2326&field2=buildstamp&compare2=61&value2=20200430-0642-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-7285-test-Trilinos_pullrequest_python_3-2326&field2=buildstamp&compare2=61&value2=20200430-0642-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.
Tests succeeded.
test submit error = 0
File upload submit error = 0
ninja_fortran/1.7.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 = #2326
PULLREQUESTNUM = 7285

==========================================================================================
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# 7285.


Wiki: How to Reproduce PR Testing Builds and Errors.

@e10harvey e10harvey added the AT: RETEST Causes the PR autotester to run a new round of PR tests on the next iteration label Apr 30, 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: 6557
  • 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 7285
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH atdv-241-fix-install-perms
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 9be1576
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 8d02048

Build Information

Test Name: Trilinos_pullrequest_intel_17.0.1

  • Build Num: 6369
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 7285
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH atdv-241-fix-install-perms
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 9be1576
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 8d02048

Build Information

Test Name: Trilinos_pullrequest_gcc_4.9.3_SERIAL

  • Build Num: 4794
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 7285
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH atdv-241-fix-install-perms
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 9be1576
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 8d02048

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0

  • Build Num: 4641
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 7285
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH atdv-241-fix-install-perms
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 9be1576
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 8d02048

Build Information

Test Name: Trilinos_pullrequest_gcc_8.3.0

  • Build Num: 830
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 7285
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH atdv-241-fix-install-perms
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 9be1576
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 8d02048

Build Information

Test Name: Trilinos_pullrequest_cuda_9.2

  • Build Num: 4155
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 7285
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH atdv-241-fix-install-perms
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 9be1576
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 8d02048

Build Information

Test Name: Trilinos_pullrequest_clang_9.0.0

  • Build Num: 528
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 7285
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH atdv-241-fix-install-perms
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 9be1576
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 8d02048

Build Information

Test Name: Trilinos_pullrequest_python_2

  • Build Num: 2316
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 7285
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH atdv-241-fix-install-perms
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 9be1576
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 8d02048

Build Information

Test Name: Trilinos_pullrequest_python_3

  • Build Num: 2327
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 7285
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH atdv-241-fix-install-perms
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 9be1576
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 8d02048

Using Repos:

Repo: TRILINOS (bartlettroscoe/Trilinos)
  • Branch: atdv-241-fix-install-perms
  • SHA: 9be1576
  • Mode: TEST_REPO

Pull Request Author: bartlettroscoe

Copy link
Contributor

@jmgate jmgate left a comment

Choose a reason for hiding this comment

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

On systems where the sticky bit is set, but there's no implementation for it under the hood, will I need to add -D Trilinos_MAKE_INSTALL_GROUP=our-group-name to our configure, or will it get picked up automatically?

message(FATAL_ERROR "Tests did not pass")
--
2.7.4

Copy link
Contributor

Choose a reason for hiding this comment

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

Is this *.patch file supposed to be in this PR?

Copy link
Member Author

Choose a reason for hiding this comment

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

Updates from TriBITS are just snapshotted for TriBITS 'master'. It would be a mess to try to only snapshot in individual TriBITS branches.

Copy link
Contributor

@e10harvey e10harvey left a comment

Choose a reason for hiding this comment

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

@bartlettroscoe: Thank you for your hard work on this. Please see the review comments. If it's too much work / out of the scope of this PR, let's add an issue for setting ATDM_CONFIG_TRIL_CMAKE_INSTALL_PREFIX_DATE_BASE_DEFAULT and ATDM_CONFIG_MAKE_INSTALL_GROUP_DEFAULT as defaults in set_build_options.sh.

@@ -33,3 +33,6 @@ export ATDM_CONFIG_SLURM_DEFAULT_ACCOUNT=fy150090
source $ATDM_SCRIPT_DIR/common/toss3/environment_new.sh

export ATDM_CONFIG_TRIL_CMAKE_INSTALL_PREFIX_DATE_BASE_DEFAULT=/projects/atdm_devops/trilinos_installs/
export ATDM_CONFIG_MAKE_INSTALL_GROUP_DEFAULT=wg-run-as-atdm-devops

export ATDM_CONFIG_COMPLETED_ENV_SETUP=TRUE
Copy link
Contributor

Choose a reason for hiding this comment

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

Copy link
Member Author

Choose a reason for hiding this comment

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

There is no race going on (this is not parallel code). Might be better to remove these vars from common/toss3/environment_new.sh since TOSS-3 is an OS system env, not a particular cluster.

cmake/std/atdm/sems-rhel7/environment.sh Outdated Show resolved Hide resolved
@bartlettroscoe
Copy link
Member Author

On systems where the sticky bit is set, but there's no implementation for it under the hood, will I need to add -D Trilinos_MAKE_INSTALL_GROUP=our-group-name to our configure, or will it get picked up automatically?

@jmgate, you will need to set -D Trilinos_MAKE_INSTALL_GROUP=our-group-name in your EM-Plasma/BuildScripts scripts that install Trilinos. Individual users that do installs need to decide on the group for themselves (since the user doing the installs has to be a member of that group).

@bartlettroscoe
Copy link
Member Author

Thinking about this more, I think I need to tweak how these defaults are handled and add a little bit more documentation for this. I will remove the AT: AUTOMERGE label and add AT: WIP for now.

@bartlettroscoe bartlettroscoe added AT: WIP Causes the PR autotester to not test the PR. (Remove to allow testing to occur.) and removed AT: AUTOMERGE Causes the PR autotester to automatically merge the PR branch once approvals are completed labels Apr 30, 2020
@bartlettroscoe bartlettroscoe removed the AT: RETEST Causes the PR autotester to run a new round of PR tests on the next iteration label Apr 30, 2020
@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_4.8.4

  • Build Num: 6557
  • 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 7285
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH atdv-241-fix-install-perms
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 9be1576
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 8d02048

Build Information

Test Name: Trilinos_pullrequest_intel_17.0.1

  • Build Num: 6369
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 7285
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH atdv-241-fix-install-perms
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 9be1576
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 8d02048

Build Information

Test Name: Trilinos_pullrequest_gcc_4.9.3_SERIAL

  • Build Num: 4794
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 7285
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH atdv-241-fix-install-perms
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 9be1576
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 8d02048

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0

  • Build Num: 4641
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 7285
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH atdv-241-fix-install-perms
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 9be1576
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 8d02048

Build Information

Test Name: Trilinos_pullrequest_gcc_8.3.0

  • Build Num: 830
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 7285
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH atdv-241-fix-install-perms
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 9be1576
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 8d02048

Build Information

Test Name: Trilinos_pullrequest_cuda_9.2

  • Build Num: 4155
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 7285
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH atdv-241-fix-install-perms
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 9be1576
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 8d02048

Build Information

Test Name: Trilinos_pullrequest_clang_9.0.0

  • Build Num: 528
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 7285
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH atdv-241-fix-install-perms
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 9be1576
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 8d02048

Build Information

Test Name: Trilinos_pullrequest_python_2

  • Build Num: 2316
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 7285
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH atdv-241-fix-install-perms
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 9be1576
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 8d02048

Build Information

Test Name: Trilinos_pullrequest_python_3

  • Build Num: 2327
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 7285
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH atdv-241-fix-install-perms
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 9be1576
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 8d02048


CDash Test Results for PR# 7285.

@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 BEEN REVIEWED, BUT NOT ACCEPTED OR REQUIRES CHANGES

@trilinos-autotester
Copy link
Contributor

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

The change the sems-netcdf/4.4.1/exo_parallel module to the
sems-netcdf/4.7.3/parallel module in commit 09e765d merged in PR trilinos#7179
resulted in the sems-boost/1.59.0/base module no longer being implicilty
loaded.  This was causing a configure-time failure where boost could not be
found.

This commit adds a explicit load of sems-boost/1.59.0/base.  This allows the
configure of Trilinos to work (but I have not tested a full set of builds).
This responds to some good feedback about lots of duplication in setting the
group 'wg-run-as-atdm-devops'.  I also removed duplication in the
near-universal install base dir /projects/atdm_devops/trilinos_installs.  (But
specific envs can override these in their atdm/<system_name>/environment.sh
file.)

I also updated the documentation.

I tested this manaully on my 'sems-rhel6' machine and it seems to do what it
is supposed to do.
@bartlettroscoe bartlettroscoe added AT: AUTOMERGE Causes the PR autotester to automatically merge the PR branch once approvals are completed AT: RETEST Causes the PR autotester to run a new round of PR tests on the next iteration and removed AT: WIP Causes the PR autotester to not test the PR. (Remove to allow testing to occur.) labels May 1, 2020
Note sure why this file is not installing but we don't want to be installing
these *.pyc files.
@bartlettroscoe
Copy link
Member Author

Thinking about this more, I think I need to tweak how these defaults are handled and add a little bit more documentation for this.

@e10harvey, I think I have addressed your comments in commit 37d4445.

I tested this on my machine 'crf450' with:

$ env Trilinos_PACKAGES=Kokkos,Teuchos \
      ATDM_CONFIG_USE_JENKINS_INSTALL_DEFAULTS=1 CTEST_DO_INSTALL=ON \
      CTEST_DO_SUBMIT=ON \
   ./ctest-s-local-test-driver.sh \
      sems-rhel6-gnu-7.2.0-openmp-release

That submitted to here.

The install-related directories were:

$ ls -ld /home/atdm-devops-admin/trilinos_installs/
drwxr-sr-x. 4 atdm-devops-admin atdm-devops-admin 4096 Apr 30 17:47 /home/atdm-devops-admin/trilinos_installs/

$ ls -ld /home/atdm-devops-admin/trilinos_installs/2020-04-30/
drwxrwxr-x. 3 atdm-devops-admin wg-run-as-atdm-devops 4096 Apr 30 17:47 /home/atdm-devops-admin/trilinos_installs/2020-04-30/

$ ls -ld /home/atdm-devops-admin/trilinos_installs/2020-04-30/sems-rhel6-gnu-7.2.0-openmp-release/
drwxrwxr-x. 6 atdm-devops-admin wg-run-as-atdm-devops 4096 Apr 30 18:12 /home/atdm-devops-admin/trilinos_installs/2020-04-30/sems-rhel6-gnu-7.2.0-openmp-release/

$ ls -ld /home/atdm-devops-admin/trilinos_installs/2020-04-30/sems-rhel6-gnu-7.2.0-openmp-release/share/atdm-trilinos/
drwxrwxr-x. 5 atdm-devops-admin wg-run-as-atdm-devops 4096 Apr 30 17:47 /home/atdm-devops-admin/trilinos_installs/2020-04-30/sems-rhel6-gnu-7.2.0-openmp-release/share/atdm-trilinos/

$ ls -ld /home/atdm-devops-admin/trilinos_installs/2020-04-30/sems-rhel6-gnu-7.2.0-openmp-release/share/atdm-trilinos/sems-rhel6/
drwxrwxr-x. 3 atdm-devops-admin wg-run-as-atdm-devops 4096 Apr 30 17:47 /home/atdm-devops-admin/trilinos_installs/2020-04-30/sems-rhel6-gnu-7.2.0-openmp-release/share/atdm-trilinos/sems-rhel6/

It would not have those owning groups and permissions if this was not working as it should.

@bartlettroscoe
Copy link
Member Author

I also added a couple of commits to fix other problems I discovered while doing this (see the commits).

@trilinos-autotester
Copy link
Contributor

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

@trilinos-autotester
Copy link
Contributor

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

@trilinos-autotester
Copy link
Contributor

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

Pull Request Auto Testing STARTING (click to expand)

Build Information

Test Name: Trilinos_pullrequest_gcc_4.8.4

  • Build Num: 6576
  • 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 7285
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH atdv-241-fix-install-perms
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 21112c2
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 8d02048

Build Information

Test Name: Trilinos_pullrequest_intel_17.0.1

  • Build Num: 6388
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 7285
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH atdv-241-fix-install-perms
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 21112c2
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 8d02048

Build Information

Test Name: Trilinos_pullrequest_gcc_4.9.3_SERIAL

  • Build Num: 4813
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 7285
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH atdv-241-fix-install-perms
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 21112c2
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 8d02048

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0

  • Build Num: 4660
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 7285
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH atdv-241-fix-install-perms
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 21112c2
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 8d02048

Build Information

Test Name: Trilinos_pullrequest_gcc_8.3.0

  • Build Num: 849
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 7285
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH atdv-241-fix-install-perms
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 21112c2
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 8d02048

Build Information

Test Name: Trilinos_pullrequest_cuda_9.2

  • Build Num: 4174
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 7285
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH atdv-241-fix-install-perms
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 21112c2
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 8d02048

Build Information

Test Name: Trilinos_pullrequest_clang_9.0.0

  • Build Num: 547
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 7285
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH atdv-241-fix-install-perms
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 21112c2
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 8d02048

Build Information

Test Name: Trilinos_pullrequest_python_2

  • Build Num: 2334
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 7285
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH atdv-241-fix-install-perms
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 21112c2
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 8d02048

Build Information

Test Name: Trilinos_pullrequest_python_3

  • Build Num: 2345
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 7285
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH atdv-241-fix-install-perms
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 21112c2
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 8d02048

Using Repos:

Repo: TRILINOS (bartlettroscoe/Trilinos)
  • Branch: atdv-241-fix-install-perms
  • SHA: 21112c2
  • Mode: TEST_REPO

Pull Request Author: bartlettroscoe

@trilinos-autotester
Copy link
Contributor

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

Pull Request Auto Testing has PASSED (click to expand)

Build Information

Test Name: Trilinos_pullrequest_gcc_4.8.4

  • Build Num: 6576
  • 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 7285
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH atdv-241-fix-install-perms
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 21112c2
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 8d02048

Build Information

Test Name: Trilinos_pullrequest_intel_17.0.1

  • Build Num: 6388
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 7285
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH atdv-241-fix-install-perms
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 21112c2
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 8d02048

Build Information

Test Name: Trilinos_pullrequest_gcc_4.9.3_SERIAL

  • Build Num: 4813
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 7285
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH atdv-241-fix-install-perms
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 21112c2
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 8d02048

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0

  • Build Num: 4660
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 7285
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH atdv-241-fix-install-perms
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 21112c2
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 8d02048

Build Information

Test Name: Trilinos_pullrequest_gcc_8.3.0

  • Build Num: 849
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 7285
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH atdv-241-fix-install-perms
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 21112c2
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 8d02048

Build Information

Test Name: Trilinos_pullrequest_cuda_9.2

  • Build Num: 4174
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 7285
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH atdv-241-fix-install-perms
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 21112c2
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 8d02048

Build Information

Test Name: Trilinos_pullrequest_clang_9.0.0

  • Build Num: 547
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 7285
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH atdv-241-fix-install-perms
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 21112c2
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 8d02048

Build Information

Test Name: Trilinos_pullrequest_python_2

  • Build Num: 2334
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 7285
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH atdv-241-fix-install-perms
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 21112c2
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 8d02048

Build Information

Test Name: Trilinos_pullrequest_python_3

  • Build Num: 2345
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 7285
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH atdv-241-fix-install-perms
TRILINOS_SOURCE_REPO https://github.com/bartlettroscoe/Trilinos
TRILINOS_SOURCE_SHA 21112c2
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 8d02048


CDash Test Results for PR# 7285.

@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 May 1, 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...

Copy link
Contributor

@e10harvey e10harvey left a comment

Choose a reason for hiding this comment

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

Thanks, Ross! 👍

@@ -214,7 +215,6 @@ export ATDM_CONFIG_MPI_PRE_FLAGS="--bind-to;none"

export ATDM_CONFIG_WORKSPACE_BASE_DEFAULT=/home/atdm-devops-admin/jenkins
export ATDM_CONFIG_TRIL_CMAKE_INSTALL_PREFIX_DATE_BASE_DEFAULT=/home/atdm-devops-admin/trilinos_installs
Copy link
Contributor

Choose a reason for hiding this comment

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

This could be removed.

Copy link
Member Author

Choose a reason for hiding this comment

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

Actually, that is pointing to /home/atdm-devops-admin/ instead of the default location of /projects/atdm_devops/.

@@ -206,7 +206,6 @@ export ATDM_CONFIG_MPI_POST_FLAGS="-map-by;socket:PE=4"

export ATDM_CONFIG_WORKSPACE_BASE_DEFAULT=/home/atdm-devops-admin/jenkins
export ATDM_CONFIG_TRIL_CMAKE_INSTALL_PREFIX_DATE_BASE_DEFAULT=/home/atdm-devops-admin/trilinos_installs
Copy link
Contributor

Choose a reason for hiding this comment

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

This could be removed.

Copy link
Member Author

Choose a reason for hiding this comment

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

There is no such thing as /projects/atdm_devops/ on 'waterman' and they were not willing to set one up. Therefore, we had to use /home/atdm-devops-admin/ to do Trilinos installs under.

@trilinos-autotester
Copy link
Contributor

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

@trilinos-autotester
Copy link
Contributor

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

@trilinos-autotester trilinos-autotester merged commit f606fd8 into trilinos:develop May 1, 2020
@trilinos-autotester
Copy link
Contributor

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

@trilinos-autotester trilinos-autotester removed the AT: AUTOMERGE Causes the PR autotester to automatically merge the PR branch once approvals are completed label May 1, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
ATDM Config Issues that are specific to the ATDM configuration settings ATDM DevOps Issues that will be worked by the Coordinated ATDM DevOps teams client: ATDM Any issue primarily impacting the ATDM project client: EMPIRE All issues that most directly target the ATDM EMPIRE code type: enhancement Issue is an enhancement, not a bug
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants