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

Tpetra: replace serial search with unordered_map for inserting into dense rows #8794 #8804

Merged
merged 5 commits into from
Mar 10, 2021

Conversation

kddevin
Copy link
Contributor

@kddevin kddevin commented Feb 23, 2021

@trilinos/tpetra #8794

Motivation

A serial search in insert_crs_indices slowed down nonzero insertion for very dense rows.
This PR substitutes an unordered_map for the serial search when rows are dense enough.
A test program Bug8794.cpp exercises the capability on a matrix with dense and sparse rows.
A utility program insertCrsIndicesThreshold.cpp computes the cross-over point between the serial search and the unordered_map.
Also, unused, untested method findLocalIndices is removed.

If this PR is accepted, the same logic should be added to find_crs_indices as well.

This PR results in faster fillComplete time for power-law type graphs such as twitter (39M rows, 861M nonzeros)
The old and new times to read and distribute the matrix market file and build the matrix (using insertGlobalValues and fillComplete) with a 1D matrix distribution on three processors of ghost are shown below:

old:  buildMatrixFromMM Time: 8837.17
new:  buildMatrixFromMM Time: 2243.39

Stakeholder Feedback

@crdohrm @shardest

Testing

Tested on ghost cluster, intel 19, serial node.

Threshold value determined by insertCrsIndicesThreshold.cpp:

Timer Name        Global time (num calls)
--------------------------------------------------------------------------------
nz=0001 search    1.728e-05 (10)
nz=0001 table     1.988e-05 (10)
nz=0101 search    5.487e-05 (10)
nz=0101 table     9.694e-05 (10)
nz=0201 search    0.0001193 (10)
nz=0201 table     0.0001787 (10)
nz=0301 search    0.0002249 (10)
nz=0301 table     0.0002584 (10)
nz=0401 search    0.0003714 (10)
nz=0401 table     0.0003631 (10)
--------------------------------------------------------------------------------
nz=0501 search    0.0005369 (10)
nz=0501 table     0.0004293 (10)
nz=0601 search    0.0007555 (10)
nz=0601 table     0.0005018 (10)
nz=0701 search    0.0009922 (10)
nz=0701 table     0.0005908 (10)
nz=0801 search    0.00128 (10)
nz=0801 table     0.0006674 (10)
nz=0901 search    0.001605 (10)
nz=0901 table     0.0007455 (10)
--------------------------------------------------------------------------------
nz=1001 search    0.001964 (10)
nz=1001 table     0.0008356 (10)
...
nz=9801 search    0.1878 (10)
nz=9801 table     0.01123 (10)
nz=9901 search    0.1917 (10)
nz=9901 table     0.01138 (10)

tpetra:  put test into Teuchos test harness #8794
tpetra:  removed untested, unused function
tpetra:  added comments #8794
tpetra:  small test to determine appropriate threshold for #8794
@kddevin kddevin added pkg: Tpetra AT: AUTOMERGE Causes the PR autotester to automatically merge the PR branch once approvals are completed labels Feb 23, 2021
@kddevin kddevin self-assigned this Feb 23, 2021
@kddevin
Copy link
Contributor Author

kddevin commented Feb 23, 2021

#8794

@trilinos-autotester
Copy link
Contributor

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

@trilinos-autotester
Copy link
Contributor

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

Pull Request Auto Testing STARTING (click to expand)

Build Information

Test Name: Trilinos_pullrequest_gcc_8.3.0

  • Build Num: 3674
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;pkg: Tpetra
PULLREQUESTNUM 8804
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetra_8794_new
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA b6c16fb
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA ab5db94

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0_serial

  • Build Num: 1263
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;pkg: Tpetra
PULLREQUESTNUM 8804
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetra_8794_new
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA b6c16fb
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA ab5db94

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0_debug

  • Build Num: 1758
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;pkg: Tpetra
PULLREQUESTNUM 8804
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetra_8794_new
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA b6c16fb
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA ab5db94

Build Information

Test Name: Trilinos_pullrequest_intel_17.0.1

  • Build Num: 9113
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;pkg: Tpetra
PULLREQUESTNUM 8804
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetra_8794_new
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA b6c16fb
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA ab5db94

Build Information

Test Name: Trilinos_pullrequest_cuda_10.1.105

  • Build Num: 578
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;pkg: Tpetra
PULLREQUESTNUM 8804
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetra_8794_new
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA b6c16fb
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA ab5db94

Build Information

Test Name: Trilinos_pullrequest_clang_10.0.0

  • Build Num: 1940
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;pkg: Tpetra
PULLREQUESTNUM 8804
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetra_8794_new
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA b6c16fb
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA ab5db94

Build Information

Test Name: Trilinos_pullrequest_python_3

  • Build Num: 4615
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;pkg: Tpetra
PULLREQUESTNUM 8804
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetra_8794_new
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA b6c16fb
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA ab5db94

Using Repos:

Repo: TRILINOS (trilinos/Trilinos)
  • Branch: tpetra_8794_new
  • SHA: b6c16fb
  • Mode: TEST_REPO

Pull Request Author: kddevin

@trilinos-autotester
Copy link
Contributor

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

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

Pull Request Auto Testing has FAILED (click to expand)

Build Information

Test Name: Trilinos_pullrequest_gcc_8.3.0

  • Build Num: 3674
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;pkg: Tpetra
PULLREQUESTNUM 8804
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetra_8794_new
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA b6c16fb
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA ab5db94

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0_serial

  • Build Num: 1263
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;pkg: Tpetra
PULLREQUESTNUM 8804
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetra_8794_new
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA b6c16fb
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA ab5db94

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0_debug

  • Build Num: 1758
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;pkg: Tpetra
PULLREQUESTNUM 8804
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetra_8794_new
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA b6c16fb
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA ab5db94

Build Information

Test Name: Trilinos_pullrequest_intel_17.0.1

  • Build Num: 9113
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;pkg: Tpetra
PULLREQUESTNUM 8804
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetra_8794_new
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA b6c16fb
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA ab5db94

Build Information

Test Name: Trilinos_pullrequest_cuda_10.1.105

  • Build Num: 578
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;pkg: Tpetra
PULLREQUESTNUM 8804
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetra_8794_new
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA b6c16fb
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA ab5db94

Build Information

Test Name: Trilinos_pullrequest_clang_10.0.0

  • Build Num: 1940
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;pkg: Tpetra
PULLREQUESTNUM 8804
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetra_8794_new
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA b6c16fb
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA ab5db94

Build Information

Test Name: Trilinos_pullrequest_python_3

  • Build Num: 4615
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;pkg: Tpetra
PULLREQUESTNUM 8804
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetra_8794_new
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA b6c16fb
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA ab5db94
Console Output (last 100 lines) : Trilinos_pullrequest_gcc_8.3.0 # 3674 (click to expand)

Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on ascic141-trilinos (trilinos-haswell trilinos-any trilinos-37) in workspace /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0
The recommended git tool is: NONE
using credential d114a317-3cfb-4285-8fc7-79ae654877f4
 > git rev-parse --is-inside-work-tree # timeout=10
Fetching changes from the remote Git repository
 > git config remote.origin.url https://github.com/trilinos/Trilinos # timeout=10
Fetching upstream changes from https://github.com/trilinos/Trilinos
 > git --version # timeout=10
 > git --version # 'git version 1.8.3.1'
using GIT_SSH to set credentials Trilinos ssh key
Setting http proxy: wwwproxy.sandia.gov:80
 > git fetch --tags --progress https://github.com/trilinos/Trilinos +refs/heads/*:refs/remotes/origin/* # timeout=20
ERROR: Error fetching remote repo 'origin'
hudson.plugins.git.GitException: Failed to fetch from https://github.com/trilinos/Trilinos
	at hudson.plugins.git.GitSCM.fetchFrom(GitSCM.java:996)
	at hudson.plugins.git.GitSCM.retrieveChanges(GitSCM.java:1237)
	at hudson.plugins.git.GitSCM.checkout(GitSCM.java:1297)
	at org.jenkinsci.plugins.multiplescms.MultiSCM.checkout(MultiSCM.java:143)
	at hudson.scm.SCM.checkout(SCM.java:505)
	at hudson.model.AbstractProject.checkout(AbstractProject.java:1206)
	at hudson.model.AbstractBuild$AbstractBuildExecution.defaultCheckout(AbstractBuild.java:574)
	at jenkins.scm.SCMCheckoutStrategy.checkout(SCMCheckoutStrategy.java:86)
	at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:499)
	at hudson.model.Run.execute(Run.java:1894)
	at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
	at hudson.model.ResourceController.execute(ResourceController.java:97)
	at hudson.model.Executor.run(Executor.java:428)
Caused by: hudson.plugins.git.GitException: Command "git fetch --tags --progress https://github.com/trilinos/Trilinos +refs/heads/*:refs/remotes/origin/*" returned status code 128:
stdout: 
stderr: remote: Enumerating objects: 19, done.        
remote: Counting objects:   5% (1/19)        
remote: Counting objects:  10% (2/19)        
remote: Counting objects:  15% (3/19)        
remote: Counting objects:  21% (4/19)        
remote: Counting objects:  26% (5/19)        
remote: Counting objects:  31% (6/19)        
remote: Counting objects:  36% (7/19)        
remote: Counting objects:  42% (8/19)        
remote: Counting objects:  47% (9/19)        
remote: Counting objects:  52% (10/19)        
remote: Counting objects:  57% (11/19)        
remote: Counting objects:  63% (12/19)        
remote: Counting objects:  68% (13/19)        
remote: Counting objects:  73% (14/19)        
remote: Counting objects:  78% (15/19)        
remote: Counting objects:  84% (16/19)        
remote: Counting objects:  89% (17/19)        
remote: Counting objects:  94% (18/19)        
remote: Counting objects: 100% (19/19)        
remote: Counting objects: 100% (19/19), done.        
remote: Compressing objects:  25% (1/4)        
remote: Compressing objects:  50% (2/4)        
remote: Compressing objects:  75% (3/4)        
remote: Compressing objects: 100% (4/4)        
remote: Compressing objects: 100% (4/4), done.        
remote: Total 19 (delta 15), reused 19 (delta 15), pack-reused 0        
fatal: unable to look up current user in the passwd file: no such user
Unexpected end of command stream
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandIn(CliGitAPIImpl.java:2450)
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandWithCredentials(CliGitAPIImpl.java:2051)
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.access$500(CliGitAPIImpl.java:84)
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl$1.execute(CliGitAPIImpl.java:573)
at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler$GitCommandMasterToSlaveCallable.call(RemoteGitImpl.java:161)
at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler$GitCommandMasterToSlaveCallable.call(RemoteGitImpl.java:154)
at hudson.remoting.UserRequest.perform(UserRequest.java:211)
at hudson.remoting.UserRequest.perform(UserRequest.java:54)
at hudson.remoting.Request$2.run(Request.java:375)
at hudson.remoting.InterceptingExecutorService$1.call(InterceptingExecutorService.java:73)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
at java.lang.Thread.run(Thread.java:748)
Suppressed: hudson.remoting.Channel$CallSiteStackTrace: Remote call to ascic141-trilinos
	at hudson.remoting.Channel.attachCallSiteStackTrace(Channel.java:1800)
	at hudson.remoting.UserRequest$ExceptionResponse.retrieve(UserRequest.java:357)
	at hudson.remoting.Channel.call(Channel.java:1001)
	at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler.execute(RemoteGitImpl.java:146)
	at sun.reflect.GeneratedMethodAccessor462.invoke(Unknown Source)
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
	at java.lang.reflect.Method.invoke(Method.java:498)
	at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler.invoke(RemoteGitImpl.java:132)
	at com.sun.proxy.$Proxy114.execute(Unknown Source)
	at hudson.plugins.git.GitSCM.fetchFrom(GitSCM.java:994)
	at hudson.plugins.git.GitSCM.retrieveChanges(GitSCM.java:1237)
	at hudson.plugins.git.GitSCM.checkout(GitSCM.java:1297)
	at org.jenkinsci.plugins.multiplescms.MultiSCM.checkout(MultiSCM.java:143)
	at hudson.scm.SCM.checkout(SCM.java:505)
	at hudson.model.AbstractProject.checkout(AbstractProject.java:1206)
	at hudson.model.AbstractBuild$AbstractBuildExecution.defaultCheckout(AbstractBuild.java:574)
	at jenkins.scm.SCMCheckoutStrategy.checkout(SCMCheckoutStrategy.java:86)
	at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:499)
	at hudson.model.Run.execute(Run.java:1894)
	at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
	at hudson.model.ResourceController.execute(ResourceController.java:97)
	at hudson.model.Executor.run(Executor.java:428)

ERROR: Error fetching remote repo 'origin'
Archiving artifacts
[Checks API] No suitable checks publisher found.
Finished: FAILURE

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

Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on ascic144-trilinos (trilinos-haswell trilinos-any trilinos-37) in workspace /scratch/trilinos/jenkins/ascic144/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_serial
The recommended git tool is: NONE
using credential d114a317-3cfb-4285-8fc7-79ae654877f4
 > git rev-parse --is-inside-work-tree # timeout=10
Fetching changes from the remote Git repository
 > git config remote.origin.url https://github.com/trilinos/Trilinos # timeout=10
Fetching upstream changes from https://github.com/trilinos/Trilinos
 > git --version # timeout=10
 > git --version # 'git version 1.8.3.1'
using GIT_SSH to set credentials Trilinos ssh key
Setting http proxy: wwwproxy.sandia.gov:80
 > git fetch --tags --progress https://github.com/trilinos/Trilinos +refs/heads/*:refs/remotes/origin/* # timeout=20
ERROR: Error fetching remote repo 'origin'
hudson.plugins.git.GitException: Failed to fetch from https://github.com/trilinos/Trilinos
	at hudson.plugins.git.GitSCM.fetchFrom(GitSCM.java:996)
	at hudson.plugins.git.GitSCM.retrieveChanges(GitSCM.java:1237)
	at hudson.plugins.git.GitSCM.checkout(GitSCM.java:1297)
	at org.jenkinsci.plugins.multiplescms.MultiSCM.checkout(MultiSCM.java:143)
	at hudson.scm.SCM.checkout(SCM.java:505)
	at hudson.model.AbstractProject.checkout(AbstractProject.java:1206)
	at hudson.model.AbstractBuild$AbstractBuildExecution.defaultCheckout(AbstractBuild.java:574)
	at jenkins.scm.SCMCheckoutStrategy.checkout(SCMCheckoutStrategy.java:86)
	at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:499)
	at hudson.model.Run.execute(Run.java:1894)
	at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
	at hudson.model.ResourceController.execute(ResourceController.java:97)
	at hudson.model.Executor.run(Executor.java:428)
Caused by: hudson.plugins.git.GitException: Command "git fetch --tags --progress https://github.com/trilinos/Trilinos +refs/heads/*:refs/remotes/origin/*" returned status code 128:
stdout: 
stderr: remote: Enumerating objects: 19, done.        
remote: Counting objects:   5% (1/19)        
remote: Counting objects:  10% (2/19)        
remote: Counting objects:  15% (3/19)        
remote: Counting objects:  21% (4/19)        
remote: Counting objects:  26% (5/19)        
remote: Counting objects:  31% (6/19)        
remote: Counting objects:  36% (7/19)        
remote: Counting objects:  42% (8/19)        
remote: Counting objects:  47% (9/19)        
remote: Counting objects:  52% (10/19)        
remote: Counting objects:  57% (11/19)        
remote: Counting objects:  63% (12/19)        
remote: Counting objects:  68% (13/19)        
remote: Counting objects:  73% (14/19)        
remote: Counting objects:  78% (15/19)        
remote: Counting objects:  84% (16/19)        
remote: Counting objects:  89% (17/19)        
remote: Counting objects:  94% (18/19)        
remote: Counting objects: 100% (19/19)        
remote: Counting objects: 100% (19/19), done.        
remote: Compressing objects:  25% (1/4)        
remote: Compressing objects:  50% (2/4)        
remote: Compressing objects:  75% (3/4)        
remote: Compressing objects: 100% (4/4)        
remote: Compressing objects: 100% (4/4), done.        
remote: Total 19 (delta 15), reused 19 (delta 15), pack-reused 0        
fatal: unable to look up current user in the passwd file: no such user
Unexpected end of command stream
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandIn(CliGitAPIImpl.java:2450)
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandWithCredentials(CliGitAPIImpl.java:2051)
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.access$500(CliGitAPIImpl.java:84)
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl$1.execute(CliGitAPIImpl.java:573)
at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler$GitCommandMasterToSlaveCallable.call(RemoteGitImpl.java:161)
at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler$GitCommandMasterToSlaveCallable.call(RemoteGitImpl.java:154)
at hudson.remoting.UserRequest.perform(UserRequest.java:211)
at hudson.remoting.UserRequest.perform(UserRequest.java:54)
at hudson.remoting.Request$2.run(Request.java:375)
at hudson.remoting.InterceptingExecutorService$1.call(InterceptingExecutorService.java:73)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
at java.lang.Thread.run(Thread.java:748)
Suppressed: hudson.remoting.Channel$CallSiteStackTrace: Remote call to ascic144-trilinos
	at hudson.remoting.Channel.attachCallSiteStackTrace(Channel.java:1800)
	at hudson.remoting.UserRequest$ExceptionResponse.retrieve(UserRequest.java:357)
	at hudson.remoting.Channel.call(Channel.java:1001)
	at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler.execute(RemoteGitImpl.java:146)
	at sun.reflect.GeneratedMethodAccessor462.invoke(Unknown Source)
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
	at java.lang.reflect.Method.invoke(Method.java:498)
	at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler.invoke(RemoteGitImpl.java:132)
	at com.sun.proxy.$Proxy114.execute(Unknown Source)
	at hudson.plugins.git.GitSCM.fetchFrom(GitSCM.java:994)
	at hudson.plugins.git.GitSCM.retrieveChanges(GitSCM.java:1237)
	at hudson.plugins.git.GitSCM.checkout(GitSCM.java:1297)
	at org.jenkinsci.plugins.multiplescms.MultiSCM.checkout(MultiSCM.java:143)
	at hudson.scm.SCM.checkout(SCM.java:505)
	at hudson.model.AbstractProject.checkout(AbstractProject.java:1206)
	at hudson.model.AbstractBuild$AbstractBuildExecution.defaultCheckout(AbstractBuild.java:574)
	at jenkins.scm.SCMCheckoutStrategy.checkout(SCMCheckoutStrategy.java:86)
	at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:499)
	at hudson.model.Run.execute(Run.java:1894)
	at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
	at hudson.model.ResourceController.execute(ResourceController.java:97)
	at hudson.model.Executor.run(Executor.java:428)

ERROR: Error fetching remote repo 'origin'
Archiving artifacts
[Checks API] No suitable checks publisher found.
Finished: FAILURE

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

Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on ascic158-trilinos (trilinos-broadwell trilinos-32 trilinos-any trilinos-37) in workspace /scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_debug
The recommended git tool is: NONE
using credential d114a317-3cfb-4285-8fc7-79ae654877f4
 > git rev-parse --is-inside-work-tree # timeout=10
Fetching changes from the remote Git repository
 > git config remote.origin.url https://github.com/trilinos/Trilinos # timeout=10
Fetching upstream changes from https://github.com/trilinos/Trilinos
 > git --version # timeout=10
 > git --version # 'git version 1.8.3.1'
using GIT_SSH to set credentials Trilinos ssh key
Setting http proxy: wwwproxy.sandia.gov:80
 > git fetch --tags --progress https://github.com/trilinos/Trilinos +refs/heads/*:refs/remotes/origin/* # timeout=20
ERROR: Error fetching remote repo 'origin'
hudson.plugins.git.GitException: Failed to fetch from https://github.com/trilinos/Trilinos
	at hudson.plugins.git.GitSCM.fetchFrom(GitSCM.java:996)
	at hudson.plugins.git.GitSCM.retrieveChanges(GitSCM.java:1237)
	at hudson.plugins.git.GitSCM.checkout(GitSCM.java:1297)
	at org.jenkinsci.plugins.multiplescms.MultiSCM.checkout(MultiSCM.java:143)
	at hudson.scm.SCM.checkout(SCM.java:505)
	at hudson.model.AbstractProject.checkout(AbstractProject.java:1206)
	at hudson.model.AbstractBuild$AbstractBuildExecution.defaultCheckout(AbstractBuild.java:574)
	at jenkins.scm.SCMCheckoutStrategy.checkout(SCMCheckoutStrategy.java:86)
	at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:499)
	at hudson.model.Run.execute(Run.java:1894)
	at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
	at hudson.model.ResourceController.execute(ResourceController.java:97)
	at hudson.model.Executor.run(Executor.java:428)
Caused by: hudson.plugins.git.GitException: Command "git fetch --tags --progress https://github.com/trilinos/Trilinos +refs/heads/*:refs/remotes/origin/*" returned status code 128:
stdout: 
stderr: remote: Enumerating objects: 19, done.        
remote: Counting objects:   5% (1/19)        
remote: Counting objects:  10% (2/19)        
remote: Counting objects:  15% (3/19)        
remote: Counting objects:  21% (4/19)        
remote: Counting objects:  26% (5/19)        
remote: Counting objects:  31% (6/19)        
remote: Counting objects:  36% (7/19)        
remote: Counting objects:  42% (8/19)        
remote: Counting objects:  47% (9/19)        
remote: Counting objects:  52% (10/19)        
remote: Counting objects:  57% (11/19)        
remote: Counting objects:  63% (12/19)        
remote: Counting objects:  68% (13/19)        
remote: Counting objects:  73% (14/19)        
remote: Counting objects:  78% (15/19)        
remote: Counting objects:  84% (16/19)        
remote: Counting objects:  89% (17/19)        
remote: Counting objects:  94% (18/19)        
remote: Counting objects: 100% (19/19)        
remote: Counting objects: 100% (19/19), done.        
remote: Compressing objects:  25% (1/4)        
remote: Compressing objects:  50% (2/4)        
remote: Compressing objects:  75% (3/4)        
remote: Compressing objects: 100% (4/4)        
remote: Compressing objects: 100% (4/4), done.        
remote: Total 19 (delta 15), reused 19 (delta 15), pack-reused 0        
fatal: unable to look up current user in the passwd file: no such user
Unexpected end of command stream
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandIn(CliGitAPIImpl.java:2450)
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandWithCredentials(CliGitAPIImpl.java:2051)
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.access$500(CliGitAPIImpl.java:84)
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl$1.execute(CliGitAPIImpl.java:573)
at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler$GitCommandMasterToSlaveCallable.call(RemoteGitImpl.java:161)
at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler$GitCommandMasterToSlaveCallable.call(RemoteGitImpl.java:154)
at hudson.remoting.UserRequest.perform(UserRequest.java:211)
at hudson.remoting.UserRequest.perform(UserRequest.java:54)
at hudson.remoting.Request$2.run(Request.java:375)
at hudson.remoting.InterceptingExecutorService$1.call(InterceptingExecutorService.java:73)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
at java.lang.Thread.run(Thread.java:748)
Suppressed: hudson.remoting.Channel$CallSiteStackTrace: Remote call to ascic158-trilinos
	at hudson.remoting.Channel.attachCallSiteStackTrace(Channel.java:1800)
	at hudson.remoting.UserRequest$ExceptionResponse.retrieve(UserRequest.java:357)
	at hudson.remoting.Channel.call(Channel.java:1001)
	at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler.execute(RemoteGitImpl.java:146)
	at sun.reflect.GeneratedMethodAccessor462.invoke(Unknown Source)
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
	at java.lang.reflect.Method.invoke(Method.java:498)
	at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler.invoke(RemoteGitImpl.java:132)
	at com.sun.proxy.$Proxy114.execute(Unknown Source)
	at hudson.plugins.git.GitSCM.fetchFrom(GitSCM.java:994)
	at hudson.plugins.git.GitSCM.retrieveChanges(GitSCM.java:1237)
	at hudson.plugins.git.GitSCM.checkout(GitSCM.java:1297)
	at org.jenkinsci.plugins.multiplescms.MultiSCM.checkout(MultiSCM.java:143)
	at hudson.scm.SCM.checkout(SCM.java:505)
	at hudson.model.AbstractProject.checkout(AbstractProject.java:1206)
	at hudson.model.AbstractBuild$AbstractBuildExecution.defaultCheckout(AbstractBuild.java:574)
	at jenkins.scm.SCMCheckoutStrategy.checkout(SCMCheckoutStrategy.java:86)
	at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:499)
	at hudson.model.Run.execute(Run.java:1894)
	at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
	at hudson.model.ResourceController.execute(ResourceController.java:97)
	at hudson.model.Executor.run(Executor.java:428)

ERROR: Error fetching remote repo 'origin'
Archiving artifacts
[Checks API] No suitable checks publisher found.
Finished: FAILURE

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

Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on ascic158-trilinos (trilinos-broadwell trilinos-32 trilinos-any trilinos-37) in workspace /scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1
The recommended git tool is: NONE
No credentials specified
 > git rev-parse --is-inside-work-tree # timeout=10
Fetching changes from the remote Git repository
 > git config remote.origin.url https://github.com/trilinos/Trilinos # timeout=10
Fetching upstream changes from https://github.com/trilinos/Trilinos
 > git --version # timeout=10
 > git --version # 'git version 1.8.3.1'
Setting http proxy: wwwproxy.sandia.gov:80
 > git fetch --tags --progress https://github.com/trilinos/Trilinos +refs/heads/*:refs/remotes/origin/* # timeout=20
ERROR: Error fetching remote repo 'origin'
hudson.plugins.git.GitException: Failed to fetch from https://github.com/trilinos/Trilinos
	at hudson.plugins.git.GitSCM.fetchFrom(GitSCM.java:996)
	at hudson.plugins.git.GitSCM.retrieveChanges(GitSCM.java:1237)
	at hudson.plugins.git.GitSCM.checkout(GitSCM.java:1297)
	at org.jenkinsci.plugins.multiplescms.MultiSCM.checkout(MultiSCM.java:143)
	at hudson.scm.SCM.checkout(SCM.java:505)
	at hudson.model.AbstractProject.checkout(AbstractProject.java:1206)
	at hudson.model.AbstractBuild$AbstractBuildExecution.defaultCheckout(AbstractBuild.java:574)
	at jenkins.scm.SCMCheckoutStrategy.checkout(SCMCheckoutStrategy.java:86)
	at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:499)
	at hudson.model.Run.execute(Run.java:1894)
	at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
	at hudson.model.ResourceController.execute(ResourceController.java:97)
	at hudson.model.Executor.run(Executor.java:428)
Caused by: hudson.plugins.git.GitException: Command "git fetch --tags --progress https://github.com/trilinos/Trilinos +refs/heads/*:refs/remotes/origin/*" returned status code 128:
stdout: 
stderr: remote: Enumerating objects: 19, done.        
remote: Counting objects:   5% (1/19)        
remote: Counting objects:  10% (2/19)        
remote: Counting objects:  15% (3/19)        
remote: Counting objects:  21% (4/19)        
remote: Counting objects:  26% (5/19)        
remote: Counting objects:  31% (6/19)        
remote: Counting objects:  36% (7/19)        
remote: Counting objects:  42% (8/19)        
remote: Counting objects:  47% (9/19)        
remote: Counting objects:  52% (10/19)        
remote: Counting objects:  57% (11/19)        
remote: Counting objects:  63% (12/19)        
remote: Counting objects:  68% (13/19)        
remote: Counting objects:  73% (14/19)        
remote: Counting objects:  78% (15/19)        
remote: Counting objects:  84% (16/19)        
remote: Counting objects:  89% (17/19)        
remote: Counting objects:  94% (18/19)        
remote: Counting objects: 100% (19/19)        
remote: Counting objects: 100% (19/19), done.        
remote: Compressing objects:  25% (1/4)        
remote: Compressing objects:  50% (2/4)        
remote: Compressing objects:  75% (3/4)        
remote: Compressing objects: 100% (4/4)        
remote: Compressing objects: 100% (4/4), done.        
remote: Total 19 (delta 15), reused 19 (delta 15), pack-reused 0        
fatal: unable to look up current user in the passwd file: no such user
Unexpected end of command stream
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandIn(CliGitAPIImpl.java:2450)
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandWithCredentials(CliGitAPIImpl.java:2051)
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.access$500(CliGitAPIImpl.java:84)
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl$1.execute(CliGitAPIImpl.java:573)
at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler$GitCommandMasterToSlaveCallable.call(RemoteGitImpl.java:161)
at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler$GitCommandMasterToSlaveCallable.call(RemoteGitImpl.java:154)
at hudson.remoting.UserRequest.perform(UserRequest.java:211)
at hudson.remoting.UserRequest.perform(UserRequest.java:54)
at hudson.remoting.Request$2.run(Request.java:375)
at hudson.remoting.InterceptingExecutorService$1.call(InterceptingExecutorService.java:73)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
at java.lang.Thread.run(Thread.java:748)
Suppressed: hudson.remoting.Channel$CallSiteStackTrace: Remote call to ascic158-trilinos
	at hudson.remoting.Channel.attachCallSiteStackTrace(Channel.java:1800)
	at hudson.remoting.UserRequest$ExceptionResponse.retrieve(UserRequest.java:357)
	at hudson.remoting.Channel.call(Channel.java:1001)
	at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler.execute(RemoteGitImpl.java:146)
	at sun.reflect.GeneratedMethodAccessor462.invoke(Unknown Source)
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
	at java.lang.reflect.Method.invoke(Method.java:498)
	at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler.invoke(RemoteGitImpl.java:132)
	at com.sun.proxy.$Proxy114.execute(Unknown Source)
	at hudson.plugins.git.GitSCM.fetchFrom(GitSCM.java:994)
	at hudson.plugins.git.GitSCM.retrieveChanges(GitSCM.java:1237)
	at hudson.plugins.git.GitSCM.checkout(GitSCM.java:1297)
	at org.jenkinsci.plugins.multiplescms.MultiSCM.checkout(MultiSCM.java:143)
	at hudson.scm.SCM.checkout(SCM.java:505)
	at hudson.model.AbstractProject.checkout(AbstractProject.java:1206)
	at hudson.model.AbstractBuild$AbstractBuildExecution.defaultCheckout(AbstractBuild.java:574)
	at jenkins.scm.SCMCheckoutStrategy.checkout(SCMCheckoutStrategy.java:86)
	at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:499)
	at hudson.model.Run.execute(Run.java:1894)
	at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
	at hudson.model.ResourceController.execute(ResourceController.java:97)
	at hudson.model.Executor.run(Executor.java:428)

ERROR: Error fetching remote repo 'origin'
Archiving artifacts
[Checks API] No suitable checks publisher found.
Finished: FAILURE

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

    ..................................................  Size: 11150K
    ..................................................  Size: 11200K
    ..................................................  Size: 11249K
    ..................................................  Size: 11299K
    ..................................................  Size: 11350K
    ..................................................  Size: 11400K
    ..................................................  Size: 11450K
    ..................................................  Size: 11499K
    ..................................................  Size: 11549K
    ..................................................  Size: 11599K
    ..................................................  Size: 11649K
    ..................................................  Size: 11700K
    ..................................................  Size: 11750K
    ..................................................  Size: 11799K
    ..................................................  Size: 11849K
    ..................................................  Size: 11899K
    ..................................................  Size: 11950K
    ..................................................  Size: 12000K
    ..................................................  Size: 12050K
    ..................................................  Size: 12099K
    ..................................................  Size: 12149K
    ..................................................  Size: 12199K
    ..................................................  Size: 12249K
    ..................................................  Size: 12300K
    ..................................................  Size: 12350K
    ..................................................  Size: 12400K
    ..................................................  Size: 12449K
    ..................................................  Size: 12500K
    ..................................................  Size: 12550K
    ..................................................  Size: 12600K
    ..................................................  Size: 12650K
    ..................................................  Size: 12700K
    ..................................................  Size: 12750K
    ..................................................  Size: 12800K
    ..................................................  Size: 12850K
    ..................................................  Size: 12900K
    ..................................................  Size: 12950K
    ..................................................  Size: 13000K
    ..................................................  Size: 13050K
    ..................................................  Size: 13100K
    ..................................................  Size: 13150K
    ..................................................  Size: 13199K
    ..................................................  Size: 13249K
    ..................................................  Size: 13299K
    ..................................................  Size: 13349K
    ..................................................  Size: 13399K
    ..................................................  Size: 13449K
    ..................................................  Size: 13499K
    ..................................................  Size: 13549K
    ..................................................  Size: 13599K
    ..................................................  Size: 13650K
    ..................................................  Size: 13699K
    ..................................................  Size: 13750K
    .................................... Size of output: 13786K
Build succeeded.
build submit error = 0
Starting testing step.
CMake Error at /home/trilinos/jenkins/ride/workspace/trilinos-folder/Trilinos_pullrequest_cuda_10.1.105/TFW_testing_single_configure_prototype/simple_testing.cmake:218 (message):
  Test failed with error -1

test submit error = 0
File upload submit error = 0

Enabled Packages:
-- Setting Trilinos_ENABLE_TpetraCore = ON

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

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

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

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

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

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

Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on ascic166-trilinos (trilinos-32 trilinos-skylake trilinos-any) in workspace /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_clang_10.0.0
The recommended git tool is: NONE
using credential d114a317-3cfb-4285-8fc7-79ae654877f4
 > git rev-parse --is-inside-work-tree # timeout=10
Fetching changes from the remote Git repository
 > git config remote.origin.url https://github.com/trilinos/Trilinos # timeout=10
Fetching upstream changes from https://github.com/trilinos/Trilinos
 > git --version # timeout=10
 > git --version # 'git version 1.8.3.1'
using GIT_SSH to set credentials Trilinos ssh key
Setting http proxy: wwwproxy.sandia.gov:80
 > git fetch --tags --progress https://github.com/trilinos/Trilinos +refs/heads/*:refs/remotes/origin/* # timeout=20
ERROR: Error fetching remote repo 'origin'
hudson.plugins.git.GitException: Failed to fetch from https://github.com/trilinos/Trilinos
	at hudson.plugins.git.GitSCM.fetchFrom(GitSCM.java:996)
	at hudson.plugins.git.GitSCM.retrieveChanges(GitSCM.java:1237)
	at hudson.plugins.git.GitSCM.checkout(GitSCM.java:1297)
	at org.jenkinsci.plugins.multiplescms.MultiSCM.checkout(MultiSCM.java:143)
	at hudson.scm.SCM.checkout(SCM.java:505)
	at hudson.model.AbstractProject.checkout(AbstractProject.java:1206)
	at hudson.model.AbstractBuild$AbstractBuildExecution.defaultCheckout(AbstractBuild.java:574)
	at jenkins.scm.SCMCheckoutStrategy.checkout(SCMCheckoutStrategy.java:86)
	at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:499)
	at hudson.model.Run.execute(Run.java:1894)
	at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
	at hudson.model.ResourceController.execute(ResourceController.java:97)
	at hudson.model.Executor.run(Executor.java:428)
Caused by: hudson.plugins.git.GitException: Command "git fetch --tags --progress https://github.com/trilinos/Trilinos +refs/heads/*:refs/remotes/origin/*" returned status code 128:
stdout: 
stderr: remote: Enumerating objects: 19, done.        
remote: Counting objects:   5% (1/19)        
remote: Counting objects:  10% (2/19)        
remote: Counting objects:  15% (3/19)        
remote: Counting objects:  21% (4/19)        
remote: Counting objects:  26% (5/19)        
remote: Counting objects:  31% (6/19)        
remote: Counting objects:  36% (7/19)        
remote: Counting objects:  42% (8/19)        
remote: Counting objects:  47% (9/19)        
remote: Counting objects:  52% (10/19)        
remote: Counting objects:  57% (11/19)        
remote: Counting objects:  63% (12/19)        
remote: Counting objects:  68% (13/19)        
remote: Counting objects:  73% (14/19)        
remote: Counting objects:  78% (15/19)        
remote: Counting objects:  84% (16/19)        
remote: Counting objects:  89% (17/19)        
remote: Counting objects:  94% (18/19)        
remote: Counting objects: 100% (19/19)        
remote: Counting objects: 100% (19/19), done.        
remote: Compressing objects:  25% (1/4)        
remote: Compressing objects:  50% (2/4)        
remote: Compressing objects:  75% (3/4)        
remote: Compressing objects: 100% (4/4)        
remote: Compressing objects: 100% (4/4), done.        
remote: Total 19 (delta 15), reused 19 (delta 15), pack-reused 0        
fatal: unable to look up current user in the passwd file: no such user
Unexpected end of command stream
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandIn(CliGitAPIImpl.java:2450)
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandWithCredentials(CliGitAPIImpl.java:2051)
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.access$500(CliGitAPIImpl.java:84)
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl$1.execute(CliGitAPIImpl.java:573)
at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler$GitCommandMasterToSlaveCallable.call(RemoteGitImpl.java:161)
at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler$GitCommandMasterToSlaveCallable.call(RemoteGitImpl.java:154)
at hudson.remoting.UserRequest.perform(UserRequest.java:211)
at hudson.remoting.UserRequest.perform(UserRequest.java:54)
at hudson.remoting.Request$2.run(Request.java:375)
at hudson.remoting.InterceptingExecutorService$1.call(InterceptingExecutorService.java:73)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
at java.lang.Thread.run(Thread.java:748)
Suppressed: hudson.remoting.Channel$CallSiteStackTrace: Remote call to ascic166-trilinos
	at hudson.remoting.Channel.attachCallSiteStackTrace(Channel.java:1800)
	at hudson.remoting.UserRequest$ExceptionResponse.retrieve(UserRequest.java:357)
	at hudson.remoting.Channel.call(Channel.java:1001)
	at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler.execute(RemoteGitImpl.java:146)
	at sun.reflect.GeneratedMethodAccessor462.invoke(Unknown Source)
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
	at java.lang.reflect.Method.invoke(Method.java:498)
	at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler.invoke(RemoteGitImpl.java:132)
	at com.sun.proxy.$Proxy114.execute(Unknown Source)
	at hudson.plugins.git.GitSCM.fetchFrom(GitSCM.java:994)
	at hudson.plugins.git.GitSCM.retrieveChanges(GitSCM.java:1237)
	at hudson.plugins.git.GitSCM.checkout(GitSCM.java:1297)
	at org.jenkinsci.plugins.multiplescms.MultiSCM.checkout(MultiSCM.java:143)
	at hudson.scm.SCM.checkout(SCM.java:505)
	at hudson.model.AbstractProject.checkout(AbstractProject.java:1206)
	at hudson.model.AbstractBuild$AbstractBuildExecution.defaultCheckout(AbstractBuild.java:574)
	at jenkins.scm.SCMCheckoutStrategy.checkout(SCMCheckoutStrategy.java:86)
	at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:499)
	at hudson.model.Run.execute(Run.java:1894)
	at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
	at hudson.model.ResourceController.execute(ResourceController.java:97)
	at hudson.model.Executor.run(Executor.java:428)

ERROR: Error fetching remote repo 'origin'
Archiving artifacts
[Checks API] No suitable checks publisher found.
Finished: FAILURE

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

Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on ascic144-trilinos (trilinos-haswell trilinos-any trilinos-37) in workspace /scratch/trilinos/jenkins/ascic144/workspace/trilinos-folder/Trilinos_pullrequest_python_3
The recommended git tool is: NONE
using credential d114a317-3cfb-4285-8fc7-79ae654877f4
 > git rev-parse --is-inside-work-tree # timeout=10
Fetching changes from the remote Git repository
 > git config remote.origin.url https://github.com/trilinos/Trilinos # timeout=10
Fetching upstream changes from https://github.com/trilinos/Trilinos
 > git --version # timeout=10
 > git --version # 'git version 1.8.3.1'
using GIT_SSH to set credentials Trilinos ssh key
Setting http proxy: wwwproxy.sandia.gov:80
 > git fetch --tags --progress https://github.com/trilinos/Trilinos +refs/heads/*:refs/remotes/origin/* # timeout=20
ERROR: Error fetching remote repo 'origin'
hudson.plugins.git.GitException: Failed to fetch from https://github.com/trilinos/Trilinos
	at hudson.plugins.git.GitSCM.fetchFrom(GitSCM.java:996)
	at hudson.plugins.git.GitSCM.retrieveChanges(GitSCM.java:1237)
	at hudson.plugins.git.GitSCM.checkout(GitSCM.java:1297)
	at org.jenkinsci.plugins.multiplescms.MultiSCM.checkout(MultiSCM.java:143)
	at hudson.scm.SCM.checkout(SCM.java:505)
	at hudson.model.AbstractProject.checkout(AbstractProject.java:1206)
	at hudson.model.AbstractBuild$AbstractBuildExecution.defaultCheckout(AbstractBuild.java:574)
	at jenkins.scm.SCMCheckoutStrategy.checkout(SCMCheckoutStrategy.java:86)
	at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:499)
	at hudson.model.Run.execute(Run.java:1894)
	at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
	at hudson.model.ResourceController.execute(ResourceController.java:97)
	at hudson.model.Executor.run(Executor.java:428)
Caused by: hudson.plugins.git.GitException: Command "git fetch --tags --progress https://github.com/trilinos/Trilinos +refs/heads/*:refs/remotes/origin/*" returned status code 128:
stdout: 
stderr: remote: Enumerating objects: 142, done.        
remote: Counting objects:   0% (1/142)        
remote: Counting objects:   1% (2/142)        
remote: Counting objects:   2% (3/142)        
remote: Counting objects:   3% (5/142)        
remote: Counting objects:   4% (6/142)        
remote: Counting objects:   5% (8/142)        
remote: Counting objects:   6% (9/142)        
remote: Counting objects:   7% (10/142)        
remote: Counting objects:   8% (12/142)        
remote: Counting objects:   9% (13/142)        
remote: Counting objects:  10% (15/142)        
remote: Counting objects:  11% (16/142)        
remote: Counting objects:  12% (18/142)        
remote: Counting objects:  13% (19/142)        
remote: Counting objects:  14% (20/142)        
remote: Counting objects:  15% (22/142)        
remote: Counting objects:  16% (23/142)        
remote: Counting objects:  17% (25/142)        
remote: Counting objects:  18% (26/142)        
remote: Counting objects:  19% (27/142)        
remote: Counting objects:  20% (29/142)        
remote: Counting objects:  21% (30/142)        
remote: Counting objects:  22% (32/142)        
remote: Counting objects:  23% (33/142)        
remote: Counting objects:  24% (35/142)        
remote: Counting objects:  25% (36/142)        
remote: Counting objects:  26% (37/142)        
remote: Counting objects:  27% (39/142)        
remote: Counting objects:  28% (40/142)        
remote: Counting objects:  29% (42/142)        
remote: Counting objects:  30% (43/142)        
remote: Counting objects:  31% (45/142)        
remote: Counting objects:  32% (46/142)        
remote: Counting objects:  33% (47/142)        
remote: Counting objects:  34% (49/142)        
remote: Counting objects:  35% (50/142)        
remote: Counting objects:  36% (52/142)        
remote: Counting objects:  37% (53/142)        
remote: Counting objects:  38% (54/142)        
remote: Counting objects:  39% (56/142)        
remote: Counting objects:  40% (57/142)        
remote: Counting objects:  41% (59/142)        
remote: Counting objects:  42% (60/142)        
remote: Counting objects:  43% (62/142)        
remote: Counting objects:  44% (63/142)        
remote: Counting objects:  45% (64/142)        
remote: Counting objects:  46% (66/142)        
remote: Counting objects:  47% (67/142)        
remote: Counting objects:  48% (69/142)        
remote: Counting objects:  49% (70/142)        
remote: Counting objects:  50% (71/142)        
remote: Counting objects:  51% (73/142)        
remote: Counting objects:  52% (74/142)        
remote: Counting objects:  53% (76/142)        
remote: Counting objects:  54% (77/142)        
remote: Counting objects:  55% (79/142)        
remote: Counting objects:  56% (80/142)        
remote: Counting objects:  57% (81/142)        
remote: Counting objects:  58% (83/142)        
remote: Counting objects:  59% (84/142)        
remote: Counting objects:  60% (86/142)        
remote: Counting objects:  61% (87/142)        
remote: Counting objects:  62% (89/142)        
remote: Counting objects:  63% (90/142)        
remote: Counting objects:  64% (91/142)        
remote: Counting objects:  65% (93/142)        
remote: Counting objects:  66% (94/142)        
remote: Counting objects:  67% (96/142)        
remote: Counting objects:  68% (97/142)        
remote: Counting objects:  69% (98/142)        
remote: Counting objects:  70% (100/142)        
remote: Counting objects:  71% (101/142)        
remote: Counting objects:  72% (103/142)        
remote: Counting objects:  73% (104/142)        
remote: Counting objects:  74% (106/142)        
remote: Counting objects:  75% (107/142)        
remote: Counting objects:  76% (108/142)        
remote: Counting objects:  77% (110/142)        
remote: Counting objects:  78% (111/142)        
remote: Counting objects:  79% (113/142)        
remote: Counting objects:  80% (114/142)        
remote: Counting objects:  81% (116/142)        
remote: Counting objects:  82% (117/142)        
remote: Counting objects:  83% (118/142)        
remote: Counting objects:  84% (120/142)        
remote: Counting objects:  85% (121/142)        
remote: Counting objects:  86% (123/142)        
remote: Counting objects:  87% (124/142)        
remote: Counting objects:  88% (125/142)        
remote: Counting objects:  89% (127/142)        
remote: Counting objects:  90% (128/142)        
remote: Counting objects:  91% (130/142)        
remote: Counting objects:  92% (131/142)        
remote: Counting objects:  93% (133/142)        
remote: Counting objects:  94% (134/142)        
remote: Counting objects:  95% (135/142)        
remote: Counting objects:  96% (137/142)        
remote: Counting objects:  97% (138/142)        
remote: Counting objects:  98% (140/142)        
remote: Counting objects:  99% (141/142)        
remote: Counting objects: 100% (142/142)        
remote: Counting objects: 100% (142/142), done.        
remote: Compressing objects:  20% (1/5)        
remote: Compressing objects:  40% (2/5)        
remote: Compressing objects:  60% (3/5)        
remote: Compressing objects:  80% (4/5)        
remote: Compressing objects: 100% (5/5)        
remote: Compressing objects: 100% (5/5), done.        
Receiving objects:   0% (1/169)   
Receiving objects:   1% (2/169)   
Receiving objects:   2% (4/169)   
Receiving objects:   3% (6/169)   
Receiving objects:   4% (7/169)   
Receiving objects:   5% (9/169)   
Receiving objects:   6% (11/169)   
Receiving objects:   7% (12/169)   
Receiving objects:   8% (14/169)   
Receiving objects:   9% (16/169)   
Receiving objects:  10% (17/169)   
Receiving objects:  11% (19/169)   
Receiving objects:  12% (21/169)   
Receiving objects:  13% (22/169)   
Receiving objects:  14% (24/169)   
Receiving objects:  15% (26/169)   
Receiving objects:  16% (28/169)   
Receiving objects:  17% (29/169)   
Receiving objects:  18% (31/169)   
Receiving objects:  19% (33/169)   
Receiving objects:  20% (34/169)   
Receiving objects:  21% (36/169)   
Receiving objects:  22% (38/169)   
Receiving objects:  23% (39/169)   
Receiving objects:  24% (41/169)   
Receiving objects:  25% (43/169)   
Receiving objects:  26% (44/169)   
Receiving objects:  27% (46/169)   
Receiving objects:  28% (48/169)   
Receiving objects:  29% (50/169)   
Receiving objects:  30% (51/169)   
Receiving objects:  31% (53/169)   
Receiving objects:  32% (55/169)   
Receiving objects:  33% (56/169)   
Receiving objects:  34% (58/169)   
Receiving objects:  35% (60/169)   
Receiving objects:  36% (61/169)   
Receiving objects:  37% (63/169)   
Receiving objects:  38% (65/169)   
Receiving objects:  39% (66/169)   
Receiving objects:  40% (68/169)   
Receiving objects:  41% (70/169)   
Receiving objects:  42% (71/169)   
Receiving objects:  43% (73/169)   
Receiving objects:  44% (75/169)   
Receiving objects:  45% (77/169)   
Receiving objects:  46% (78/169)   
Receiving objects:  47% (80/169)   
Receiving objects:  48% (82/169)   
Receiving objects:  49% (83/169)   
Receiving objects:  50% (85/169)   
Receiving objects:  51% (87/169)   
Receiving objects:  52% (88/169)   
Receiving objects:  53% (90/169)   
Receiving objects:  54% (92/169)   
Receiving objects:  55% (93/169)   
Receiving objects:  56% (95/169)   
Receiving objects:  57% (97/169)   
Receiving objects:  58% (99/169)   
Receiving objects:  59% (100/169)   
Receiving objects:  60% (102/169)   
Receiving objects:  61% (104/169)   
Receiving objects:  62% (105/169)   
Receiving objects:  63% (107/169)   
Receiving objects:  64% (109/169)   
Receiving objects:  65% (110/169)   
Receiving objects:  66% (112/169)   
Receiving objects:  67% (114/169)   
Receiving objects:  68% (115/169)   
Receiving objects:  69% (117/169)   
Receiving objects:  70% (119/169)   
Receiving objects:  71% (120/169)   
Receiving objects:  72% (122/169)   
Receiving objects:  73% (124/169)   
Receiving objects:  74% (126/169)   
Receiving objects:  75% (127/169)   
Receiving objects:  76% (129/169)   
Receiving objects:  77% (131/169)   
Receiving objects:  78% (132/169)   
remote: Total 169 (delta 137), reused 141 (delta 137), pack-reused 27        
Receiving objects:  79% (134/169)   
Receiving objects:  80% (136/169)   
Receiving objects:  81% (137/169)   
Receiving objects:  82% (139/169)   
Receiving objects:  83% (141/169)   
Receiving objects:  84% (142/169)   
Receiving objects:  85% (144/169)   
Receiving objects:  86% (146/169)   
Receiving objects:  87% (148/169)   
Receiving objects:  88% (149/169)   
Receiving objects:  89% (151/169)   
Receiving objects:  90% (153/169)   
Receiving objects:  91% (154/169)   
Receiving objects:  92% (156/169)   
Receiving objects:  93% (158/169)   
Receiving objects:  94% (159/169)   
Receiving objects:  95% (161/169)   
Receiving objects:  96% (163/169)   
Receiving objects:  97% (164/169)   
Receiving objects:  98% (166/169)   
Receiving objects:  99% (168/169)   
Receiving objects: 100% (169/169)   
Receiving objects: 100% (169/169), 87.89 KiB | 0 bytes/s, done.
Resolving deltas:   0% (0/142)   
Resolving deltas:   3% (5/142)   
Resolving deltas:   4% (7/142)   
Resolving deltas:   5% (8/142)   
Resolving deltas:   6% (9/142)   
Resolving deltas:   7% (10/142)   
Resolving deltas:   8% (12/142)   
Resolving deltas:   9% (13/142)   
Resolving deltas:  10% (15/142)   
Resolving deltas:  11% (16/142)   
Resolving deltas:  12% (18/142)   
Resolving deltas:  26% (37/142)   
Resolving deltas:  27% (39/142)   
Resolving deltas:  36% (52/142)   
Resolving deltas:  38% (54/142)   
Resolving deltas:  42% (60/142)   
Resolving deltas:  43% (62/142)   
Resolving deltas:  44% (63/142)   
Resolving deltas:  45% (64/142)   
Resolving deltas:  49% (70/142)   
Resolving deltas:  50% (72/142)   
Resolving deltas:  52% (74/142)   
Resolving deltas:  53% (76/142)   
Resolving deltas:  54% (77/142)   
Resolving deltas:  55% (79/142)   
Resolving deltas:  56% (80/142)   
Resolving deltas:  57% (81/142)   
Resolving deltas:  58% (83/142)   
Resolving deltas:  59% (84/142)   
Resolving deltas:  60% (86/142)   
Resolving deltas:  61% (87/142)   
Resolving deltas:  62% (89/142)   
Resolving deltas:  63% (90/142)   
Resolving deltas:  64% (91/142)   
Resolving deltas:  65% (93/142)   
Resolving deltas:  66% (94/142)   
Resolving deltas:  67% (96/142)   
Resolving deltas:  68% (97/142)   
Resolving deltas:  69% (98/142)   
Resolving deltas:  70% (100/142)   
Resolving deltas:  71% (101/142)   
Resolving deltas:  76% (108/142)   
Resolving deltas:  80% (114/142)   
Resolving deltas:  81% (116/142)   
Resolving deltas:  83% (118/142)   
Resolving deltas:  84% (120/142)   
Resolving deltas:  85% (121/142)   
Resolving deltas:  87% (124/142)   
Resolving deltas:  88% (126/142)   
Resolving deltas:  89% (127/142)   
Resolving deltas:  90% (128/142)   
Resolving deltas:  91% (130/142)   
Resolving deltas:  92% (131/142)   
Resolving deltas:  93% (133/142)   
Resolving deltas:  94% (134/142)   
Resolving deltas:  95% (135/142)   
Resolving deltas:  96% (137/142)   
Resolving deltas:  97% (138/142)   
Resolving deltas:  99% (141/142)   
Resolving deltas: 100% (142/142)   
Resolving deltas: 100% (142/142), completed with 75 local objects.
fatal: unable to look up current user in the passwd file: no such user
Unexpected end of command stream
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandIn(CliGitAPIImpl.java:2450)
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandWithCredentials(CliGitAPIImpl.java:2051)
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.access$500(CliGitAPIImpl.java:84)
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl$1.execute(CliGitAPIImpl.java:573)
at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler$GitCommandMasterToSlaveCallable.call(RemoteGitImpl.java:161)
at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler$GitCommandMasterToSlaveCallable.call(RemoteGitImpl.java:154)
at hudson.remoting.UserRequest.perform(UserRequest.java:211)
at hudson.remoting.UserRequest.perform(UserRequest.java:54)
at hudson.remoting.Request$2.run(Request.java:375)
at hudson.remoting.InterceptingExecutorService$1.call(InterceptingExecutorService.java:73)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
at java.lang.Thread.run(Thread.java:748)
Suppressed: hudson.remoting.Channel$CallSiteStackTrace: Remote call to ascic144-trilinos
	at hudson.remoting.Channel.attachCallSiteStackTrace(Channel.java:1800)
	at hudson.remoting.UserRequest$ExceptionResponse.retrieve(UserRequest.java:357)
	at hudson.remoting.Channel.call(Channel.java:1001)
	at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler.execute(RemoteGitImpl.java:146)
	at sun.reflect.GeneratedMethodAccessor462.invoke(Unknown Source)
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
	at java.lang.reflect.Method.invoke(Method.java:498)
	at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler.invoke(RemoteGitImpl.java:132)
	at com.sun.proxy.$Proxy114.execute(Unknown Source)
	at hudson.plugins.git.GitSCM.fetchFrom(GitSCM.java:994)
	at hudson.plugins.git.GitSCM.retrieveChanges(GitSCM.java:1237)
	at hudson.plugins.git.GitSCM.checkout(GitSCM.java:1297)
	at org.jenkinsci.plugins.multiplescms.MultiSCM.checkout(MultiSCM.java:143)
	at hudson.scm.SCM.checkout(SCM.java:505)
	at hudson.model.AbstractProject.checkout(AbstractProject.java:1206)
	at hudson.model.AbstractBuild$AbstractBuildExecution.defaultCheckout(AbstractBuild.java:574)
	at jenkins.scm.SCMCheckoutStrategy.checkout(SCMCheckoutStrategy.java:86)
	at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:499)
	at hudson.model.Run.execute(Run.java:1894)
	at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
	at hudson.model.ResourceController.execute(ResourceController.java:97)
	at hudson.model.Executor.run(Executor.java:428)

ERROR: Error fetching remote repo 'origin'
Archiving artifacts
[Checks API] No suitable checks publisher found.
Finished: FAILURE


CDash Test Results for PR# 8804.


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_8.3.0

  • Build Num: 3679
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;pkg: Tpetra
PULLREQUESTNUM 8804
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetra_8794_new
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA b6c16fb
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA ab5db94

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0_serial

  • Build Num: 1268
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;pkg: Tpetra
PULLREQUESTNUM 8804
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetra_8794_new
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA b6c16fb
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA ab5db94

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0_debug

  • Build Num: 1763
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;pkg: Tpetra
PULLREQUESTNUM 8804
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetra_8794_new
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA b6c16fb
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA ab5db94

Build Information

Test Name: Trilinos_pullrequest_intel_17.0.1

  • Build Num: 9118
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;pkg: Tpetra
PULLREQUESTNUM 8804
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetra_8794_new
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA b6c16fb
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA ab5db94

Build Information

Test Name: Trilinos_pullrequest_cuda_10.1.105

  • Build Num: 583
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;pkg: Tpetra
PULLREQUESTNUM 8804
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetra_8794_new
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA b6c16fb
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA ab5db94

Build Information

Test Name: Trilinos_pullrequest_clang_10.0.0

  • Build Num: 1945
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;pkg: Tpetra
PULLREQUESTNUM 8804
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetra_8794_new
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA b6c16fb
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA ab5db94

Build Information

Test Name: Trilinos_pullrequest_python_3

  • Build Num: 4620
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;pkg: Tpetra
PULLREQUESTNUM 8804
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetra_8794_new
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA b6c16fb
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA ab5db94

Using Repos:

Repo: TRILINOS (trilinos/Trilinos)
  • Branch: tpetra_8794_new
  • SHA: b6c16fb
  • Mode: TEST_REPO

Pull Request Author: kddevin

@trilinos-autotester
Copy link
Contributor

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

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

Pull Request Auto Testing has FAILED (click to expand)

Build Information

Test Name: Trilinos_pullrequest_gcc_8.3.0

  • Build Num: 3679
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;pkg: Tpetra
PULLREQUESTNUM 8804
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetra_8794_new
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA b6c16fb
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA ab5db94

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0_serial

  • Build Num: 1268
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;pkg: Tpetra
PULLREQUESTNUM 8804
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetra_8794_new
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA b6c16fb
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA ab5db94

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0_debug

  • Build Num: 1763
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;pkg: Tpetra
PULLREQUESTNUM 8804
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetra_8794_new
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA b6c16fb
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA ab5db94

Build Information

Test Name: Trilinos_pullrequest_intel_17.0.1

  • Build Num: 9118
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;pkg: Tpetra
PULLREQUESTNUM 8804
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetra_8794_new
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA b6c16fb
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA ab5db94

Build Information

Test Name: Trilinos_pullrequest_cuda_10.1.105

  • Build Num: 583
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;pkg: Tpetra
PULLREQUESTNUM 8804
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetra_8794_new
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA b6c16fb
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA ab5db94

Build Information

Test Name: Trilinos_pullrequest_clang_10.0.0

  • Build Num: 1945
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;pkg: Tpetra
PULLREQUESTNUM 8804
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetra_8794_new
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA b6c16fb
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA ab5db94

Build Information

Test Name: Trilinos_pullrequest_python_3

  • Build Num: 4620
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;pkg: Tpetra
PULLREQUESTNUM 8804
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetra_8794_new
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA b6c16fb
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA ab5db94
Console Output (last 100 lines) : Trilinos_pullrequest_gcc_8.3.0 # 3679 (click to expand)

Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on ascic141-trilinos (trilinos-haswell trilinos-any trilinos-37) in workspace /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0
The recommended git tool is: NONE
using credential d114a317-3cfb-4285-8fc7-79ae654877f4
 > git rev-parse --is-inside-work-tree # timeout=10
Fetching changes from the remote Git repository
 > git config remote.origin.url https://github.com/trilinos/Trilinos # timeout=10
Fetching upstream changes from https://github.com/trilinos/Trilinos
 > git --version # timeout=10
 > git --version # 'git version 1.8.3.1'
using GIT_SSH to set credentials Trilinos ssh key
Setting http proxy: wwwproxy.sandia.gov:80
 > git fetch --tags --progress https://github.com/trilinos/Trilinos +refs/heads/*:refs/remotes/origin/* # timeout=20
ERROR: Error fetching remote repo 'origin'
hudson.plugins.git.GitException: Failed to fetch from https://github.com/trilinos/Trilinos
	at hudson.plugins.git.GitSCM.fetchFrom(GitSCM.java:996)
	at hudson.plugins.git.GitSCM.retrieveChanges(GitSCM.java:1237)
	at hudson.plugins.git.GitSCM.checkout(GitSCM.java:1297)
	at org.jenkinsci.plugins.multiplescms.MultiSCM.checkout(MultiSCM.java:143)
	at hudson.scm.SCM.checkout(SCM.java:505)
	at hudson.model.AbstractProject.checkout(AbstractProject.java:1206)
	at hudson.model.AbstractBuild$AbstractBuildExecution.defaultCheckout(AbstractBuild.java:574)
	at jenkins.scm.SCMCheckoutStrategy.checkout(SCMCheckoutStrategy.java:86)
	at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:499)
	at hudson.model.Run.execute(Run.java:1894)
	at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
	at hudson.model.ResourceController.execute(ResourceController.java:97)
	at hudson.model.Executor.run(Executor.java:428)
Caused by: hudson.plugins.git.GitException: Command "git fetch --tags --progress https://github.com/trilinos/Trilinos +refs/heads/*:refs/remotes/origin/*" returned status code 128:
stdout: 
stderr: fatal: unable to look up current user in the passwd file: no such user
Unexpected end of command stream
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandIn(CliGitAPIImpl.java:2450)
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandWithCredentials(CliGitAPIImpl.java:2051)
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.access$500(CliGitAPIImpl.java:84)
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl$1.execute(CliGitAPIImpl.java:573)
at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler$GitCommandMasterToSlaveCallable.call(RemoteGitImpl.java:161)
at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler$GitCommandMasterToSlaveCallable.call(RemoteGitImpl.java:154)
at hudson.remoting.UserRequest.perform(UserRequest.java:211)
at hudson.remoting.UserRequest.perform(UserRequest.java:54)
at hudson.remoting.Request$2.run(Request.java:375)
at hudson.remoting.InterceptingExecutorService$1.call(InterceptingExecutorService.java:73)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
at java.lang.Thread.run(Thread.java:748)
Suppressed: hudson.remoting.Channel$CallSiteStackTrace: Remote call to ascic141-trilinos
	at hudson.remoting.Channel.attachCallSiteStackTrace(Channel.java:1800)
	at hudson.remoting.UserRequest$ExceptionResponse.retrieve(UserRequest.java:357)
	at hudson.remoting.Channel.call(Channel.java:1001)
	at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler.execute(RemoteGitImpl.java:146)
	at sun.reflect.GeneratedMethodAccessor462.invoke(Unknown Source)
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
	at java.lang.reflect.Method.invoke(Method.java:498)
	at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler.invoke(RemoteGitImpl.java:132)
	at com.sun.proxy.$Proxy114.execute(Unknown Source)
	at hudson.plugins.git.GitSCM.fetchFrom(GitSCM.java:994)
	at hudson.plugins.git.GitSCM.retrieveChanges(GitSCM.java:1237)
	at hudson.plugins.git.GitSCM.checkout(GitSCM.java:1297)
	at org.jenkinsci.plugins.multiplescms.MultiSCM.checkout(MultiSCM.java:143)
	at hudson.scm.SCM.checkout(SCM.java:505)
	at hudson.model.AbstractProject.checkout(AbstractProject.java:1206)
	at hudson.model.AbstractBuild$AbstractBuildExecution.defaultCheckout(AbstractBuild.java:574)
	at jenkins.scm.SCMCheckoutStrategy.checkout(SCMCheckoutStrategy.java:86)
	at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:499)
	at hudson.model.Run.execute(Run.java:1894)
	at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
	at hudson.model.ResourceController.execute(ResourceController.java:97)
	at hudson.model.Executor.run(Executor.java:428)

ERROR: Error fetching remote repo 'origin'
Archiving artifacts
[Checks API] No suitable checks publisher found.
Finished: FAILURE

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

Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on ascic144-trilinos (trilinos-haswell trilinos-any trilinos-37) in workspace /scratch/trilinos/jenkins/ascic144/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_serial
The recommended git tool is: NONE
using credential d114a317-3cfb-4285-8fc7-79ae654877f4
 > git rev-parse --is-inside-work-tree # timeout=10
Fetching changes from the remote Git repository
 > git config remote.origin.url https://github.com/trilinos/Trilinos # timeout=10
Fetching upstream changes from https://github.com/trilinos/Trilinos
 > git --version # timeout=10
 > git --version # 'git version 1.8.3.1'
using GIT_SSH to set credentials Trilinos ssh key
Setting http proxy: wwwproxy.sandia.gov:80
 > git fetch --tags --progress https://github.com/trilinos/Trilinos +refs/heads/*:refs/remotes/origin/* # timeout=20
ERROR: Error fetching remote repo 'origin'
hudson.plugins.git.GitException: Failed to fetch from https://github.com/trilinos/Trilinos
	at hudson.plugins.git.GitSCM.fetchFrom(GitSCM.java:996)
	at hudson.plugins.git.GitSCM.retrieveChanges(GitSCM.java:1237)
	at hudson.plugins.git.GitSCM.checkout(GitSCM.java:1297)
	at org.jenkinsci.plugins.multiplescms.MultiSCM.checkout(MultiSCM.java:143)
	at hudson.scm.SCM.checkout(SCM.java:505)
	at hudson.model.AbstractProject.checkout(AbstractProject.java:1206)
	at hudson.model.AbstractBuild$AbstractBuildExecution.defaultCheckout(AbstractBuild.java:574)
	at jenkins.scm.SCMCheckoutStrategy.checkout(SCMCheckoutStrategy.java:86)
	at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:499)
	at hudson.model.Run.execute(Run.java:1894)
	at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
	at hudson.model.ResourceController.execute(ResourceController.java:97)
	at hudson.model.Executor.run(Executor.java:428)
Caused by: hudson.plugins.git.GitException: Command "git fetch --tags --progress https://github.com/trilinos/Trilinos +refs/heads/*:refs/remotes/origin/*" returned status code 128:
stdout: 
stderr: fatal: unable to look up current user in the passwd file: no such user
Unexpected end of command stream
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandIn(CliGitAPIImpl.java:2450)
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandWithCredentials(CliGitAPIImpl.java:2051)
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.access$500(CliGitAPIImpl.java:84)
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl$1.execute(CliGitAPIImpl.java:573)
at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler$GitCommandMasterToSlaveCallable.call(RemoteGitImpl.java:161)
at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler$GitCommandMasterToSlaveCallable.call(RemoteGitImpl.java:154)
at hudson.remoting.UserRequest.perform(UserRequest.java:211)
at hudson.remoting.UserRequest.perform(UserRequest.java:54)
at hudson.remoting.Request$2.run(Request.java:375)
at hudson.remoting.InterceptingExecutorService$1.call(InterceptingExecutorService.java:73)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
at java.lang.Thread.run(Thread.java:748)
Suppressed: hudson.remoting.Channel$CallSiteStackTrace: Remote call to ascic144-trilinos
	at hudson.remoting.Channel.attachCallSiteStackTrace(Channel.java:1800)
	at hudson.remoting.UserRequest$ExceptionResponse.retrieve(UserRequest.java:357)
	at hudson.remoting.Channel.call(Channel.java:1001)
	at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler.execute(RemoteGitImpl.java:146)
	at sun.reflect.GeneratedMethodAccessor462.invoke(Unknown Source)
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
	at java.lang.reflect.Method.invoke(Method.java:498)
	at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler.invoke(RemoteGitImpl.java:132)
	at com.sun.proxy.$Proxy114.execute(Unknown Source)
	at hudson.plugins.git.GitSCM.fetchFrom(GitSCM.java:994)
	at hudson.plugins.git.GitSCM.retrieveChanges(GitSCM.java:1237)
	at hudson.plugins.git.GitSCM.checkout(GitSCM.java:1297)
	at org.jenkinsci.plugins.multiplescms.MultiSCM.checkout(MultiSCM.java:143)
	at hudson.scm.SCM.checkout(SCM.java:505)
	at hudson.model.AbstractProject.checkout(AbstractProject.java:1206)
	at hudson.model.AbstractBuild$AbstractBuildExecution.defaultCheckout(AbstractBuild.java:574)
	at jenkins.scm.SCMCheckoutStrategy.checkout(SCMCheckoutStrategy.java:86)
	at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:499)
	at hudson.model.Run.execute(Run.java:1894)
	at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
	at hudson.model.ResourceController.execute(ResourceController.java:97)
	at hudson.model.Executor.run(Executor.java:428)

ERROR: Error fetching remote repo 'origin'
Archiving artifacts
[Checks API] No suitable checks publisher found.
Finished: FAILURE

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

Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on ascic158-trilinos (trilinos-broadwell trilinos-32 trilinos-any trilinos-37) in workspace /scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_debug
The recommended git tool is: NONE
using credential d114a317-3cfb-4285-8fc7-79ae654877f4
 > git rev-parse --is-inside-work-tree # timeout=10
Fetching changes from the remote Git repository
 > git config remote.origin.url https://github.com/trilinos/Trilinos # timeout=10
Fetching upstream changes from https://github.com/trilinos/Trilinos
 > git --version # timeout=10
 > git --version # 'git version 1.8.3.1'
using GIT_SSH to set credentials Trilinos ssh key
Setting http proxy: wwwproxy.sandia.gov:80
 > git fetch --tags --progress https://github.com/trilinos/Trilinos +refs/heads/*:refs/remotes/origin/* # timeout=20
ERROR: Error fetching remote repo 'origin'
hudson.plugins.git.GitException: Failed to fetch from https://github.com/trilinos/Trilinos
	at hudson.plugins.git.GitSCM.fetchFrom(GitSCM.java:996)
	at hudson.plugins.git.GitSCM.retrieveChanges(GitSCM.java:1237)
	at hudson.plugins.git.GitSCM.checkout(GitSCM.java:1297)
	at org.jenkinsci.plugins.multiplescms.MultiSCM.checkout(MultiSCM.java:143)
	at hudson.scm.SCM.checkout(SCM.java:505)
	at hudson.model.AbstractProject.checkout(AbstractProject.java:1206)
	at hudson.model.AbstractBuild$AbstractBuildExecution.defaultCheckout(AbstractBuild.java:574)
	at jenkins.scm.SCMCheckoutStrategy.checkout(SCMCheckoutStrategy.java:86)
	at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:499)
	at hudson.model.Run.execute(Run.java:1894)
	at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
	at hudson.model.ResourceController.execute(ResourceController.java:97)
	at hudson.model.Executor.run(Executor.java:428)
Caused by: hudson.plugins.git.GitException: Command "git fetch --tags --progress https://github.com/trilinos/Trilinos +refs/heads/*:refs/remotes/origin/*" returned status code 128:
stdout: 
stderr: fatal: unable to look up current user in the passwd file: no such user
Unexpected end of command stream
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandIn(CliGitAPIImpl.java:2450)
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandWithCredentials(CliGitAPIImpl.java:2051)
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.access$500(CliGitAPIImpl.java:84)
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl$1.execute(CliGitAPIImpl.java:573)
at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler$GitCommandMasterToSlaveCallable.call(RemoteGitImpl.java:161)
at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler$GitCommandMasterToSlaveCallable.call(RemoteGitImpl.java:154)
at hudson.remoting.UserRequest.perform(UserRequest.java:211)
at hudson.remoting.UserRequest.perform(UserRequest.java:54)
at hudson.remoting.Request$2.run(Request.java:375)
at hudson.remoting.InterceptingExecutorService$1.call(InterceptingExecutorService.java:73)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
at java.lang.Thread.run(Thread.java:748)
Suppressed: hudson.remoting.Channel$CallSiteStackTrace: Remote call to ascic158-trilinos
	at hudson.remoting.Channel.attachCallSiteStackTrace(Channel.java:1800)
	at hudson.remoting.UserRequest$ExceptionResponse.retrieve(UserRequest.java:357)
	at hudson.remoting.Channel.call(Channel.java:1001)
	at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler.execute(RemoteGitImpl.java:146)
	at sun.reflect.GeneratedMethodAccessor462.invoke(Unknown Source)
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
	at java.lang.reflect.Method.invoke(Method.java:498)
	at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler.invoke(RemoteGitImpl.java:132)
	at com.sun.proxy.$Proxy114.execute(Unknown Source)
	at hudson.plugins.git.GitSCM.fetchFrom(GitSCM.java:994)
	at hudson.plugins.git.GitSCM.retrieveChanges(GitSCM.java:1237)
	at hudson.plugins.git.GitSCM.checkout(GitSCM.java:1297)
	at org.jenkinsci.plugins.multiplescms.MultiSCM.checkout(MultiSCM.java:143)
	at hudson.scm.SCM.checkout(SCM.java:505)
	at hudson.model.AbstractProject.checkout(AbstractProject.java:1206)
	at hudson.model.AbstractBuild$AbstractBuildExecution.defaultCheckout(AbstractBuild.java:574)
	at jenkins.scm.SCMCheckoutStrategy.checkout(SCMCheckoutStrategy.java:86)
	at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:499)
	at hudson.model.Run.execute(Run.java:1894)
	at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
	at hudson.model.ResourceController.execute(ResourceController.java:97)
	at hudson.model.Executor.run(Executor.java:428)

ERROR: Error fetching remote repo 'origin'
Archiving artifacts
[Checks API] No suitable checks publisher found.
Finished: FAILURE

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

Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on ascic158-trilinos (trilinos-broadwell trilinos-32 trilinos-any trilinos-37) in workspace /scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1
The recommended git tool is: NONE
No credentials specified
 > git rev-parse --is-inside-work-tree # timeout=10
Fetching changes from the remote Git repository
 > git config remote.origin.url https://github.com/trilinos/Trilinos # timeout=10
Fetching upstream changes from https://github.com/trilinos/Trilinos
 > git --version # timeout=10
 > git --version # 'git version 1.8.3.1'
Setting http proxy: wwwproxy.sandia.gov:80
 > git fetch --tags --progress https://github.com/trilinos/Trilinos +refs/heads/*:refs/remotes/origin/* # timeout=20
ERROR: Error fetching remote repo 'origin'
hudson.plugins.git.GitException: Failed to fetch from https://github.com/trilinos/Trilinos
	at hudson.plugins.git.GitSCM.fetchFrom(GitSCM.java:996)
	at hudson.plugins.git.GitSCM.retrieveChanges(GitSCM.java:1237)
	at hudson.plugins.git.GitSCM.checkout(GitSCM.java:1297)
	at org.jenkinsci.plugins.multiplescms.MultiSCM.checkout(MultiSCM.java:143)
	at hudson.scm.SCM.checkout(SCM.java:505)
	at hudson.model.AbstractProject.checkout(AbstractProject.java:1206)
	at hudson.model.AbstractBuild$AbstractBuildExecution.defaultCheckout(AbstractBuild.java:574)
	at jenkins.scm.SCMCheckoutStrategy.checkout(SCMCheckoutStrategy.java:86)
	at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:499)
	at hudson.model.Run.execute(Run.java:1894)
	at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
	at hudson.model.ResourceController.execute(ResourceController.java:97)
	at hudson.model.Executor.run(Executor.java:428)
Caused by: hudson.plugins.git.GitException: Command "git fetch --tags --progress https://github.com/trilinos/Trilinos +refs/heads/*:refs/remotes/origin/*" returned status code 128:
stdout: 
stderr: fatal: unable to look up current user in the passwd file: no such user
Unexpected end of command stream
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandIn(CliGitAPIImpl.java:2450)
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandWithCredentials(CliGitAPIImpl.java:2051)
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.access$500(CliGitAPIImpl.java:84)
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl$1.execute(CliGitAPIImpl.java:573)
at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler$GitCommandMasterToSlaveCallable.call(RemoteGitImpl.java:161)
at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler$GitCommandMasterToSlaveCallable.call(RemoteGitImpl.java:154)
at hudson.remoting.UserRequest.perform(UserRequest.java:211)
at hudson.remoting.UserRequest.perform(UserRequest.java:54)
at hudson.remoting.Request$2.run(Request.java:375)
at hudson.remoting.InterceptingExecutorService$1.call(InterceptingExecutorService.java:73)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
at java.lang.Thread.run(Thread.java:748)
Suppressed: hudson.remoting.Channel$CallSiteStackTrace: Remote call to ascic158-trilinos
	at hudson.remoting.Channel.attachCallSiteStackTrace(Channel.java:1800)
	at hudson.remoting.UserRequest$ExceptionResponse.retrieve(UserRequest.java:357)
	at hudson.remoting.Channel.call(Channel.java:1001)
	at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler.execute(RemoteGitImpl.java:146)
	at sun.reflect.GeneratedMethodAccessor462.invoke(Unknown Source)
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
	at java.lang.reflect.Method.invoke(Method.java:498)
	at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler.invoke(RemoteGitImpl.java:132)
	at com.sun.proxy.$Proxy114.execute(Unknown Source)
	at hudson.plugins.git.GitSCM.fetchFrom(GitSCM.java:994)
	at hudson.plugins.git.GitSCM.retrieveChanges(GitSCM.java:1237)
	at hudson.plugins.git.GitSCM.checkout(GitSCM.java:1297)
	at org.jenkinsci.plugins.multiplescms.MultiSCM.checkout(MultiSCM.java:143)
	at hudson.scm.SCM.checkout(SCM.java:505)
	at hudson.model.AbstractProject.checkout(AbstractProject.java:1206)
	at hudson.model.AbstractBuild$AbstractBuildExecution.defaultCheckout(AbstractBuild.java:574)
	at jenkins.scm.SCMCheckoutStrategy.checkout(SCMCheckoutStrategy.java:86)
	at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:499)
	at hudson.model.Run.execute(Run.java:1894)
	at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
	at hudson.model.ResourceController.execute(ResourceController.java:97)
	at hudson.model.Executor.run(Executor.java:428)

ERROR: Error fetching remote repo 'origin'
Archiving artifacts
[Checks API] No suitable checks publisher found.
Finished: FAILURE

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

    ..................................................  Size: 11150K
    ..................................................  Size: 11200K
    ..................................................  Size: 11250K
    ..................................................  Size: 11300K
    ..................................................  Size: 11350K
    ..................................................  Size: 11400K
    ..................................................  Size: 11450K
    ..................................................  Size: 11500K
    ..................................................  Size: 11549K
    ..................................................  Size: 11599K
    ..................................................  Size: 11649K
    ..................................................  Size: 11699K
    ..................................................  Size: 11749K
    ..................................................  Size: 11799K
    ..................................................  Size: 11849K
    ..................................................  Size: 11899K
    ..................................................  Size: 11949K
    ..................................................  Size: 11999K
    ..................................................  Size: 12050K
    ..................................................  Size: 12100K
    ..................................................  Size: 12150K
    ..................................................  Size: 12200K
    ..................................................  Size: 12250K
    ..................................................  Size: 12299K
    ..................................................  Size: 12349K
    ..................................................  Size: 12399K
    ..................................................  Size: 12450K
    ..................................................  Size: 12500K
    ..................................................  Size: 12549K
    ..................................................  Size: 12599K
    ..................................................  Size: 12649K
    ..................................................  Size: 12699K
    ..................................................  Size: 12749K
    ..................................................  Size: 12799K
    ..................................................  Size: 12849K
    ..................................................  Size: 12899K
    ..................................................  Size: 12949K
    ..................................................  Size: 12999K
    ..................................................  Size: 13050K
    ..................................................  Size: 13100K
    ..................................................  Size: 13150K
    ..................................................  Size: 13199K
    ..................................................  Size: 13249K
    ..................................................  Size: 13299K
    ..................................................  Size: 13349K
    ..................................................  Size: 13400K
    ..................................................  Size: 13450K
    ..................................................  Size: 13500K
    ..................................................  Size: 13550K
    ..................................................  Size: 13600K
    ..................................................  Size: 13649K
    ..................................................  Size: 13700K
    ..................................................  Size: 13749K
    ................................... Size of output: 13785K
Build succeeded.
build submit error = 0
Starting testing step.
CMake Error at /home/trilinos/jenkins/ride/workspace/trilinos-folder/Trilinos_pullrequest_cuda_10.1.105/TFW_testing_single_configure_prototype/simple_testing.cmake:218 (message):
  Test failed with error -1

test submit error = 0
File upload submit error = 0

Enabled Packages:
-- Setting Trilinos_ENABLE_TpetraCore = ON

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

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

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

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

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

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

Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on ascic166-trilinos (trilinos-32 trilinos-skylake trilinos-any) in workspace /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_clang_10.0.0
The recommended git tool is: NONE
using credential d114a317-3cfb-4285-8fc7-79ae654877f4
 > git rev-parse --is-inside-work-tree # timeout=10
Fetching changes from the remote Git repository
 > git config remote.origin.url https://github.com/trilinos/Trilinos # timeout=10
Fetching upstream changes from https://github.com/trilinos/Trilinos
 > git --version # timeout=10
 > git --version # 'git version 1.8.3.1'
using GIT_SSH to set credentials Trilinos ssh key
Setting http proxy: wwwproxy.sandia.gov:80
 > git fetch --tags --progress https://github.com/trilinos/Trilinos +refs/heads/*:refs/remotes/origin/* # timeout=20
ERROR: Error fetching remote repo 'origin'
hudson.plugins.git.GitException: Failed to fetch from https://github.com/trilinos/Trilinos
	at hudson.plugins.git.GitSCM.fetchFrom(GitSCM.java:996)
	at hudson.plugins.git.GitSCM.retrieveChanges(GitSCM.java:1237)
	at hudson.plugins.git.GitSCM.checkout(GitSCM.java:1297)
	at org.jenkinsci.plugins.multiplescms.MultiSCM.checkout(MultiSCM.java:143)
	at hudson.scm.SCM.checkout(SCM.java:505)
	at hudson.model.AbstractProject.checkout(AbstractProject.java:1206)
	at hudson.model.AbstractBuild$AbstractBuildExecution.defaultCheckout(AbstractBuild.java:574)
	at jenkins.scm.SCMCheckoutStrategy.checkout(SCMCheckoutStrategy.java:86)
	at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:499)
	at hudson.model.Run.execute(Run.java:1894)
	at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
	at hudson.model.ResourceController.execute(ResourceController.java:97)
	at hudson.model.Executor.run(Executor.java:428)
Caused by: hudson.plugins.git.GitException: Command "git fetch --tags --progress https://github.com/trilinos/Trilinos +refs/heads/*:refs/remotes/origin/*" returned status code 128:
stdout: 
stderr: fatal: unable to look up current user in the passwd file: no such user
Unexpected end of command stream
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandIn(CliGitAPIImpl.java:2450)
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandWithCredentials(CliGitAPIImpl.java:2051)
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.access$500(CliGitAPIImpl.java:84)
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl$1.execute(CliGitAPIImpl.java:573)
at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler$GitCommandMasterToSlaveCallable.call(RemoteGitImpl.java:161)
at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler$GitCommandMasterToSlaveCallable.call(RemoteGitImpl.java:154)
at hudson.remoting.UserRequest.perform(UserRequest.java:211)
at hudson.remoting.UserRequest.perform(UserRequest.java:54)
at hudson.remoting.Request$2.run(Request.java:375)
at hudson.remoting.InterceptingExecutorService$1.call(InterceptingExecutorService.java:73)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
at java.lang.Thread.run(Thread.java:748)
Suppressed: hudson.remoting.Channel$CallSiteStackTrace: Remote call to ascic166-trilinos
	at hudson.remoting.Channel.attachCallSiteStackTrace(Channel.java:1800)
	at hudson.remoting.UserRequest$ExceptionResponse.retrieve(UserRequest.java:357)
	at hudson.remoting.Channel.call(Channel.java:1001)
	at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler.execute(RemoteGitImpl.java:146)
	at sun.reflect.GeneratedMethodAccessor462.invoke(Unknown Source)
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
	at java.lang.reflect.Method.invoke(Method.java:498)
	at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler.invoke(RemoteGitImpl.java:132)
	at com.sun.proxy.$Proxy114.execute(Unknown Source)
	at hudson.plugins.git.GitSCM.fetchFrom(GitSCM.java:994)
	at hudson.plugins.git.GitSCM.retrieveChanges(GitSCM.java:1237)
	at hudson.plugins.git.GitSCM.checkout(GitSCM.java:1297)
	at org.jenkinsci.plugins.multiplescms.MultiSCM.checkout(MultiSCM.java:143)
	at hudson.scm.SCM.checkout(SCM.java:505)
	at hudson.model.AbstractProject.checkout(AbstractProject.java:1206)
	at hudson.model.AbstractBuild$AbstractBuildExecution.defaultCheckout(AbstractBuild.java:574)
	at jenkins.scm.SCMCheckoutStrategy.checkout(SCMCheckoutStrategy.java:86)
	at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:499)
	at hudson.model.Run.execute(Run.java:1894)
	at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
	at hudson.model.ResourceController.execute(ResourceController.java:97)
	at hudson.model.Executor.run(Executor.java:428)

ERROR: Error fetching remote repo 'origin'
Archiving artifacts
[Checks API] No suitable checks publisher found.
Finished: FAILURE

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

Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on ascic144-trilinos (trilinos-haswell trilinos-any trilinos-37) in workspace /scratch/trilinos/jenkins/ascic144/workspace/trilinos-folder/Trilinos_pullrequest_python_3
The recommended git tool is: NONE
using credential d114a317-3cfb-4285-8fc7-79ae654877f4
 > git rev-parse --is-inside-work-tree # timeout=10
Fetching changes from the remote Git repository
 > git config remote.origin.url https://github.com/trilinos/Trilinos # timeout=10
Fetching upstream changes from https://github.com/trilinos/Trilinos
 > git --version # timeout=10
 > git --version # 'git version 1.8.3.1'
using GIT_SSH to set credentials Trilinos ssh key
Setting http proxy: wwwproxy.sandia.gov:80
 > git fetch --tags --progress https://github.com/trilinos/Trilinos +refs/heads/*:refs/remotes/origin/* # timeout=20
ERROR: Error fetching remote repo 'origin'
hudson.plugins.git.GitException: Failed to fetch from https://github.com/trilinos/Trilinos
	at hudson.plugins.git.GitSCM.fetchFrom(GitSCM.java:996)
	at hudson.plugins.git.GitSCM.retrieveChanges(GitSCM.java:1237)
	at hudson.plugins.git.GitSCM.checkout(GitSCM.java:1297)
	at org.jenkinsci.plugins.multiplescms.MultiSCM.checkout(MultiSCM.java:143)
	at hudson.scm.SCM.checkout(SCM.java:505)
	at hudson.model.AbstractProject.checkout(AbstractProject.java:1206)
	at hudson.model.AbstractBuild$AbstractBuildExecution.defaultCheckout(AbstractBuild.java:574)
	at jenkins.scm.SCMCheckoutStrategy.checkout(SCMCheckoutStrategy.java:86)
	at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:499)
	at hudson.model.Run.execute(Run.java:1894)
	at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
	at hudson.model.ResourceController.execute(ResourceController.java:97)
	at hudson.model.Executor.run(Executor.java:428)
Caused by: hudson.plugins.git.GitException: Command "git fetch --tags --progress https://github.com/trilinos/Trilinos +refs/heads/*:refs/remotes/origin/*" returned status code 128:
stdout: 
stderr: fatal: unable to look up current user in the passwd file: no such user
Unexpected end of command stream
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandIn(CliGitAPIImpl.java:2450)
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandWithCredentials(CliGitAPIImpl.java:2051)
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.access$500(CliGitAPIImpl.java:84)
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl$1.execute(CliGitAPIImpl.java:573)
at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler$GitCommandMasterToSlaveCallable.call(RemoteGitImpl.java:161)
at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler$GitCommandMasterToSlaveCallable.call(RemoteGitImpl.java:154)
at hudson.remoting.UserRequest.perform(UserRequest.java:211)
at hudson.remoting.UserRequest.perform(UserRequest.java:54)
at hudson.remoting.Request$2.run(Request.java:375)
at hudson.remoting.InterceptingExecutorService$1.call(InterceptingExecutorService.java:73)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
at java.lang.Thread.run(Thread.java:748)
Suppressed: hudson.remoting.Channel$CallSiteStackTrace: Remote call to ascic144-trilinos
	at hudson.remoting.Channel.attachCallSiteStackTrace(Channel.java:1800)
	at hudson.remoting.UserRequest$ExceptionResponse.retrieve(UserRequest.java:357)
	at hudson.remoting.Channel.call(Channel.java:1001)
	at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler.execute(RemoteGitImpl.java:146)
	at sun.reflect.GeneratedMethodAccessor462.invoke(Unknown Source)
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
	at java.lang.reflect.Method.invoke(Method.java:498)
	at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler.invoke(RemoteGitImpl.java:132)
	at com.sun.proxy.$Proxy114.execute(Unknown Source)
	at hudson.plugins.git.GitSCM.fetchFrom(GitSCM.java:994)
	at hudson.plugins.git.GitSCM.retrieveChanges(GitSCM.java:1237)
	at hudson.plugins.git.GitSCM.checkout(GitSCM.java:1297)
	at org.jenkinsci.plugins.multiplescms.MultiSCM.checkout(MultiSCM.java:143)
	at hudson.scm.SCM.checkout(SCM.java:505)
	at hudson.model.AbstractProject.checkout(AbstractProject.java:1206)
	at hudson.model.AbstractBuild$AbstractBuildExecution.defaultCheckout(AbstractBuild.java:574)
	at jenkins.scm.SCMCheckoutStrategy.checkout(SCMCheckoutStrategy.java:86)
	at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:499)
	at hudson.model.Run.execute(Run.java:1894)
	at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
	at hudson.model.ResourceController.execute(ResourceController.java:97)
	at hudson.model.Executor.run(Executor.java:428)

ERROR: Error fetching remote repo 'origin'
Archiving artifacts
[Checks API] No suitable checks publisher found.
Finished: FAILURE


CDash Test Results for PR# 8804.


Wiki: How to Reproduce PR Testing Builds and Errors.

@trilinos-autotester
Copy link
Contributor

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

@trilinos-autotester
Copy link
Contributor

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

Pull Request Auto Testing STARTING (click to expand)

Build Information

Test Name: Trilinos_pullrequest_gcc_8.3.0

  • Build Num: 3685
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;pkg: Tpetra
PULLREQUESTNUM 8804
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetra_8794_new
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA 05909c0
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA ab5db94

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0_serial

  • Build Num: 1274
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;pkg: Tpetra
PULLREQUESTNUM 8804
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetra_8794_new
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA 05909c0
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA ab5db94

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0_debug

  • Build Num: 1769
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;pkg: Tpetra
PULLREQUESTNUM 8804
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetra_8794_new
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA 05909c0
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA ab5db94

Build Information

Test Name: Trilinos_pullrequest_intel_17.0.1

  • Build Num: 9124
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;pkg: Tpetra
PULLREQUESTNUM 8804
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetra_8794_new
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA 05909c0
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA ab5db94

Build Information

Test Name: Trilinos_pullrequest_cuda_10.1.105

  • Build Num: 589
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;pkg: Tpetra
PULLREQUESTNUM 8804
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetra_8794_new
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA 05909c0
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA ab5db94

Build Information

Test Name: Trilinos_pullrequest_clang_10.0.0

  • Build Num: 1951
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;pkg: Tpetra
PULLREQUESTNUM 8804
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetra_8794_new
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA 05909c0
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA ab5db94

Build Information

Test Name: Trilinos_pullrequest_python_3

  • Build Num: 4626
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;pkg: Tpetra
PULLREQUESTNUM 8804
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetra_8794_new
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA 05909c0
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA ab5db94

Using Repos:

Repo: TRILINOS (trilinos/Trilinos)
  • Branch: tpetra_8794_new
  • SHA: 05909c0
  • Mode: TEST_REPO

Pull Request Author: kddevin

@trilinos-autotester
Copy link
Contributor

Status Flag 'Pull Request AutoTester' - Error: Jenkins Jobs - Error: [Jenkins] Cannot retrieve build running status on build (FATAL: ERROR : [jwrap: self.jserverinst.get_job(self.jobname):106:./support/jenkins_support.py] - General Exception: (502 Server Error: Proxy Error for url: https://ascic-jenkins.sandia.gov/job/trilinos-folder/job/Trilinos_pullrequest_intel_17.0.1/api/python))

@trilinos-autotester
Copy link
Contributor

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

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

Pull Request Auto Testing has FAILED (click to expand)

Build Information

Test Name: Trilinos_pullrequest_gcc_8.3.0

  • Build Num: 3685
  • Status: ERROR

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;pkg: Tpetra
PULLREQUESTNUM 8804
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetra_8794_new
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA 05909c0
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA ab5db94

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0_serial

  • Build Num: 1274
  • Status: ERROR

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;pkg: Tpetra
PULLREQUESTNUM 8804
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetra_8794_new
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA 05909c0
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA ab5db94

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0_debug

  • Build Num: 1769
  • Status: ERROR

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;pkg: Tpetra
PULLREQUESTNUM 8804
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetra_8794_new
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA 05909c0
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA ab5db94

Build Information

Test Name: Trilinos_pullrequest_intel_17.0.1

  • Build Num: 9124
  • Status: ERROR

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;pkg: Tpetra
PULLREQUESTNUM 8804
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetra_8794_new
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA 05909c0
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA ab5db94

Build Information

Test Name: Trilinos_pullrequest_cuda_10.1.105

  • Build Num: 589
  • Status: ERROR

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;pkg: Tpetra
PULLREQUESTNUM 8804
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetra_8794_new
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA 05909c0
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA ab5db94

Build Information

Test Name: Trilinos_pullrequest_clang_10.0.0

  • Build Num: 1951
  • Status: ERROR

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;pkg: Tpetra
PULLREQUESTNUM 8804
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetra_8794_new
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA 05909c0
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA ab5db94

Build Information

Test Name: Trilinos_pullrequest_python_3

  • Build Num: 4626
  • Status: ERROR

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;pkg: Tpetra
PULLREQUESTNUM 8804
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetra_8794_new
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA 05909c0
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA ab5db94
Console Output (last 100 lines) : Trilinos_pullrequest_gcc_8.3.0 # 3685 (click to expand)

Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on ascic144-trilinos (trilinos-haswell trilinos-any trilinos-37) in workspace /scratch/trilinos/jenkins/ascic144/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0
The recommended git tool is: NONE
using credential d114a317-3cfb-4285-8fc7-79ae654877f4
 > git rev-parse --is-inside-work-tree # timeout=10
Fetching changes from the remote Git repository
 > git config remote.origin.url https://github.com/trilinos/Trilinos # timeout=10
Fetching upstream changes from https://github.com/trilinos/Trilinos
 > git --version # timeout=10
 > git --version # 'git version 1.8.3.1'
using GIT_SSH to set credentials Trilinos ssh key
Setting http proxy: wwwproxy.sandia.gov:80
 > git fetch --tags --progress https://github.com/trilinos/Trilinos +refs/heads/*:refs/remotes/origin/* # timeout=20
ERROR: Error fetching remote repo 'origin'
hudson.plugins.git.GitException: Failed to fetch from https://github.com/trilinos/Trilinos
	at hudson.plugins.git.GitSCM.fetchFrom(GitSCM.java:996)
	at hudson.plugins.git.GitSCM.retrieveChanges(GitSCM.java:1237)
	at hudson.plugins.git.GitSCM.checkout(GitSCM.java:1297)
	at org.jenkinsci.plugins.multiplescms.MultiSCM.checkout(MultiSCM.java:143)
	at hudson.scm.SCM.checkout(SCM.java:505)
	at hudson.model.AbstractProject.checkout(AbstractProject.java:1206)
	at hudson.model.AbstractBuild$AbstractBuildExecution.defaultCheckout(AbstractBuild.java:574)
	at jenkins.scm.SCMCheckoutStrategy.checkout(SCMCheckoutStrategy.java:86)
	at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:499)
	at hudson.model.Run.execute(Run.java:1894)
	at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
	at hudson.model.ResourceController.execute(ResourceController.java:97)
	at hudson.model.Executor.run(Executor.java:428)
Caused by: hudson.plugins.git.GitException: Command "git fetch --tags --progress https://github.com/trilinos/Trilinos +refs/heads/*:refs/remotes/origin/*" returned status code 128:
stdout: 
stderr: remote: Enumerating objects: 76, done.        
remote: Counting objects:   1% (1/76)        
remote: Counting objects:   2% (2/76)        
remote: Counting objects:   3% (3/76)        
remote: Counting objects:   5% (4/76)        
remote: Counting objects:   6% (5/76)        
remote: Counting objects:   7% (6/76)        
remote: Counting objects:   9% (7/76)        
remote: Counting objects:  10% (8/76)        
remote: Counting objects:  11% (9/76)        
remote: Counting objects:  13% (10/76)        
remote: Counting objects:  14% (11/76)        
remote: Counting objects:  15% (12/76)        
remote: Counting objects:  17% (13/76)        
remote: Counting objects:  18% (14/76)        
remote: Counting objects:  19% (15/76)        
remote: Counting objects:  21% (16/76)        
remote: Counting objects:  22% (17/76)        
remote: Counting objects:  23% (18/76)        
remote: Counting objects:  25% (19/76)        
remote: Counting objects:  26% (20/76)        
remote: Counting objects:  27% (21/76)        
remote: Counting objects:  28% (22/76)        
remote: Counting objects:  30% (23/76)        
remote: Counting objects:  31% (24/76)        
remote: Counting objects:  32% (25/76)        
remote: Counting objects:  34% (26/76)        
remote: Counting objects:  35% (27/76)        
remote: Counting objects:  36% (28/76)        
remote: Counting objects:  38% (29/76)        
remote: Counting objects:  39% (30/76)        
remote: Counting objects:  40% (31/76)        
remote: Counting objects:  42% (32/76)        
remote: Counting objects:  43% (33/76)        
remote: Counting objects:  44% (34/76)        
remote: Counting objects:  46% (35/76)        
remote: Counting objects:  47% (36/76)        
remote: Counting objects:  48% (37/76)        
remote: Counting objects:  50% (38/76)        
remote: Counting objects:  51% (39/76)        
remote: Counting objects:  52% (40/76)        
remote: Counting objects:  53% (41/76)        
remote: Counting objects:  55% (42/76)        
remote: Counting objects:  56% (43/76)        
remote: Counting objects:  57% (44/76)        
remote: Counting objects:  59% (45/76)        
remote: Counting objects:  60% (46/76)        
remote: Counting objects:  61% (47/76)        
remote: Counting objects:  63% (48/76)        
remote: Counting objects:  64% (49/76)        
remote: Counting objects:  65% (50/76)        
remote: Counting objects:  67% (51/76)        
remote: Counting objects:  68% (52/76)        
remote: Counting objects:  69% (53/76)        
remote: Counting objects:  71% (54/76)        
remote: Counting objects:  72% (55/76)        
remote: Counting objects:  73% (56/76)        
remote: Counting objects:  75% (57/76)        
remote: Counting objects:  76% (58/76)        
remote: Counting objects:  77% (59/76)        
remote: Counting objects:  78% (60/76)        
remote: Counting objects:  80% (61/76)        
remote: Counting objects:  81% (62/76)        
remote: Counting objects:  82% (63/76)        
remote: Counting objects:  84% (64/76)        
remote: Counting objects:  85% (65/76)        
remote: Counting objects:  86% (66/76)        
remote: Counting objects:  88% (67/76)        
remote: Counting objects:  89% (68/76)        
remote: Counting objects:  90% (69/76)        
remote: Counting objects:  92% (70/76)        
remote: Counting objects:  93% (71/76)        
remote: Counting objects:  94% (72/76)        
remote: Counting objects:  96% (73/76)        
remote: Counting objects:  97% (74/76)        
remote: Counting objects:  98% (75/76)        
remote: Counting objects: 100% (76/76)        
remote: Counting objects: 100% (76/76), done.        
remote: Compressing objects:  14% (1/7)        
remote: Compressing objects:  28% (2/7)        
remote: Compressing objects:  42% (3/7)        
remote: Compressing objects:  57% (4/7)        
remote: Compressing objects:  71% (5/7)        
remote: Compressing objects:  85% (6/7)        
remote: Compressing objects: 100% (7/7)        
remote: Compressing objects: 100% (7/7), done.        
remote: Total 85 (delta 69), reused 75 (delta 69), pack-reused 9        
fatal: unable to look up current user in the passwd file: no such user
Unexpected end of command stream
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandIn(CliGitAPIImpl.java:2450)
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandWithCredentials(CliGitAPIImpl.java:2051)
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.access$500(CliGitAPIImpl.java:84)
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl$1.execute(CliGitAPIImpl.java:573)
at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler$GitCommandMasterToSlaveCallable.call(RemoteGitImpl.java:161)
at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler$GitCommandMasterToSlaveCallable.call(RemoteGitImpl.java:154)
at hudson.remoting.UserRequest.perform(UserRequest.java:211)
at hudson.remoting.UserRequest.perform(UserRequest.java:54)
at hudson.remoting.Request$2.run(Request.java:375)
at hudson.remoting.InterceptingExecutorService$1.call(InterceptingExecutorService.java:73)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
at java.lang.Thread.run(Thread.java:748)
Suppressed: hudson.remoting.Channel$CallSiteStackTrace: Remote call to ascic144-trilinos
	at hudson.remoting.Channel.attachCallSiteStackTrace(Channel.java:1800)
	at hudson.remoting.UserRequest$ExceptionResponse.retrieve(UserRequest.java:357)
	at hudson.remoting.Channel.call(Channel.java:1001)
	at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler.execute(RemoteGitImpl.java:146)
	at sun.reflect.GeneratedMethodAccessor462.invoke(Unknown Source)
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
	at java.lang.reflect.Method.invoke(Method.java:498)
	at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler.invoke(RemoteGitImpl.java:132)
	at com.sun.proxy.$Proxy114.execute(Unknown Source)
	at hudson.plugins.git.GitSCM.fetchFrom(GitSCM.java:994)
	at hudson.plugins.git.GitSCM.retrieveChanges(GitSCM.java:1237)
	at hudson.plugins.git.GitSCM.checkout(GitSCM.java:1297)
	at org.jenkinsci.plugins.multiplescms.MultiSCM.checkout(MultiSCM.java:143)
	at hudson.scm.SCM.checkout(SCM.java:505)
	at hudson.model.AbstractProject.checkout(AbstractProject.java:1206)
	at hudson.model.AbstractBuild$AbstractBuildExecution.defaultCheckout(AbstractBuild.java:574)
	at jenkins.scm.SCMCheckoutStrategy.checkout(SCMCheckoutStrategy.java:86)
	at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:499)
	at hudson.model.Run.execute(Run.java:1894)
	at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
	at hudson.model.ResourceController.execute(ResourceController.java:97)
	at hudson.model.Executor.run(Executor.java:428)

ERROR: Error fetching remote repo 'origin'
Archiving artifacts
[Checks API] No suitable checks publisher found.
Finished: FAILURE

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

Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on ascic144-trilinos (trilinos-haswell trilinos-any trilinos-37) in workspace /scratch/trilinos/jenkins/ascic144/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_serial
The recommended git tool is: NONE
using credential d114a317-3cfb-4285-8fc7-79ae654877f4
 > git rev-parse --is-inside-work-tree # timeout=10
Fetching changes from the remote Git repository
 > git config remote.origin.url https://github.com/trilinos/Trilinos # timeout=10
Fetching upstream changes from https://github.com/trilinos/Trilinos
 > git --version # timeout=10
 > git --version # 'git version 1.8.3.1'
using GIT_SSH to set credentials Trilinos ssh key
Setting http proxy: wwwproxy.sandia.gov:80
 > git fetch --tags --progress https://github.com/trilinos/Trilinos +refs/heads/*:refs/remotes/origin/* # timeout=20
ERROR: Error fetching remote repo 'origin'
hudson.plugins.git.GitException: Failed to fetch from https://github.com/trilinos/Trilinos
	at hudson.plugins.git.GitSCM.fetchFrom(GitSCM.java:996)
	at hudson.plugins.git.GitSCM.retrieveChanges(GitSCM.java:1237)
	at hudson.plugins.git.GitSCM.checkout(GitSCM.java:1297)
	at org.jenkinsci.plugins.multiplescms.MultiSCM.checkout(MultiSCM.java:143)
	at hudson.scm.SCM.checkout(SCM.java:505)
	at hudson.model.AbstractProject.checkout(AbstractProject.java:1206)
	at hudson.model.AbstractBuild$AbstractBuildExecution.defaultCheckout(AbstractBuild.java:574)
	at jenkins.scm.SCMCheckoutStrategy.checkout(SCMCheckoutStrategy.java:86)
	at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:499)
	at hudson.model.Run.execute(Run.java:1894)
	at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
	at hudson.model.ResourceController.execute(ResourceController.java:97)
	at hudson.model.Executor.run(Executor.java:428)
Caused by: hudson.plugins.git.GitException: Command "git fetch --tags --progress https://github.com/trilinos/Trilinos +refs/heads/*:refs/remotes/origin/*" returned status code 128:
stdout: 
stderr: remote: Enumerating objects: 34, done.        
remote: Counting objects:   2% (1/34)        
remote: Counting objects:   5% (2/34)        
remote: Counting objects:   8% (3/34)        
remote: Counting objects:  11% (4/34)        
remote: Counting objects:  14% (5/34)        
remote: Counting objects:  17% (6/34)        
remote: Counting objects:  20% (7/34)        
remote: Counting objects:  23% (8/34)        
remote: Counting objects:  26% (9/34)        
remote: Counting objects:  29% (10/34)        
remote: Counting objects:  32% (11/34)        
remote: Counting objects:  35% (12/34)        
remote: Counting objects:  38% (13/34)        
remote: Counting objects:  41% (14/34)        
remote: Counting objects:  44% (15/34)        
remote: Counting objects:  47% (16/34)        
remote: Counting objects:  50% (17/34)        
remote: Counting objects:  52% (18/34)        
remote: Counting objects:  55% (19/34)        
remote: Counting objects:  58% (20/34)        
remote: Counting objects:  61% (21/34)        
remote: Counting objects:  64% (22/34)        
remote: Counting objects:  67% (23/34)        
remote: Counting objects:  70% (24/34)        
remote: Counting objects:  73% (25/34)        
remote: Counting objects:  76% (26/34)        
remote: Counting objects:  79% (27/34)        
remote: Counting objects:  82% (28/34)        
remote: Counting objects:  85% (29/34)        
remote: Counting objects:  88% (30/34)        
remote: Counting objects:  91% (31/34)        
remote: Counting objects:  94% (32/34)        
remote: Counting objects:  97% (33/34)        
remote: Counting objects: 100% (34/34)        
remote: Counting objects: 100% (34/34), done.        
remote: Compressing objects:  16% (1/6)        
remote: Compressing objects:  33% (2/6)        
remote: Compressing objects:  50% (3/6)        
remote: Compressing objects:  66% (4/6)        
remote: Compressing objects:  83% (5/6)        
remote: Compressing objects: 100% (6/6)        
remote: Compressing objects: 100% (6/6), done.        
remote: Total 34 (delta 28), reused 34 (delta 28), pack-reused 0        
fatal: unable to look up current user in the passwd file: no such user
Unexpected end of command stream
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandIn(CliGitAPIImpl.java:2450)
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandWithCredentials(CliGitAPIImpl.java:2051)
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.access$500(CliGitAPIImpl.java:84)
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl$1.execute(CliGitAPIImpl.java:573)
at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler$GitCommandMasterToSlaveCallable.call(RemoteGitImpl.java:161)
at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler$GitCommandMasterToSlaveCallable.call(RemoteGitImpl.java:154)
at hudson.remoting.UserRequest.perform(UserRequest.java:211)
at hudson.remoting.UserRequest.perform(UserRequest.java:54)
at hudson.remoting.Request$2.run(Request.java:375)
at hudson.remoting.InterceptingExecutorService$1.call(InterceptingExecutorService.java:73)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
at java.lang.Thread.run(Thread.java:748)
Suppressed: hudson.remoting.Channel$CallSiteStackTrace: Remote call to ascic144-trilinos
	at hudson.remoting.Channel.attachCallSiteStackTrace(Channel.java:1800)
	at hudson.remoting.UserRequest$ExceptionResponse.retrieve(UserRequest.java:357)
	at hudson.remoting.Channel.call(Channel.java:1001)
	at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler.execute(RemoteGitImpl.java:146)
	at sun.reflect.GeneratedMethodAccessor462.invoke(Unknown Source)
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
	at java.lang.reflect.Method.invoke(Method.java:498)
	at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler.invoke(RemoteGitImpl.java:132)
	at com.sun.proxy.$Proxy114.execute(Unknown Source)
	at hudson.plugins.git.GitSCM.fetchFrom(GitSCM.java:994)
	at hudson.plugins.git.GitSCM.retrieveChanges(GitSCM.java:1237)
	at hudson.plugins.git.GitSCM.checkout(GitSCM.java:1297)
	at org.jenkinsci.plugins.multiplescms.MultiSCM.checkout(MultiSCM.java:143)
	at hudson.scm.SCM.checkout(SCM.java:505)
	at hudson.model.AbstractProject.checkout(AbstractProject.java:1206)
	at hudson.model.AbstractBuild$AbstractBuildExecution.defaultCheckout(AbstractBuild.java:574)
	at jenkins.scm.SCMCheckoutStrategy.checkout(SCMCheckoutStrategy.java:86)
	at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:499)
	at hudson.model.Run.execute(Run.java:1894)
	at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
	at hudson.model.ResourceController.execute(ResourceController.java:97)
	at hudson.model.Executor.run(Executor.java:428)

ERROR: Error fetching remote repo 'origin'
Archiving artifacts
[Checks API] No suitable checks publisher found.
Finished: FAILURE

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

Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on ascic166-trilinos (trilinos-32 trilinos-skylake trilinos-any) in workspace /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_debug
The recommended git tool is: NONE
using credential d114a317-3cfb-4285-8fc7-79ae654877f4
 > git rev-parse --is-inside-work-tree # timeout=10
Fetching changes from the remote Git repository
 > git config remote.origin.url https://github.com/trilinos/Trilinos # timeout=10
Fetching upstream changes from https://github.com/trilinos/Trilinos
 > git --version # timeout=10
 > git --version # 'git version 1.8.3.1'
using GIT_SSH to set credentials Trilinos ssh key
Setting http proxy: wwwproxy.sandia.gov:80
 > git fetch --tags --progress https://github.com/trilinos/Trilinos +refs/heads/*:refs/remotes/origin/* # timeout=20
ERROR: Error fetching remote repo 'origin'
hudson.plugins.git.GitException: Failed to fetch from https://github.com/trilinos/Trilinos
	at hudson.plugins.git.GitSCM.fetchFrom(GitSCM.java:996)
	at hudson.plugins.git.GitSCM.retrieveChanges(GitSCM.java:1237)
	at hudson.plugins.git.GitSCM.checkout(GitSCM.java:1297)
	at org.jenkinsci.plugins.multiplescms.MultiSCM.checkout(MultiSCM.java:143)
	at hudson.scm.SCM.checkout(SCM.java:505)
	at hudson.model.AbstractProject.checkout(AbstractProject.java:1206)
	at hudson.model.AbstractBuild$AbstractBuildExecution.defaultCheckout(AbstractBuild.java:574)
	at jenkins.scm.SCMCheckoutStrategy.checkout(SCMCheckoutStrategy.java:86)
	at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:499)
	at hudson.model.Run.execute(Run.java:1894)
	at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
	at hudson.model.ResourceController.execute(ResourceController.java:97)
	at hudson.model.Executor.run(Executor.java:428)
Caused by: hudson.plugins.git.GitException: Command "git fetch --tags --progress https://github.com/trilinos/Trilinos +refs/heads/*:refs/remotes/origin/*" returned status code 128:
stdout: 
stderr: remote: Enumerating objects: 341, done.        
remote: Counting objects:   0% (1/341)        
remote: Counting objects:   1% (4/341)        
remote: Counting objects:   2% (7/341)        
remote: Counting objects:   3% (11/341)        
remote: Counting objects:   4% (14/341)        
remote: Counting objects:   5% (18/341)        
remote: Counting objects:   6% (21/341)        
remote: Counting objects:   7% (24/341)        
remote: Counting objects:   8% (28/341)        
remote: Counting objects:   9% (31/341)        
remote: Counting objects:  10% (35/341)        
remote: Counting objects:  11% (38/341)        
remote: Counting objects:  12% (41/341)        
remote: Counting objects:  13% (45/341)        
remote: Counting objects:  14% (48/341)        
remote: Counting objects:  15% (52/341)        
remote: Counting objects:  16% (55/341)        
remote: Counting objects:  17% (58/341)        
remote: Counting objects:  18% (62/341)        
remote: Counting objects:  19% (65/341)        
remote: Counting objects:  20% (69/341)        
remote: Counting objects:  21% (72/341)        
remote: Counting objects:  22% (76/341)        
remote: Counting objects:  23% (79/341)        
remote: Counting objects:  24% (82/341)        
remote: Counting objects:  25% (86/341)        
remote: Counting objects:  26% (89/341)        
remote: Counting objects:  27% (93/341)        
remote: Counting objects:  28% (96/341)        
remote: Counting objects:  29% (99/341)        
remote: Counting objects:  30% (103/341)        
remote: Counting objects:  31% (106/341)        
remote: Counting objects:  32% (110/341)        
remote: Counting objects:  33% (113/341)        
remote: Counting objects:  34% (116/341)        
remote: Counting objects:  35% (120/341)        
remote: Counting objects:  36% (123/341)        
remote: Counting objects:  37% (127/341)        
remote: Counting objects:  38% (130/341)        
remote: Counting objects:  39% (133/341)        
remote: Counting objects:  40% (137/341)        
remote: Counting objects:  41% (140/341)        
remote: Counting objects:  42% (144/341)        
remote: Counting objects:  43% (147/341)        
remote: Counting objects:  44% (151/341)        
remote: Counting objects:  45% (154/341)        
remote: Counting objects:  46% (157/341)        
remote: Counting objects:  47% (161/341)        
remote: Counting objects:  48% (164/341)        
remote: Counting objects:  49% (168/341)        
remote: Counting objects:  50% (171/341)        
remote: Counting objects:  51% (174/341)        
remote: Counting objects:  52% (178/341)        
remote: Counting objects:  53% (181/341)        
remote: Counting objects:  54% (185/341)        
remote: Counting objects:  55% (188/341)        
remote: Counting objects:  56% (191/341)        
remote: Counting objects:  57% (195/341)        
remote: Counting objects:  58% (198/341)        
remote: Counting objects:  59% (202/341)        
remote: Counting objects:  60% (205/341)        
remote: Counting objects:  61% (209/341)        
remote: Counting objects:  62% (212/341)        
remote: Counting objects:  63% (215/341)        
remote: Counting objects:  64% (219/341)        
remote: Counting objects:  65% (222/341)        
remote: Counting objects:  66% (226/341)        
remote: Counting objects:  67% (229/341)        
remote: Counting objects:  68% (232/341)        
remote: Counting objects:  69% (236/341)        
remote: Counting objects:  70% (239/341)        
remote: Counting objects:  71% (243/341)        
remote: Counting objects:  72% (246/341)        
remote: Counting objects:  73% (249/341)        
remote: Counting objects:  74% (253/341)        
remote: Counting objects:  75% (256/341)        
remote: Counting objects:  76% (260/341)        
remote: Counting objects:  77% (263/341)        
remote: Counting objects:  78% (266/341)        
remote: Counting objects:  79% (270/341)        
remote: Counting objects:  80% (273/341)        
remote: Counting objects:  81% (277/341)        
remote: Counting objects:  82% (280/341)        
remote: Counting objects:  83% (284/341)        
remote: Counting objects:  84% (287/341)        
remote: Counting objects:  85% (290/341)        
remote: Counting objects:  86% (294/341)        
remote: Counting objects:  87% (297/341)        
remote: Counting objects:  88% (301/341)        
remote: Counting objects:  89% (304/341)        
remote: Counting objects:  90% (307/341)        
remote: Counting objects:  91% (311/341)        
remote: Counting objects:  92% (314/341)        
remote: Counting objects:  93% (318/341)        
remote: Counting objects:  94% (321/341)        
remote: Counting objects:  95% (324/341)        
remote: Counting objects:  96% (328/341)        
remote: Counting objects:  97% (331/341)        
remote: Counting objects:  98% (335/341)        
remote: Counting objects:  99% (338/341)        
remote: Counting objects: 100% (341/341)        
remote: Counting objects: 100% (341/341), done.        
remote: Compressing objects:  14% (1/7)        
remote: Compressing objects:  28% (2/7)        
remote: Compressing objects:  42% (3/7)        
remote: Compressing objects:  57% (4/7)        
remote: Compressing objects:  71% (5/7)        
remote: Compressing objects:  85% (6/7)        
remote: Compressing objects: 100% (7/7)        
remote: Compressing objects: 100% (7/7), done.        
Receiving objects:   0% (1/442)   
Receiving objects:   1% (5/442)   
Receiving objects:   2% (9/442)   
Receiving objects:   3% (14/442)   
Receiving objects:   4% (18/442)   
Receiving objects:   5% (23/442)   
Receiving objects:   6% (27/442)   
Receiving objects:   7% (31/442)   
Receiving objects:   8% (36/442)   
Receiving objects:   9% (40/442)   
Receiving objects:  10% (45/442)   
Receiving objects:  11% (49/442)   
Receiving objects:  12% (54/442)   
Receiving objects:  13% (58/442)   
Receiving objects:  14% (62/442)   
Receiving objects:  15% (67/442)   
Receiving objects:  16% (71/442)   
Receiving objects:  17% (76/442)   
Receiving objects:  18% (80/442)   
Receiving objects:  19% (84/442)   
Receiving objects:  20% (89/442)   
Receiving objects:  21% (93/442)   
Receiving objects:  22% (98/442)   
Receiving objects:  23% (102/442)   
Receiving objects:  24% (107/442)   
Receiving objects:  25% (111/442)   
Receiving objects:  26% (115/442)   
Receiving objects:  27% (120/442)   
Receiving objects:  28% (124/442)   
Receiving objects:  29% (129/442)   
Receiving objects:  30% (133/442)   
Receiving objects:  31% (138/442)   
Receiving objects:  32% (142/442)   
Receiving objects:  33% (146/442)   
Receiving objects:  34% (151/442)   
Receiving objects:  35% (155/442)   
Receiving objects:  36% (160/442)   
Receiving objects:  37% (164/442)   
Receiving objects:  38% (168/442)   
Receiving objects:  39% (173/442)   
Receiving objects:  40% (177/442)   
Receiving objects:  41% (182/442)   
Receiving objects:  42% (186/442)   
Receiving objects:  43% (191/442)   
Receiving objects:  44% (195/442)   
Receiving objects:  45% (199/442)   
Receiving objects:  46% (204/442)   
Receiving objects:  47% (208/442)   
Receiving objects:  48% (213/442)   
Receiving objects:  49% (217/442)   
Receiving objects:  50% (221/442)   
Receiving objects:  51% (226/442)   
Receiving objects:  52% (230/442)   
Receiving objects:  53% (235/442)   
Receiving objects:  54% (239/442)   
Receiving objects:  55% (244/442)   
Receiving objects:  56% (248/442)   
Receiving objects:  57% (252/442)   
Receiving objects:  58% (257/442)   
Receiving objects:  59% (261/442)   
Receiving objects:  60% (266/442)   
Receiving objects:  61% (270/442)   
Receiving objects:  62% (275/442)   
Receiving objects:  63% (279/442)   
Receiving objects:  64% (283/442)   
Receiving objects:  65% (288/442)   
Receiving objects:  66% (292/442)   
Receiving objects:  67% (297/442)   
Receiving objects:  68% (301/442)   
Receiving objects:  69% (305/442)   
Receiving objects:  70% (310/442)   
Receiving objects:  71% (314/442)   
Receiving objects:  72% (319/442)   
Receiving objects:  73% (323/442)   
Receiving objects:  74% (328/442)   
Receiving objects:  75% (332/442)   
Receiving objects:  76% (336/442)   
Receiving objects:  77% (341/442)   
Receiving objects:  78% (345/442)   
Receiving objects:  79% (350/442)   
Receiving objects:  80% (354/442)   
Receiving objects:  81% (359/442)   
Receiving objects:  82% (363/442)   
Receiving objects:  83% (367/442)   
Receiving objects:  84% (372/442)   
remote: Total 442 (delta 334), reused 340 (delta 334), pack-reused 101        
Receiving objects:  85% (376/442)   
Receiving objects:  86% (381/442)   
Receiving objects:  87% (385/442)   
Receiving objects:  88% (389/442)   
Receiving objects:  89% (394/442)   
Receiving objects:  90% (398/442)   
Receiving objects:  91% (403/442)   
Receiving objects:  92% (407/442)   
Receiving objects:  93% (412/442)   
Receiving objects:  94% (416/442)   
Receiving objects:  95% (420/442)   
Receiving objects:  96% (425/442)   
Receiving objects:  97% (429/442)   
Receiving objects:  98% (434/442)   
Receiving objects:  99% (438/442)   
Receiving objects: 100% (442/442)   
Receiving objects: 100% (442/442), 154.06 KiB | 0 bytes/s, done.
Resolving deltas:   0% (0/355)   
Resolving deltas:   1% (4/355)   
Resolving deltas:   2% (9/355)   
Resolving deltas:   3% (11/355)   
Resolving deltas:   4% (15/355)   
Resolving deltas:   5% (19/355)   
Resolving deltas:   6% (22/355)   
Resolving deltas:   7% (25/355)   
Resolving deltas:   8% (29/355)   
Resolving deltas:  13% (49/355)   
Resolving deltas:  14% (50/355)   
Resolving deltas:  15% (55/355)   
Resolving deltas:  16% (57/355)   
Resolving deltas:  17% (62/355)   
Resolving deltas:  18% (64/355)   
Resolving deltas:  19% (68/355)   
Resolving deltas:  20% (71/355)   
Resolving deltas:  21% (75/355)   
Resolving deltas:  22% (79/355)   
Resolving deltas:  23% (82/355)   
Resolving deltas:  24% (86/355)   
Resolving deltas:  25% (89/355)   
Resolving deltas:  26% (93/355)   
Resolving deltas:  27% (96/355)   
Resolving deltas:  28% (100/355)   
Resolving deltas:  34% (124/355)   
Resolving deltas:  35% (125/355)   
Resolving deltas:  36% (130/355)   
Resolving deltas:  37% (132/355)   
Resolving deltas:  39% (140/355)   
Resolving deltas:  40% (142/355)   
Resolving deltas:  42% (150/355)   
Resolving deltas:  43% (155/355)   
Resolving deltas:  44% (157/355)   
Resolving deltas:  45% (160/355)   
Resolving deltas:  46% (164/355)   
Resolving deltas:  47% (169/355)   
Resolving deltas:  50% (178/355)   
Resolving deltas:  56% (199/355)   
Resolving deltas:  61% (220/355)   
Resolving deltas:  62% (223/355)   
Resolving deltas:  63% (227/355)   
Resolving deltas:  64% (228/355)   
Resolving deltas:  67% (240/355)   
Resolving deltas:  68% (242/355)   
Resolving deltas:  69% (245/355)   
Resolving deltas:  70% (249/355)   
Resolving deltas:  71% (254/355)   
Resolving deltas:  72% (256/355)   
Resolving deltas:  73% (260/355)   
Resolving deltas:  74% (263/355)   
Resolving deltas:  75% (267/355)   
Resolving deltas:  76% (270/355)   
Resolving deltas:  77% (274/355)   
Resolving deltas:  78% (277/355)   
Resolving deltas:  79% (281/355)   
Resolving deltas:  80% (284/355)   
Resolving deltas:  81% (288/355)   
Resolving deltas:  82% (292/355)   
Resolving deltas:  84% (301/355)   
Resolving deltas:  86% (307/355)   
Resolving deltas:  87% (309/355)   
Resolving deltas:  88% (313/355)   
Resolving deltas:  89% (316/355)   
Resolving deltas:  90% (320/355)   
Resolving deltas:  91% (324/355)   
Resolving deltas:  94% (334/355)   
Resolving deltas:  95% (338/355)   
Resolving deltas:  96% (342/355)   
Resolving deltas:  97% (345/355)   
Resolving deltas:  98% (348/355)   
Resolving deltas:  99% (352/355)   
Resolving deltas: 100% (355/355)   
Resolving deltas: 100% (355/355), completed with 157 local objects.
fatal: unable to look up current user in the passwd file: no such user
Unexpected end of command stream
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandIn(CliGitAPIImpl.java:2450)
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandWithCredentials(CliGitAPIImpl.java:2051)
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.access$500(CliGitAPIImpl.java:84)
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl$1.execute(CliGitAPIImpl.java:573)
at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler$GitCommandMasterToSlaveCallable.call(RemoteGitImpl.java:161)
at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler$GitCommandMasterToSlaveCallable.call(RemoteGitImpl.java:154)
at hudson.remoting.UserRequest.perform(UserRequest.java:211)
at hudson.remoting.UserRequest.perform(UserRequest.java:54)
at hudson.remoting.Request$2.run(Request.java:375)
at hudson.remoting.InterceptingExecutorService$1.call(InterceptingExecutorService.java:73)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
at java.lang.Thread.run(Thread.java:748)
Suppressed: hudson.remoting.Channel$CallSiteStackTrace: Remote call to ascic166-trilinos
	at hudson.remoting.Channel.attachCallSiteStackTrace(Channel.java:1800)
	at hudson.remoting.UserRequest$ExceptionResponse.retrieve(UserRequest.java:357)
	at hudson.remoting.Channel.call(Channel.java:1001)
	at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler.execute(RemoteGitImpl.java:146)
	at sun.reflect.GeneratedMethodAccessor462.invoke(Unknown Source)
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
	at java.lang.reflect.Method.invoke(Method.java:498)
	at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler.invoke(RemoteGitImpl.java:132)
	at com.sun.proxy.$Proxy114.execute(Unknown Source)
	at hudson.plugins.git.GitSCM.fetchFrom(GitSCM.java:994)
	at hudson.plugins.git.GitSCM.retrieveChanges(GitSCM.java:1237)
	at hudson.plugins.git.GitSCM.checkout(GitSCM.java:1297)
	at org.jenkinsci.plugins.multiplescms.MultiSCM.checkout(MultiSCM.java:143)
	at hudson.scm.SCM.checkout(SCM.java:505)
	at hudson.model.AbstractProject.checkout(AbstractProject.java:1206)
	at hudson.model.AbstractBuild$AbstractBuildExecution.defaultCheckout(AbstractBuild.java:574)
	at jenkins.scm.SCMCheckoutStrategy.checkout(SCMCheckoutStrategy.java:86)
	at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:499)
	at hudson.model.Run.execute(Run.java:1894)
	at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
	at hudson.model.ResourceController.execute(ResourceController.java:97)
	at hudson.model.Executor.run(Executor.java:428)

ERROR: Error fetching remote repo 'origin'
Archiving artifacts
[Checks API] No suitable checks publisher found.
Finished: FAILURE

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

Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on ascic144-trilinos (trilinos-haswell trilinos-any trilinos-37) in workspace /scratch/trilinos/jenkins/ascic144/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1
The recommended git tool is: NONE
No credentials specified
 > git rev-parse --is-inside-work-tree # timeout=10
Fetching changes from the remote Git repository
 > git config remote.origin.url https://github.com/trilinos/Trilinos # timeout=10
Fetching upstream changes from https://github.com/trilinos/Trilinos
 > git --version # timeout=10
 > git --version # 'git version 1.8.3.1'
Setting http proxy: wwwproxy.sandia.gov:80
 > git fetch --tags --progress https://github.com/trilinos/Trilinos +refs/heads/*:refs/remotes/origin/* # timeout=20
ERROR: Error fetching remote repo 'origin'
hudson.plugins.git.GitException: Failed to fetch from https://github.com/trilinos/Trilinos
	at hudson.plugins.git.GitSCM.fetchFrom(GitSCM.java:996)
	at hudson.plugins.git.GitSCM.retrieveChanges(GitSCM.java:1237)
	at hudson.plugins.git.GitSCM.checkout(GitSCM.java:1297)
	at org.jenkinsci.plugins.multiplescms.MultiSCM.checkout(MultiSCM.java:143)
	at hudson.scm.SCM.checkout(SCM.java:505)
	at hudson.model.AbstractProject.checkout(AbstractProject.java:1206)
	at hudson.model.AbstractBuild$AbstractBuildExecution.defaultCheckout(AbstractBuild.java:574)
	at jenkins.scm.SCMCheckoutStrategy.checkout(SCMCheckoutStrategy.java:86)
	at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:499)
	at hudson.model.Run.execute(Run.java:1894)
	at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
	at hudson.model.ResourceController.execute(ResourceController.java:97)
	at hudson.model.Executor.run(Executor.java:428)
Caused by: hudson.plugins.git.GitException: Command "git fetch --tags --progress https://github.com/trilinos/Trilinos +refs/heads/*:refs/remotes/origin/*" returned status code 128:
stdout: 
stderr: remote: Enumerating objects: 1199, done.        
remote: Counting objects:   0% (1/1199)        
remote: Counting objects:   1% (12/1199)        
remote: Counting objects:   2% (24/1199)        
remote: Counting objects:   3% (36/1199)        
remote: Counting objects:   4% (48/1199)        
remote: Counting objects:   5% (60/1199)        
remote: Counting objects:   6% (72/1199)        
remote: Counting objects:   7% (84/1199)        
remote: Counting objects:   8% (96/1199)        
remote: Counting objects:   9% (108/1199)        
remote: Counting objects:  10% (120/1199)        
remote: Counting objects:  11% (132/1199)        
remote: Counting objects:  12% (144/1199)        
remote: Counting objects:  13% (156/1199)        
remote: Counting objects:  14% (168/1199)        
remote: Counting objects:  15% (180/1199)        
remote: Counting objects:  16% (192/1199)        
remote: Counting objects:  17% (204/1199)        
remote: Counting objects:  18% (216/1199)        
remote: Counting objects:  19% (228/1199)        
remote: Counting objects:  20% (240/1199)        
remote: Counting objects:  21% (252/1199)        
remote: Counting objects:  22% (264/1199)        
remote: Counting objects:  23% (276/1199)        
remote: Counting objects:  24% (288/1199)        
remote: Counting objects:  25% (300/1199)        
remote: Counting objects:  26% (312/1199)        
remote: Counting objects:  27% (324/1199)        
remote: Counting objects:  28% (336/1199)        
remote: Counting objects:  29% (348/1199)        
remote: Counting objects:  30% (360/1199)        
remote: Counting objects:  31% (372/1199)        
remote: Counting objects:  32% (384/1199)        
remote: Counting objects:  33% (396/1199)        
remote: Counting objects:  34% (408/1199)        
remote: Counting objects:  35% (420/1199)        
remote: Counting objects:  36% (432/1199)        
remote: Counting objects:  37% (444/1199)        
remote: Counting objects:  38% (456/1199)        
remote: Counting objects:  39% (468/1199)        
remote: Counting objects:  40% (480/1199)        
remote: Counting objects:  41% (492/1199)        
remote: Counting objects:  42% (504/1199)        
remote: Counting objects:  43% (516/1199)        
remote: Counting objects:  44% (528/1199)        
remote: Counting objects:  45% (540/1199)        
remote: Counting objects:  46% (552/1199)        
remote: Counting objects:  47% (564/1199)        
remote: Counting objects:  48% (576/1199)        
remote: Counting objects:  49% (588/1199)        
remote: Counting objects:  50% (600/1199)        
remote: Counting objects:  51% (612/1199)        
remote: Counting objects:  52% (624/1199)        
remote: Counting objects:  53% (636/1199)        
remote: Counting objects:  54% (648/1199)        
remote: Counting objects:  55% (660/1199)        
remote: Counting objects:  56% (672/1199)        
remote: Counting objects:  57% (684/1199)        
remote: Counting objects:  58% (696/1199)        
remote: Counting objects:  59% (708/1199)        
remote: Counting objects:  60% (720/1199)        
remote: Counting objects:  61% (732/1199)        
remote: Counting objects:  62% (744/1199)        
remote: Counting objects:  63% (756/1199)        
remote: Counting objects:  64% (768/1199)        
remote: Counting objects:  65% (780/1199)        
remote: Counting objects:  66% (792/1199)        
remote: Counting objects:  67% (804/1199)        
remote: Counting objects:  68% (816/1199)        
remote: Counting objects:  69% (828/1199)        
remote: Counting objects:  70% (840/1199)        
remote: Counting objects:  71% (852/1199)        
remote: Counting objects:  72% (864/1199)        
remote: Counting objects:  73% (876/1199)        
remote: Counting objects:  74% (888/1199)        
remote: Counting objects:  75% (900/1199)        
remote: Counting objects:  76% (912/1199)        
remote: Counting objects:  77% (924/1199)        
remote: Counting objects:  78% (936/1199)        
remote: Counting objects:  79% (948/1199)        
remote: Counting objects:  80% (960/1199)        
remote: Counting objects:  81% (972/1199)        
remote: Counting objects:  82% (984/1199)        
remote: Counting objects:  83% (996/1199)        
remote: Counting objects:  84% (1008/1199)        
remote: Counting objects:  85% (1020/1199)        
remote: Counting objects:  86% (1032/1199)        
remote: Counting objects:  87% (1044/1199)        
remote: Counting objects:  88% (1056/1199)        
remote: Counting objects:  89% (1068/1199)        
remote: Counting objects:  90% (1080/1199)        
remote: Counting objects:  91% (1092/1199)        
remote: Counting objects:  92% (1104/1199)        
remote: Counting objects:  93% (1116/1199)        
remote: Counting objects:  94% (1128/1199)        
remote: Counting objects:  95% (1140/1199)        
remote: Counting objects:  96% (1152/1199)        
remote: Counting objects:  97% (1164/1199)        
remote: Counting objects:  98% (1176/1199)        
remote: Counting objects:  99% (1188/1199)        
remote: Counting objects: 100% (1199/1199)        
remote: Counting objects: 100% (1199/1199), done.        
remote: Compressing objects:  11% (1/9)        
remote: Compressing objects:  22% (2/9)        
remote: Compressing objects:  33% (3/9)        
remote: Compressing objects:  44% (4/9)        
remote: Compressing objects:  55% (5/9)        
remote: Compressing objects:  66% (6/9)        
remote: Compressing objects:  77% (7/9)        
remote: Compressing objects:  88% (8/9)        
remote: Compressing objects: 100% (9/9)        
remote: Compressing objects: 100% (9/9), done.        
Receiving objects:   0% (1/1514)   
Receiving objects:   1% (16/1514)   
Receiving objects:   2% (31/1514)   
Receiving objects:   3% (46/1514)   
Receiving objects:   4% (61/1514)   
Receiving objects:   5% (76/1514)   
Receiving objects:   6% (91/1514)   
Receiving objects:   7% (106/1514)   
Receiving objects:   8% (122/1514)   
Receiving objects:   9% (137/1514)   
Receiving objects:  10% (152/1514)   
Receiving objects:  11% (167/1514)   
Receiving objects:  12% (182/1514)   
Receiving objects:  13% (197/1514)   
Receiving objects:  14% (212/1514)   
Receiving objects:  15% (228/1514)   
Receiving objects:  16% (243/1514)   
Receiving objects:  17% (258/1514)   
Receiving objects:  18% (273/1514)   
Receiving objects:  19% (288/1514)   
Receiving objects:  20% (303/1514)   
Receiving objects:  21% (318/1514)   
Receiving objects:  22% (334/1514)   
Receiving objects:  23% (349/1514)   
Receiving objects:  24% (364/1514)   
Receiving objects:  25% (379/1514)   
Receiving objects:  26% (394/1514)   
Receiving objects:  27% (409/1514)   
Receiving objects:  28% (424/1514)   
Receiving objects:  29% (440/1514)   
Receiving objects:  30% (455/1514)   
Receiving objects:  31% (470/1514)   
Receiving objects:  32% (485/1514)   
Receiving objects:  33% (500/1514)   
Receiving objects:  34% (515/1514)   
Receiving objects:  35% (530/1514)   
Receiving objects:  36% (546/1514)   
Receiving objects:  37% (561/1514)   
Receiving objects:  38% (576/1514)   
Receiving objects:  39% (591/1514)   
Receiving objects:  40% (606/1514)   
Receiving objects:  41% (621/1514)   
Receiving objects:  42% (636/1514)   
Receiving objects:  43% (652/1514)   
Receiving objects:  44% (667/1514)   
Receiving objects:  45% (682/1514)   
Receiving objects:  46% (697/1514)   
Receiving objects:  47% (712/1514)   
Receiving objects:  48% (727/1514)   
Receiving objects:  49% (742/1514)   
Receiving objects:  50% (757/1514)   
Receiving objects:  51% (773/1514)   
Receiving objects:  52% (788/1514)   
Receiving objects:  53% (803/1514)   
Receiving objects:  54% (818/1514)   
Receiving objects:  55% (833/1514)   
Receiving objects:  56% (848/1514)   
Receiving objects:  57% (863/1514)   
Receiving objects:  58% (879/1514)   
Receiving objects:  59% (894/1514)   
Receiving objects:  60% (909/1514)   
Receiving objects:  61% (924/1514)   
Receiving objects:  62% (939/1514)   
Receiving objects:  63% (954/1514)   
Receiving objects:  64% (969/1514)   
Receiving objects:  65% (985/1514)   
Receiving objects:  66% (1000/1514)   
Receiving objects:  67% (1015/1514)   
Receiving objects:  68% (1030/1514)   
Receiving objects:  69% (1045/1514)   
Receiving objects:  70% (1060/1514)   
Receiving objects:  71% (1075/1514)   
Receiving objects:  72% (1091/1514)   
Receiving objects:  73% (1106/1514)   
Receiving objects:  74% (1121/1514)   
Receiving objects:  75% (1136/1514)   
Receiving objects:  76% (1151/1514)   
Receiving objects:  77% (1166/1514)   
Receiving objects:  78% (1181/1514)   
Receiving objects:  79% (1197/1514)   
Receiving objects:  80% (1212/1514)   
Receiving objects:  81% (1227/1514)   
Receiving objects:  82% (1242/1514)   
Receiving objects:  83% (1257/1514)   
Receiving objects:  84% (1272/1514)   
Receiving objects:  85% (1287/1514)   
Receiving objects:  86% (1303/1514)   
Receiving objects:  87% (1318/1514)   
Receiving objects:  88% (1333/1514)   
Receiving objects:  89% (1348/1514)   
Receiving objects:  90% (1363/1514)   
Receiving objects:  91% (1378/1514)   
Receiving objects:  92% (1393/1514)   
Receiving objects:  93% (1409/1514)   
Receiving objects:  94% (1424/1514)   
remote: Total 1514 (delta 1191), reused 1196 (delta 1190), pack-reused 315        
Receiving objects:  95% (1439/1514)   
Receiving objects:  96% (1454/1514)   
Receiving objects:  97% (1469/1514)   
Receiving objects:  98% (1484/1514)   
Receiving objects:  99% (1499/1514)   
Receiving objects: 100% (1514/1514)   
Receiving objects: 100% (1514/1514), 538.50 KiB | 0 bytes/s, done.
Resolving deltas:   0% (0/1269)   
Resolving deltas:   1% (24/1269)   
Resolving deltas:   2% (29/1269)   
Resolving deltas:   3% (44/1269)   
Resolving deltas:   4% (51/1269)   
Resolving deltas:   5% (64/1269)   
Resolving deltas:   6% (81/1269)   
Resolving deltas:   7% (94/1269)   
Resolving deltas:   8% (102/1269)   
Resolving deltas:   9% (125/1269)   
Resolving deltas:  11% (140/1269)   
Resolving deltas:  12% (155/1269)   
Resolving deltas:  13% (170/1269)   
Resolving deltas:  14% (182/1269)   
Resolving deltas:  15% (194/1269)   
Resolving deltas:  16% (204/1269)   
Resolving deltas:  17% (216/1269)   
Resolving deltas:  18% (229/1269)   
Resolving deltas:  19% (242/1269)   
Resolving deltas:  20% (254/1269)   
Resolving deltas:  21% (267/1269)   
Resolving deltas:  22% (280/1269)   
Resolving deltas:  23% (292/1269)   
Resolving deltas:  24% (305/1269)   
Resolving deltas:  25% (318/1269)   
Resolving deltas:  26% (333/1269)   
Resolving deltas:  30% (386/1269)   
Resolving deltas:  31% (402/1269)   
Resolving deltas:  33% (426/1269)   
Resolving deltas:  34% (444/1269)   
Resolving deltas:  36% (469/1269)   
Resolving deltas:  37% (470/1269)   
Resolving deltas:  38% (487/1269)   
Resolving deltas:  39% (501/1269)   
Resolving deltas:  40% (509/1269)   
Resolving deltas:  41% (526/1269)   
Resolving deltas:  43% (547/1269)   
Resolving deltas:  44% (568/1269)   
Resolving deltas:  45% (575/1269)   
Resolving deltas:  46% (584/1269)   
Resolving deltas:  47% (597/1269)   
Resolving deltas:  48% (610/1269)   
Resolving deltas:  49% (622/1269)   
Resolving deltas:  50% (635/1269)   
Resolving deltas:  51% (648/1269)   
Resolving deltas:  52% (660/1269)   
Resolving deltas:  53% (673/1269)   
Resolving deltas:  54% (688/1269)   
Resolving deltas:  55% (698/1269)   
Resolving deltas:  56% (711/1269)   
Resolving deltas:  57% (724/1269)   
Resolving deltas:  58% (737/1269)   
Resolving deltas:  59% (749/1269)   
Resolving deltas:  60% (762/1269)   
Resolving deltas:  61% (776/1269)   
Resolving deltas:  62% (788/1269)   
Resolving deltas:  63% (800/1269)   
Resolving deltas:  64% (813/1269)   
Resolving deltas:  65% (832/1269)   
Resolving deltas:  66% (838/1269)   
Resolving deltas:  67% (857/1269)   
Resolving deltas:  68% (873/1269)   
Resolving deltas:  69% (885/1269)   
Resolving deltas:  70% (890/1269)   
Resolving deltas:  71% (901/1269)   
Resolving deltas:  72% (914/1269)   
Resolving deltas:  73% (927/1269)   
Resolving deltas:  74% (940/1269)   
Resolving deltas:  75% (952/1269)   
Resolving deltas:  76% (966/1269)   
Resolving deltas:  77% (980/1269)   
Resolving deltas:  78% (990/1269)   
Resolving deltas:  79% (1003/1269)   
Resolving deltas:  80% (1016/1269)   
Resolving deltas:  81% (1028/1269)   
Resolving deltas:  82% (1046/1269)   
Resolving deltas:  83% (1054/1269)   
Resolving deltas:  84% (1066/1269)   
Resolving deltas:  85% (1079/1269)   
Resolving deltas:  86% (1093/1269)   
Resolving deltas:  87% (1105/1269)   
Resolving deltas:  88% (1117/1269)   
Resolving deltas:  89% (1130/1269)   
Resolving deltas:  90% (1143/1269)   
Resolving deltas:  91% (1155/1269)   
Resolving deltas:  92% (1168/1269)   
Resolving deltas:  93% (1181/1269)   
Resolving deltas:  94% (1193/1269)   
Resolving deltas:  95% (1206/1269)   
Resolving deltas:  96% (1219/1269)   
Resolving deltas:  97% (1231/1269)   
Resolving deltas:  98% (1245/1269)   
Resolving deltas:  99% (1257/1269)   
Resolving deltas: 100% (1269/1269)   
Resolving deltas: 100% (1269/1269), completed with 612 local objects.
fatal: unable to look up current user in the passwd file: no such user
Unexpected end of command stream
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandIn(CliGitAPIImpl.java:2450)
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandWithCredentials(CliGitAPIImpl.java:2051)
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.access$500(CliGitAPIImpl.java:84)
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl$1.execute(CliGitAPIImpl.java:573)
at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler$GitCommandMasterToSlaveCallable.call(RemoteGitImpl.java:161)
at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler$GitCommandMasterToSlaveCallable.call(RemoteGitImpl.java:154)
at hudson.remoting.UserRequest.perform(UserRequest.java:211)
at hudson.remoting.UserRequest.perform(UserRequest.java:54)
at hudson.remoting.Request$2.run(Request.java:375)
at hudson.remoting.InterceptingExecutorService$1.call(InterceptingExecutorService.java:73)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
at java.lang.Thread.run(Thread.java:748)
Suppressed: hudson.remoting.Channel$CallSiteStackTrace: Remote call to ascic144-trilinos
	at hudson.remoting.Channel.attachCallSiteStackTrace(Channel.java:1800)
	at hudson.remoting.UserRequest$ExceptionResponse.retrieve(UserRequest.java:357)
	at hudson.remoting.Channel.call(Channel.java:1001)
	at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler.execute(RemoteGitImpl.java:146)
	at sun.reflect.GeneratedMethodAccessor462.invoke(Unknown Source)
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
	at java.lang.reflect.Method.invoke(Method.java:498)
	at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler.invoke(RemoteGitImpl.java:132)
	at com.sun.proxy.$Proxy114.execute(Unknown Source)
	at hudson.plugins.git.GitSCM.fetchFrom(GitSCM.java:994)
	at hudson.plugins.git.GitSCM.retrieveChanges(GitSCM.java:1237)
	at hudson.plugins.git.GitSCM.checkout(GitSCM.java:1297)
	at org.jenkinsci.plugins.multiplescms.MultiSCM.checkout(MultiSCM.java:143)
	at hudson.scm.SCM.checkout(SCM.java:505)
	at hudson.model.AbstractProject.checkout(AbstractProject.java:1206)
	at hudson.model.AbstractBuild$AbstractBuildExecution.defaultCheckout(AbstractBuild.java:574)
	at jenkins.scm.SCMCheckoutStrategy.checkout(SCMCheckoutStrategy.java:86)
	at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:499)
	at hudson.model.Run.execute(Run.java:1894)
	at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
	at hudson.model.ResourceController.execute(ResourceController.java:97)
	at hudson.model.Executor.run(Executor.java:428)

ERROR: Error fetching remote repo 'origin'
Archiving artifacts
[Checks API] No suitable checks publisher found.
Finished: FAILURE

Console Output (last 100 lines) : Trilinos_pullrequest_cuda_10.1.105 # 589 (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: /home/trilinos/jenkins/ride/workspace/trilinos-folder/Trilinos_pullrequest_cuda_10.1.105@2/Trilinos

git diff --name-only origin/develop..HEAD > /home/trilinos/jenkins/ride/workspace/trilinos-folder/Trilinos_pullrequest_cuda_10.1.105@2/changed-files.txt

Wrote file 'changed-files.txt'

Current directory: /home/trilinos/jenkins/ride/workspace/trilinos-folder/Trilinos_pullrequest_cuda_10.1.105@2

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

CHANGED_PACKAGES_FULL_LIST='TpetraCore'

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

CHANGED_PACKAGES_ST_LIST='TpetraCore'

E) Generate the packageEnables.cmake enables file

Wrote file 'packageEnables.cmake'

F) Generate the package_subproject_list.cmake file

Wrote file 'package_subproject_list.cmake'
Build name = PR-8804-test-Trilinos_pullrequest_cuda_10.1.105-589
Cur dir = /home/trilinos/jenkins/ride/workspace/trilinos-folder/Trilinos_pullrequest_cuda_10.1.105@2/TFW_testing_single_configure_prototype
Source dir = /home/trilinos/jenkins/ride/workspace/trilinos-folder/Trilinos_pullrequest_cuda_10.1.105@2/Trilinos
Binary dir = /home/trilinos/jenkins/ride/workspace/trilinos-folder/Trilinos_pullrequest_cuda_10.1.105@2/pull_request_test
Parallel level = 29
Testing Parallel level = 4
skip_by_parts_submit = OFF
skip_single_submit = ON
skip_update_step = ON
skip_upload_config_files = OFF
skip_clean_build_dir = ON
Subproject count = 61
Dashboard model = Experimental
Dashboard track = Pull Request
Running configuration:
/home/atdm-devops-admin/tools/ride/cmake-3.17.2/bin/cmake
-C "/home/trilinos/jenkins/ride/workspace/trilinos-folder/Trilinos_pullrequest_cuda_10.1.105@2/Trilinos/cmake/std/PullRequestLinuxCuda10.1.105TestingSettings.cmake"
-C "/home/trilinos/jenkins/ride/workspace/trilinos-folder/Trilinos_pullrequest_cuda_10.1.105@2/packageEnables.cmake"
-DTrilinos_ENABLE_TESTS:BOOL=ON
-DTrilinos_PARALLEL_LINK_JOBS_LIMIT:STRING=2
-G "Ninja"
/home/trilinos/jenkins/ride/workspace/trilinos-folder/Trilinos_pullrequest_cuda_10.1.105@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=ride18&field2=buildname&compare2=61&value2=PR-8804-test-Trilinos_pullrequest_cuda_10.1.105-589&field3=buildstamp&compare3=61&value3=20210223-1705-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-8804-test-Trilinos_pullrequest_cuda_10.1.105-589&field2=buildstamp&compare2=61&value2=20210223-1705-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-8804-test-Trilinos_pullrequest_cuda_10.1.105-589&field2=buildstamp&compare2=61&value2=20210223-1705-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 of output: 310K
configure submit error = 0
Configure suceeded.
Starting build step.
Each symbol represents 1024 bytes of output.
.................................................. Size: 50K
.................................................. Size: 100K
.................................................. Size: 150K
.................................................. Size: 200K
.................................................. Size: 250K
.................................................. Size: 299K
.................................................. Size: 349K
.................................................. Size: 399K
.................................................. Size: 449K
.................................................. Size: 500K
.................................................. Size: 549K
.................................................. Size: 599K
.................................................. Size: 650K
.................................................. Size: 699K
.................................................. Size: 749K
.................................................. Size: 799K
.................................................. Size: 849K
.................................................. Size: 899K
.................................................. Size: 950K
.................................................. Size: 999K
.................................................. Size: 1050K
.................................................. Size: 1100K
.................................................. Size: 1150K
.................................................. Size: 1200K
.........................................Build was aborted
Aborted by James M Willenbring
Terminated
Archiving artifacts
[Checks API] No suitable checks publisher found.
Finished: ABORTED

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

Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on ascic166-trilinos (trilinos-32 trilinos-skylake trilinos-any) in workspace /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_clang_10.0.0
The recommended git tool is: NONE
using credential d114a317-3cfb-4285-8fc7-79ae654877f4
 > git rev-parse --is-inside-work-tree # timeout=10
Fetching changes from the remote Git repository
 > git config remote.origin.url https://github.com/trilinos/Trilinos # timeout=10
Fetching upstream changes from https://github.com/trilinos/Trilinos
 > git --version # timeout=10
 > git --version # 'git version 1.8.3.1'
using GIT_SSH to set credentials Trilinos ssh key
Setting http proxy: wwwproxy.sandia.gov:80
 > git fetch --tags --progress https://github.com/trilinos/Trilinos +refs/heads/*:refs/remotes/origin/* # timeout=20
ERROR: Error fetching remote repo 'origin'
hudson.plugins.git.GitException: Failed to fetch from https://github.com/trilinos/Trilinos
	at hudson.plugins.git.GitSCM.fetchFrom(GitSCM.java:996)
	at hudson.plugins.git.GitSCM.retrieveChanges(GitSCM.java:1237)
	at hudson.plugins.git.GitSCM.checkout(GitSCM.java:1297)
	at org.jenkinsci.plugins.multiplescms.MultiSCM.checkout(MultiSCM.java:143)
	at hudson.scm.SCM.checkout(SCM.java:505)
	at hudson.model.AbstractProject.checkout(AbstractProject.java:1206)
	at hudson.model.AbstractBuild$AbstractBuildExecution.defaultCheckout(AbstractBuild.java:574)
	at jenkins.scm.SCMCheckoutStrategy.checkout(SCMCheckoutStrategy.java:86)
	at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:499)
	at hudson.model.Run.execute(Run.java:1894)
	at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
	at hudson.model.ResourceController.execute(ResourceController.java:97)
	at hudson.model.Executor.run(Executor.java:428)
Caused by: hudson.plugins.git.GitException: Command "git fetch --tags --progress https://github.com/trilinos/Trilinos +refs/heads/*:refs/remotes/origin/*" returned status code 128:
stdout: 
stderr: remote: Enumerating objects: 34, done.        
remote: Counting objects:   2% (1/34)        
remote: Counting objects:   5% (2/34)        
remote: Counting objects:   8% (3/34)        
remote: Counting objects:  11% (4/34)        
remote: Counting objects:  14% (5/34)        
remote: Counting objects:  17% (6/34)        
remote: Counting objects:  20% (7/34)        
remote: Counting objects:  23% (8/34)        
remote: Counting objects:  26% (9/34)        
remote: Counting objects:  29% (10/34)        
remote: Counting objects:  32% (11/34)        
remote: Counting objects:  35% (12/34)        
remote: Counting objects:  38% (13/34)        
remote: Counting objects:  41% (14/34)        
remote: Counting objects:  44% (15/34)        
remote: Counting objects:  47% (16/34)        
remote: Counting objects:  50% (17/34)        
remote: Counting objects:  52% (18/34)        
remote: Counting objects:  55% (19/34)        
remote: Counting objects:  58% (20/34)        
remote: Counting objects:  61% (21/34)        
remote: Counting objects:  64% (22/34)        
remote: Counting objects:  67% (23/34)        
remote: Counting objects:  70% (24/34)        
remote: Counting objects:  73% (25/34)        
remote: Counting objects:  76% (26/34)        
remote: Counting objects:  79% (27/34)        
remote: Counting objects:  82% (28/34)        
remote: Counting objects:  85% (29/34)        
remote: Counting objects:  88% (30/34)        
remote: Counting objects:  91% (31/34)        
remote: Counting objects:  94% (32/34)        
remote: Counting objects:  97% (33/34)        
remote: Counting objects: 100% (34/34)        
remote: Counting objects: 100% (34/34), done.        
remote: Compressing objects:  16% (1/6)        
remote: Compressing objects:  33% (2/6)        
remote: Compressing objects:  50% (3/6)        
remote: Compressing objects:  66% (4/6)        
remote: Compressing objects:  83% (5/6)        
remote: Compressing objects: 100% (6/6)        
remote: Compressing objects: 100% (6/6), done.        
remote: Total 34 (delta 28), reused 34 (delta 28), pack-reused 0        
fatal: unable to look up current user in the passwd file: no such user
Unexpected end of command stream
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandIn(CliGitAPIImpl.java:2450)
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandWithCredentials(CliGitAPIImpl.java:2051)
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.access$500(CliGitAPIImpl.java:84)
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl$1.execute(CliGitAPIImpl.java:573)
at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler$GitCommandMasterToSlaveCallable.call(RemoteGitImpl.java:161)
at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler$GitCommandMasterToSlaveCallable.call(RemoteGitImpl.java:154)
at hudson.remoting.UserRequest.perform(UserRequest.java:211)
at hudson.remoting.UserRequest.perform(UserRequest.java:54)
at hudson.remoting.Request$2.run(Request.java:375)
at hudson.remoting.InterceptingExecutorService$1.call(InterceptingExecutorService.java:73)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
at java.lang.Thread.run(Thread.java:748)
Suppressed: hudson.remoting.Channel$CallSiteStackTrace: Remote call to ascic166-trilinos
	at hudson.remoting.Channel.attachCallSiteStackTrace(Channel.java:1800)
	at hudson.remoting.UserRequest$ExceptionResponse.retrieve(UserRequest.java:357)
	at hudson.remoting.Channel.call(Channel.java:1001)
	at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler.execute(RemoteGitImpl.java:146)
	at sun.reflect.GeneratedMethodAccessor462.invoke(Unknown Source)
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
	at java.lang.reflect.Method.invoke(Method.java:498)
	at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler.invoke(RemoteGitImpl.java:132)
	at com.sun.proxy.$Proxy114.execute(Unknown Source)
	at hudson.plugins.git.GitSCM.fetchFrom(GitSCM.java:994)
	at hudson.plugins.git.GitSCM.retrieveChanges(GitSCM.java:1237)
	at hudson.plugins.git.GitSCM.checkout(GitSCM.java:1297)
	at org.jenkinsci.plugins.multiplescms.MultiSCM.checkout(MultiSCM.java:143)
	at hudson.scm.SCM.checkout(SCM.java:505)
	at hudson.model.AbstractProject.checkout(AbstractProject.java:1206)
	at hudson.model.AbstractBuild$AbstractBuildExecution.defaultCheckout(AbstractBuild.java:574)
	at jenkins.scm.SCMCheckoutStrategy.checkout(SCMCheckoutStrategy.java:86)
	at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:499)
	at hudson.model.Run.execute(Run.java:1894)
	at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
	at hudson.model.ResourceController.execute(ResourceController.java:97)
	at hudson.model.Executor.run(Executor.java:428)

ERROR: Error fetching remote repo 'origin'
Archiving artifacts
[Checks API] No suitable checks publisher found.
Finished: FAILURE

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

Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on ascic144-trilinos (trilinos-haswell trilinos-any trilinos-37) in workspace /scratch/trilinos/jenkins/ascic144/workspace/trilinos-folder/Trilinos_pullrequest_python_3
The recommended git tool is: NONE
using credential d114a317-3cfb-4285-8fc7-79ae654877f4
 > git rev-parse --is-inside-work-tree # timeout=10
Fetching changes from the remote Git repository
 > git config remote.origin.url https://github.com/trilinos/Trilinos # timeout=10
Fetching upstream changes from https://github.com/trilinos/Trilinos
 > git --version # timeout=10
 > git --version # 'git version 1.8.3.1'
using GIT_SSH to set credentials Trilinos ssh key
Setting http proxy: wwwproxy.sandia.gov:80
 > git fetch --tags --progress https://github.com/trilinos/Trilinos +refs/heads/*:refs/remotes/origin/* # timeout=20
ERROR: Error fetching remote repo 'origin'
hudson.plugins.git.GitException: Failed to fetch from https://github.com/trilinos/Trilinos
	at hudson.plugins.git.GitSCM.fetchFrom(GitSCM.java:996)
	at hudson.plugins.git.GitSCM.retrieveChanges(GitSCM.java:1237)
	at hudson.plugins.git.GitSCM.checkout(GitSCM.java:1297)
	at org.jenkinsci.plugins.multiplescms.MultiSCM.checkout(MultiSCM.java:143)
	at hudson.scm.SCM.checkout(SCM.java:505)
	at hudson.model.AbstractProject.checkout(AbstractProject.java:1206)
	at hudson.model.AbstractBuild$AbstractBuildExecution.defaultCheckout(AbstractBuild.java:574)
	at jenkins.scm.SCMCheckoutStrategy.checkout(SCMCheckoutStrategy.java:86)
	at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:499)
	at hudson.model.Run.execute(Run.java:1894)
	at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
	at hudson.model.ResourceController.execute(ResourceController.java:97)
	at hudson.model.Executor.run(Executor.java:428)
Caused by: hudson.plugins.git.GitException: Command "git fetch --tags --progress https://github.com/trilinos/Trilinos +refs/heads/*:refs/remotes/origin/*" returned status code 128:
stdout: 
stderr: remote: Enumerating objects: 157, done.        
remote: Counting objects:   0% (1/157)        
remote: Counting objects:   1% (2/157)        
remote: Counting objects:   2% (4/157)        
remote: Counting objects:   3% (5/157)        
remote: Counting objects:   4% (7/157)        
remote: Counting objects:   5% (8/157)        
remote: Counting objects:   6% (10/157)        
remote: Counting objects:   7% (11/157)        
remote: Counting objects:   8% (13/157)        
remote: Counting objects:   9% (15/157)        
remote: Counting objects:  10% (16/157)        
remote: Counting objects:  11% (18/157)        
remote: Counting objects:  12% (19/157)        
remote: Counting objects:  13% (21/157)        
remote: Counting objects:  14% (22/157)        
remote: Counting objects:  15% (24/157)        
remote: Counting objects:  16% (26/157)        
remote: Counting objects:  17% (27/157)        
remote: Counting objects:  18% (29/157)        
remote: Counting objects:  19% (30/157)        
remote: Counting objects:  20% (32/157)        
remote: Counting objects:  21% (33/157)        
remote: Counting objects:  22% (35/157)        
remote: Counting objects:  23% (37/157)        
remote: Counting objects:  24% (38/157)        
remote: Counting objects:  25% (40/157)        
remote: Counting objects:  26% (41/157)        
remote: Counting objects:  27% (43/157)        
remote: Counting objects:  28% (44/157)        
remote: Counting objects:  29% (46/157)        
remote: Counting objects:  30% (48/157)        
remote: Counting objects:  31% (49/157)        
remote: Counting objects:  32% (51/157)        
remote: Counting objects:  33% (52/157)        
remote: Counting objects:  34% (54/157)        
remote: Counting objects:  35% (55/157)        
remote: Counting objects:  36% (57/157)        
remote: Counting objects:  37% (59/157)        
remote: Counting objects:  38% (60/157)        
remote: Counting objects:  39% (62/157)        
remote: Counting objects:  40% (63/157)        
remote: Counting objects:  41% (65/157)        
remote: Counting objects:  42% (66/157)        
remote: Counting objects:  43% (68/157)        
remote: Counting objects:  44% (70/157)        
remote: Counting objects:  45% (71/157)        
remote: Counting objects:  46% (73/157)        
remote: Counting objects:  47% (74/157)        
remote: Counting objects:  48% (76/157)        
remote: Counting objects:  49% (77/157)        
remote: Counting objects:  50% (79/157)        
remote: Counting objects:  51% (81/157)        
remote: Counting objects:  52% (82/157)        
remote: Counting objects:  53% (84/157)        
remote: Counting objects:  54% (85/157)        
remote: Counting objects:  55% (87/157)        
remote: Counting objects:  56% (88/157)        
remote: Counting objects:  57% (90/157)        
remote: Counting objects:  58% (92/157)        
remote: Counting objects:  59% (93/157)        
remote: Counting objects:  60% (95/157)        
remote: Counting objects:  61% (96/157)        
remote: Counting objects:  62% (98/157)        
remote: Counting objects:  63% (99/157)        
remote: Counting objects:  64% (101/157)        
remote: Counting objects:  65% (103/157)        
remote: Counting objects:  66% (104/157)        
remote: Counting objects:  67% (106/157)        
remote: Counting objects:  68% (107/157)        
remote: Counting objects:  69% (109/157)        
remote: Counting objects:  70% (110/157)        
remote: Counting objects:  71% (112/157)        
remote: Counting objects:  72% (114/157)        
remote: Counting objects:  73% (115/157)        
remote: Counting objects:  74% (117/157)        
remote: Counting objects:  75% (118/157)        
remote: Counting objects:  76% (120/157)        
remote: Counting objects:  77% (121/157)        
remote: Counting objects:  78% (123/157)        
remote: Counting objects:  79% (125/157)        
remote: Counting objects:  80% (126/157)        
remote: Counting objects:  81% (128/157)        
remote: Counting objects:  82% (129/157)        
remote: Counting objects:  83% (131/157)        
remote: Counting objects:  84% (132/157)        
remote: Counting objects:  85% (134/157)        
remote: Counting objects:  86% (136/157)        
remote: Counting objects:  87% (137/157)        
remote: Counting objects:  88% (139/157)        
remote: Counting objects:  89% (140/157)        
remote: Counting objects:  90% (142/157)        
remote: Counting objects:  91% (143/157)        
remote: Counting objects:  92% (145/157)        
remote: Counting objects:  93% (147/157)        
remote: Counting objects:  94% (148/157)        
remote: Counting objects:  95% (150/157)        
remote: Counting objects:  96% (151/157)        
remote: Counting objects:  97% (153/157)        
remote: Counting objects:  98% (154/157)        
remote: Counting objects:  99% (156/157)        
remote: Counting objects: 100% (157/157)        
remote: Counting objects: 100% (157/157), done.        
remote: Compressing objects:  14% (1/7)        
remote: Compressing objects:  28% (2/7)        
remote: Compressing objects:  42% (3/7)        
remote: Compressing objects:  57% (4/7)        
remote: Compressing objects:  71% (5/7)        
remote: Compressing objects:  85% (6/7)        
remote: Compressing objects: 100% (7/7)        
remote: Compressing objects: 100% (7/7), done.        
Receiving objects:   0% (1/184)   
Receiving objects:   1% (2/184)   
Receiving objects:   2% (4/184)   
Receiving objects:   3% (6/184)   
Receiving objects:   4% (8/184)   
Receiving objects:   5% (10/184)   
Receiving objects:   6% (12/184)   
Receiving objects:   7% (13/184)   
Receiving objects:   8% (15/184)   
Receiving objects:   9% (17/184)   
Receiving objects:  10% (19/184)   
Receiving objects:  11% (21/184)   
Receiving objects:  12% (23/184)   
Receiving objects:  13% (24/184)   
Receiving objects:  14% (26/184)   
Receiving objects:  15% (28/184)   
Receiving objects:  16% (30/184)   
Receiving objects:  17% (32/184)   
Receiving objects:  18% (34/184)   
Receiving objects:  19% (35/184)   
Receiving objects:  20% (37/184)   
Receiving objects:  21% (39/184)   
Receiving objects:  22% (41/184)   
Receiving objects:  23% (43/184)   
Receiving objects:  24% (45/184)   
Receiving objects:  25% (46/184)   
Receiving objects:  26% (48/184)   
Receiving objects:  27% (50/184)   
Receiving objects:  28% (52/184)   
Receiving objects:  29% (54/184)   
Receiving objects:  30% (56/184)   
Receiving objects:  31% (58/184)   
Receiving objects:  32% (59/184)   
Receiving objects:  33% (61/184)   
Receiving objects:  34% (63/184)   
Receiving objects:  35% (65/184)   
Receiving objects:  36% (67/184)   
Receiving objects:  37% (69/184)   
Receiving objects:  38% (70/184)   
Receiving objects:  39% (72/184)   
Receiving objects:  40% (74/184)   
Receiving objects:  41% (76/184)   
Receiving objects:  42% (78/184)   
Receiving objects:  43% (80/184)   
Receiving objects:  44% (81/184)   
Receiving objects:  45% (83/184)   
Receiving objects:  46% (85/184)   
Receiving objects:  47% (87/184)   
Receiving objects:  48% (89/184)   
Receiving objects:  49% (91/184)   
Receiving objects:  50% (92/184)   
Receiving objects:  51% (94/184)   
Receiving objects:  52% (96/184)   
Receiving objects:  53% (98/184)   
Receiving objects:  54% (100/184)   
Receiving objects:  55% (102/184)   
Receiving objects:  56% (104/184)   
Receiving objects:  57% (105/184)   
Receiving objects:  58% (107/184)   
Receiving objects:  59% (109/184)   
Receiving objects:  60% (111/184)   
Receiving objects:  61% (113/184)   
Receiving objects:  62% (115/184)   
Receiving objects:  63% (116/184)   
Receiving objects:  64% (118/184)   
Receiving objects:  65% (120/184)   
Receiving objects:  66% (122/184)   
Receiving objects:  67% (124/184)   
Receiving objects:  68% (126/184)   
Receiving objects:  69% (127/184)   
Receiving objects:  70% (129/184)   
Receiving objects:  71% (131/184)   
remote: Total 184 (delta 150), reused 156 (delta 150), pack-reused 27        
Receiving objects:  72% (133/184)   
Receiving objects:  73% (135/184)   
Receiving objects:  74% (137/184)   
Receiving objects:  75% (138/184)   
Receiving objects:  76% (140/184)   
Receiving objects:  77% (142/184)   
Receiving objects:  78% (144/184)   
Receiving objects:  79% (146/184)   
Receiving objects:  80% (148/184)   
Receiving objects:  81% (150/184)   
Receiving objects:  82% (151/184)   
Receiving objects:  83% (153/184)   
Receiving objects:  84% (155/184)   
Receiving objects:  85% (157/184)   
Receiving objects:  86% (159/184)   
Receiving objects:  87% (161/184)   
Receiving objects:  88% (162/184)   
Receiving objects:  89% (164/184)   
Receiving objects:  90% (166/184)   
Receiving objects:  91% (168/184)   
Receiving objects:  92% (170/184)   
Receiving objects:  93% (172/184)   
Receiving objects:  94% (173/184)   
Receiving objects:  95% (175/184)   
Receiving objects:  96% (177/184)   
Receiving objects:  97% (179/184)   
Receiving objects:  98% (181/184)   
Receiving objects:  99% (183/184)   
Receiving objects: 100% (184/184)   
Receiving objects: 100% (184/184), 88.85 KiB | 0 bytes/s, done.
Resolving deltas:   0% (0/155)   
Resolving deltas:   3% (5/155)   
Resolving deltas:   6% (10/155)   
Resolving deltas:   7% (11/155)   
Resolving deltas:   8% (13/155)   
Resolving deltas:  10% (16/155)   
Resolving deltas:  11% (18/155)   
Resolving deltas:  12% (20/155)   
Resolving deltas:  13% (21/155)   
Resolving deltas:  14% (23/155)   
Resolving deltas:  15% (24/155)   
Resolving deltas:  29% (45/155)   
Resolving deltas:  30% (47/155)   
Resolving deltas:  38% (60/155)   
Resolving deltas:  40% (62/155)   
Resolving deltas:  43% (68/155)   
Resolving deltas:  45% (70/155)   
Resolving deltas:  46% (72/155)   
Resolving deltas:  50% (78/155)   
Resolving deltas:  51% (80/155)   
Resolving deltas:  52% (82/155)   
Resolving deltas:  54% (84/155)   
Resolving deltas:  55% (86/155)   
Resolving deltas:  56% (87/155)   
Resolving deltas:  57% (89/155)   
Resolving deltas:  58% (90/155)   
Resolving deltas:  59% (92/155)   
Resolving deltas:  60% (93/155)   
Resolving deltas:  61% (95/155)   
Resolving deltas:  62% (97/155)   
Resolving deltas:  63% (98/155)   
Resolving deltas:  64% (100/155)   
Resolving deltas:  65% (101/155)   
Resolving deltas:  66% (103/155)   
Resolving deltas:  67% (104/155)   
Resolving deltas:  68% (106/155)   
Resolving deltas:  69% (107/155)   
Resolving deltas:  70% (109/155)   
Resolving deltas:  75% (117/155)   
Resolving deltas:  79% (123/155)   
Resolving deltas:  80% (124/155)   
Resolving deltas:  81% (127/155)   
Resolving deltas:  82% (128/155)   
Resolving deltas:  83% (129/155)   
Resolving deltas:  84% (131/155)   
Resolving deltas:  85% (133/155)   
Resolving deltas:  87% (135/155)   
Resolving deltas:  88% (137/155)   
Resolving deltas:  89% (138/155)   
Resolving deltas:  90% (140/155)   
Resolving deltas:  91% (142/155)   
Resolving deltas:  92% (144/155)   
Resolving deltas:  93% (145/155)   
Resolving deltas:  94% (146/155)   
Resolving deltas:  95% (148/155)   
Resolving deltas:  96% (150/155)   
Resolving deltas:  98% (152/155)   
Resolving deltas:  99% (154/155)   
Resolving deltas: 100% (155/155)   
Resolving deltas: 100% (155/155), completed with 75 local objects.
fatal: unable to look up current user in the passwd file: no such user
Unexpected end of command stream
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandIn(CliGitAPIImpl.java:2450)
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandWithCredentials(CliGitAPIImpl.java:2051)
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.access$500(CliGitAPIImpl.java:84)
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl$1.execute(CliGitAPIImpl.java:573)
at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler$GitCommandMasterToSlaveCallable.call(RemoteGitImpl.java:161)
at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler$GitCommandMasterToSlaveCallable.call(RemoteGitImpl.java:154)
at hudson.remoting.UserRequest.perform(UserRequest.java:211)
at hudson.remoting.UserRequest.perform(UserRequest.java:54)
at hudson.remoting.Request$2.run(Request.java:375)
at hudson.remoting.InterceptingExecutorService$1.call(InterceptingExecutorService.java:73)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
at java.lang.Thread.run(Thread.java:748)
Suppressed: hudson.remoting.Channel$CallSiteStackTrace: Remote call to ascic144-trilinos
	at hudson.remoting.Channel.attachCallSiteStackTrace(Channel.java:1800)
	at hudson.remoting.UserRequest$ExceptionResponse.retrieve(UserRequest.java:357)
	at hudson.remoting.Channel.call(Channel.java:1001)
	at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler.execute(RemoteGitImpl.java:146)
	at sun.reflect.GeneratedMethodAccessor462.invoke(Unknown Source)
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
	at java.lang.reflect.Method.invoke(Method.java:498)
	at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler.invoke(RemoteGitImpl.java:132)
	at com.sun.proxy.$Proxy114.execute(Unknown Source)
	at hudson.plugins.git.GitSCM.fetchFrom(GitSCM.java:994)
	at hudson.plugins.git.GitSCM.retrieveChanges(GitSCM.java:1237)
	at hudson.plugins.git.GitSCM.checkout(GitSCM.java:1297)
	at org.jenkinsci.plugins.multiplescms.MultiSCM.checkout(MultiSCM.java:143)
	at hudson.scm.SCM.checkout(SCM.java:505)
	at hudson.model.AbstractProject.checkout(AbstractProject.java:1206)
	at hudson.model.AbstractBuild$AbstractBuildExecution.defaultCheckout(AbstractBuild.java:574)
	at jenkins.scm.SCMCheckoutStrategy.checkout(SCMCheckoutStrategy.java:86)
	at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:499)
	at hudson.model.Run.execute(Run.java:1894)
	at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
	at hudson.model.ResourceController.execute(ResourceController.java:97)
	at hudson.model.Executor.run(Executor.java:428)

ERROR: Error fetching remote repo 'origin'
Archiving artifacts
[Checks API] No suitable checks publisher found.
Finished: FAILURE


CDash Test Results for PR# 8804.


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_8.3.0

  • Build Num: 3705
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;pkg: Tpetra
PULLREQUESTNUM 8804
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetra_8794_new
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA 05909c0
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA ab5db94

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0_serial

  • Build Num: 1288
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;pkg: Tpetra
PULLREQUESTNUM 8804
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetra_8794_new
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA 05909c0
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA ab5db94

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0_debug

  • Build Num: 1781
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;pkg: Tpetra
PULLREQUESTNUM 8804
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetra_8794_new
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA 05909c0
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA ab5db94

Build Information

Test Name: Trilinos_pullrequest_intel_17.0.1

  • Build Num: 9134
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;pkg: Tpetra
PULLREQUESTNUM 8804
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetra_8794_new
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA 05909c0
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA ab5db94

Build Information

Test Name: Trilinos_pullrequest_cuda_10.1.105

  • Build Num: 596
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;pkg: Tpetra
PULLREQUESTNUM 8804
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetra_8794_new
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA 05909c0
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA ab5db94

Build Information

Test Name: Trilinos_pullrequest_clang_10.0.0

  • Build Num: 1958
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;pkg: Tpetra
PULLREQUESTNUM 8804
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetra_8794_new
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA 05909c0
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA ab5db94

Build Information

Test Name: Trilinos_pullrequest_python_3

  • Build Num: 4632
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;pkg: Tpetra
PULLREQUESTNUM 8804
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetra_8794_new
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA 05909c0
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA ab5db94

Using Repos:

Repo: TRILINOS (trilinos/Trilinos)
  • Branch: tpetra_8794_new
  • SHA: 05909c0
  • Mode: TEST_REPO

Pull Request Author: kddevin

@trilinos-autotester
Copy link
Contributor

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

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

Pull Request Auto Testing has FAILED (click to expand)

Build Information

Test Name: Trilinos_pullrequest_gcc_8.3.0

  • Build Num: 3705
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;pkg: Tpetra
PULLREQUESTNUM 8804
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetra_8794_new
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA 05909c0
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA ab5db94

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0_serial

  • Build Num: 1288
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;pkg: Tpetra
PULLREQUESTNUM 8804
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetra_8794_new
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA 05909c0
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA ab5db94

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0_debug

  • Build Num: 1781
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;pkg: Tpetra
PULLREQUESTNUM 8804
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetra_8794_new
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA 05909c0
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA ab5db94

Build Information

Test Name: Trilinos_pullrequest_intel_17.0.1

  • Build Num: 9134
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;pkg: Tpetra
PULLREQUESTNUM 8804
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetra_8794_new
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA 05909c0
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA ab5db94

Build Information

Test Name: Trilinos_pullrequest_cuda_10.1.105

  • Build Num: 596
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;pkg: Tpetra
PULLREQUESTNUM 8804
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetra_8794_new
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA 05909c0
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA ab5db94

Build Information

Test Name: Trilinos_pullrequest_clang_10.0.0

  • Build Num: 1958
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;pkg: Tpetra
PULLREQUESTNUM 8804
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetra_8794_new
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA 05909c0
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA ab5db94

Build Information

Test Name: Trilinos_pullrequest_python_3

  • Build Num: 4632
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;pkg: Tpetra
PULLREQUESTNUM 8804
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetra_8794_new
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA 05909c0
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA ab5db94
Console Output (last 100 lines) : Trilinos_pullrequest_gcc_8.3.0 # 3705 (click to expand)

Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on ascic144-trilinos (trilinos-haswell trilinos-any trilinos-37) in workspace /scratch/trilinos/jenkins/ascic144/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0
The recommended git tool is: NONE
using credential d114a317-3cfb-4285-8fc7-79ae654877f4
 > git rev-parse --is-inside-work-tree # timeout=10
Fetching changes from the remote Git repository
 > git config remote.origin.url https://github.com/trilinos/Trilinos # timeout=10
Fetching upstream changes from https://github.com/trilinos/Trilinos
 > git --version # timeout=10
 > git --version # 'git version 1.8.3.1'
using GIT_SSH to set credentials Trilinos ssh key
Setting http proxy: wwwproxy.sandia.gov:80
 > git fetch --tags --progress https://github.com/trilinos/Trilinos +refs/heads/*:refs/remotes/origin/* # timeout=20
ERROR: Error fetching remote repo 'origin'
hudson.plugins.git.GitException: Failed to fetch from https://github.com/trilinos/Trilinos
	at hudson.plugins.git.GitSCM.fetchFrom(GitSCM.java:996)
	at hudson.plugins.git.GitSCM.retrieveChanges(GitSCM.java:1237)
	at hudson.plugins.git.GitSCM.checkout(GitSCM.java:1297)
	at org.jenkinsci.plugins.multiplescms.MultiSCM.checkout(MultiSCM.java:143)
	at hudson.scm.SCM.checkout(SCM.java:505)
	at hudson.model.AbstractProject.checkout(AbstractProject.java:1206)
	at hudson.model.AbstractBuild$AbstractBuildExecution.defaultCheckout(AbstractBuild.java:574)
	at jenkins.scm.SCMCheckoutStrategy.checkout(SCMCheckoutStrategy.java:86)
	at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:499)
	at hudson.model.Run.execute(Run.java:1894)
	at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
	at hudson.model.ResourceController.execute(ResourceController.java:97)
	at hudson.model.Executor.run(Executor.java:428)
Caused by: hudson.plugins.git.GitException: Command "git fetch --tags --progress https://github.com/trilinos/Trilinos +refs/heads/*:refs/remotes/origin/*" returned status code 128:
stdout: 
stderr: fatal: unable to look up current user in the passwd file: no such user
Unexpected end of command stream
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandIn(CliGitAPIImpl.java:2450)
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandWithCredentials(CliGitAPIImpl.java:2051)
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.access$500(CliGitAPIImpl.java:84)
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl$1.execute(CliGitAPIImpl.java:573)
at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler$GitCommandMasterToSlaveCallable.call(RemoteGitImpl.java:161)
at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler$GitCommandMasterToSlaveCallable.call(RemoteGitImpl.java:154)
at hudson.remoting.UserRequest.perform(UserRequest.java:211)
at hudson.remoting.UserRequest.perform(UserRequest.java:54)
at hudson.remoting.Request$2.run(Request.java:375)
at hudson.remoting.InterceptingExecutorService$1.call(InterceptingExecutorService.java:73)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
at java.lang.Thread.run(Thread.java:748)
Suppressed: hudson.remoting.Channel$CallSiteStackTrace: Remote call to ascic144-trilinos
	at hudson.remoting.Channel.attachCallSiteStackTrace(Channel.java:1800)
	at hudson.remoting.UserRequest$ExceptionResponse.retrieve(UserRequest.java:357)
	at hudson.remoting.Channel.call(Channel.java:1001)
	at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler.execute(RemoteGitImpl.java:146)
	at sun.reflect.GeneratedMethodAccessor462.invoke(Unknown Source)
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
	at java.lang.reflect.Method.invoke(Method.java:498)
	at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler.invoke(RemoteGitImpl.java:132)
	at com.sun.proxy.$Proxy114.execute(Unknown Source)
	at hudson.plugins.git.GitSCM.fetchFrom(GitSCM.java:994)
	at hudson.plugins.git.GitSCM.retrieveChanges(GitSCM.java:1237)
	at hudson.plugins.git.GitSCM.checkout(GitSCM.java:1297)
	at org.jenkinsci.plugins.multiplescms.MultiSCM.checkout(MultiSCM.java:143)
	at hudson.scm.SCM.checkout(SCM.java:505)
	at hudson.model.AbstractProject.checkout(AbstractProject.java:1206)
	at hudson.model.AbstractBuild$AbstractBuildExecution.defaultCheckout(AbstractBuild.java:574)
	at jenkins.scm.SCMCheckoutStrategy.checkout(SCMCheckoutStrategy.java:86)
	at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:499)
	at hudson.model.Run.execute(Run.java:1894)
	at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
	at hudson.model.ResourceController.execute(ResourceController.java:97)
	at hudson.model.Executor.run(Executor.java:428)

ERROR: Error fetching remote repo 'origin'
Archiving artifacts
[Checks API] No suitable checks publisher found.
Finished: FAILURE

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

Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on ascic144-trilinos (trilinos-haswell trilinos-any trilinos-37) in workspace /scratch/trilinos/jenkins/ascic144/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_serial
The recommended git tool is: NONE
using credential d114a317-3cfb-4285-8fc7-79ae654877f4
 > git rev-parse --is-inside-work-tree # timeout=10
Fetching changes from the remote Git repository
 > git config remote.origin.url https://github.com/trilinos/Trilinos # timeout=10
Fetching upstream changes from https://github.com/trilinos/Trilinos
 > git --version # timeout=10
 > git --version # 'git version 1.8.3.1'
using GIT_SSH to set credentials Trilinos ssh key
Setting http proxy: wwwproxy.sandia.gov:80
 > git fetch --tags --progress https://github.com/trilinos/Trilinos +refs/heads/*:refs/remotes/origin/* # timeout=20
ERROR: Error fetching remote repo 'origin'
hudson.plugins.git.GitException: Failed to fetch from https://github.com/trilinos/Trilinos
	at hudson.plugins.git.GitSCM.fetchFrom(GitSCM.java:996)
	at hudson.plugins.git.GitSCM.retrieveChanges(GitSCM.java:1237)
	at hudson.plugins.git.GitSCM.checkout(GitSCM.java:1297)
	at org.jenkinsci.plugins.multiplescms.MultiSCM.checkout(MultiSCM.java:143)
	at hudson.scm.SCM.checkout(SCM.java:505)
	at hudson.model.AbstractProject.checkout(AbstractProject.java:1206)
	at hudson.model.AbstractBuild$AbstractBuildExecution.defaultCheckout(AbstractBuild.java:574)
	at jenkins.scm.SCMCheckoutStrategy.checkout(SCMCheckoutStrategy.java:86)
	at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:499)
	at hudson.model.Run.execute(Run.java:1894)
	at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
	at hudson.model.ResourceController.execute(ResourceController.java:97)
	at hudson.model.Executor.run(Executor.java:428)
Caused by: hudson.plugins.git.GitException: Command "git fetch --tags --progress https://github.com/trilinos/Trilinos +refs/heads/*:refs/remotes/origin/*" returned status code 128:
stdout: 
stderr: fatal: unable to look up current user in the passwd file: no such user
Unexpected end of command stream
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandIn(CliGitAPIImpl.java:2450)
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandWithCredentials(CliGitAPIImpl.java:2051)
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.access$500(CliGitAPIImpl.java:84)
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl$1.execute(CliGitAPIImpl.java:573)
at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler$GitCommandMasterToSlaveCallable.call(RemoteGitImpl.java:161)
at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler$GitCommandMasterToSlaveCallable.call(RemoteGitImpl.java:154)
at hudson.remoting.UserRequest.perform(UserRequest.java:211)
at hudson.remoting.UserRequest.perform(UserRequest.java:54)
at hudson.remoting.Request$2.run(Request.java:375)
at hudson.remoting.InterceptingExecutorService$1.call(InterceptingExecutorService.java:73)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
at java.lang.Thread.run(Thread.java:748)
Suppressed: hudson.remoting.Channel$CallSiteStackTrace: Remote call to ascic144-trilinos
	at hudson.remoting.Channel.attachCallSiteStackTrace(Channel.java:1800)
	at hudson.remoting.UserRequest$ExceptionResponse.retrieve(UserRequest.java:357)
	at hudson.remoting.Channel.call(Channel.java:1001)
	at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler.execute(RemoteGitImpl.java:146)
	at sun.reflect.GeneratedMethodAccessor462.invoke(Unknown Source)
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
	at java.lang.reflect.Method.invoke(Method.java:498)
	at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler.invoke(RemoteGitImpl.java:132)
	at com.sun.proxy.$Proxy114.execute(Unknown Source)
	at hudson.plugins.git.GitSCM.fetchFrom(GitSCM.java:994)
	at hudson.plugins.git.GitSCM.retrieveChanges(GitSCM.java:1237)
	at hudson.plugins.git.GitSCM.checkout(GitSCM.java:1297)
	at org.jenkinsci.plugins.multiplescms.MultiSCM.checkout(MultiSCM.java:143)
	at hudson.scm.SCM.checkout(SCM.java:505)
	at hudson.model.AbstractProject.checkout(AbstractProject.java:1206)
	at hudson.model.AbstractBuild$AbstractBuildExecution.defaultCheckout(AbstractBuild.java:574)
	at jenkins.scm.SCMCheckoutStrategy.checkout(SCMCheckoutStrategy.java:86)
	at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:499)
	at hudson.model.Run.execute(Run.java:1894)
	at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
	at hudson.model.ResourceController.execute(ResourceController.java:97)
	at hudson.model.Executor.run(Executor.java:428)

ERROR: Error fetching remote repo 'origin'
Archiving artifacts
[Checks API] No suitable checks publisher found.
Finished: FAILURE

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

Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on ascic166-trilinos (trilinos-32 trilinos-skylake trilinos-any) in workspace /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_debug
The recommended git tool is: NONE
using credential d114a317-3cfb-4285-8fc7-79ae654877f4
 > git rev-parse --is-inside-work-tree # timeout=10
Fetching changes from the remote Git repository
 > git config remote.origin.url https://github.com/trilinos/Trilinos # timeout=10
Fetching upstream changes from https://github.com/trilinos/Trilinos
 > git --version # timeout=10
 > git --version # 'git version 1.8.3.1'
using GIT_SSH to set credentials Trilinos ssh key
Setting http proxy: wwwproxy.sandia.gov:80
 > git fetch --tags --progress https://github.com/trilinos/Trilinos +refs/heads/*:refs/remotes/origin/* # timeout=20
ERROR: Error fetching remote repo 'origin'
hudson.plugins.git.GitException: Failed to fetch from https://github.com/trilinos/Trilinos
	at hudson.plugins.git.GitSCM.fetchFrom(GitSCM.java:996)
	at hudson.plugins.git.GitSCM.retrieveChanges(GitSCM.java:1237)
	at hudson.plugins.git.GitSCM.checkout(GitSCM.java:1297)
	at org.jenkinsci.plugins.multiplescms.MultiSCM.checkout(MultiSCM.java:143)
	at hudson.scm.SCM.checkout(SCM.java:505)
	at hudson.model.AbstractProject.checkout(AbstractProject.java:1206)
	at hudson.model.AbstractBuild$AbstractBuildExecution.defaultCheckout(AbstractBuild.java:574)
	at jenkins.scm.SCMCheckoutStrategy.checkout(SCMCheckoutStrategy.java:86)
	at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:499)
	at hudson.model.Run.execute(Run.java:1894)
	at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
	at hudson.model.ResourceController.execute(ResourceController.java:97)
	at hudson.model.Executor.run(Executor.java:428)
Caused by: hudson.plugins.git.GitException: Command "git fetch --tags --progress https://github.com/trilinos/Trilinos +refs/heads/*:refs/remotes/origin/*" returned status code 128:
stdout: 
stderr: fatal: unable to look up current user in the passwd file: no such user
Unexpected end of command stream
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandIn(CliGitAPIImpl.java:2450)
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandWithCredentials(CliGitAPIImpl.java:2051)
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.access$500(CliGitAPIImpl.java:84)
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl$1.execute(CliGitAPIImpl.java:573)
at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler$GitCommandMasterToSlaveCallable.call(RemoteGitImpl.java:161)
at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler$GitCommandMasterToSlaveCallable.call(RemoteGitImpl.java:154)
at hudson.remoting.UserRequest.perform(UserRequest.java:211)
at hudson.remoting.UserRequest.perform(UserRequest.java:54)
at hudson.remoting.Request$2.run(Request.java:375)
at hudson.remoting.InterceptingExecutorService$1.call(InterceptingExecutorService.java:73)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
at java.lang.Thread.run(Thread.java:748)
Suppressed: hudson.remoting.Channel$CallSiteStackTrace: Remote call to ascic166-trilinos
	at hudson.remoting.Channel.attachCallSiteStackTrace(Channel.java:1800)
	at hudson.remoting.UserRequest$ExceptionResponse.retrieve(UserRequest.java:357)
	at hudson.remoting.Channel.call(Channel.java:1001)
	at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler.execute(RemoteGitImpl.java:146)
	at sun.reflect.GeneratedMethodAccessor462.invoke(Unknown Source)
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
	at java.lang.reflect.Method.invoke(Method.java:498)
	at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler.invoke(RemoteGitImpl.java:132)
	at com.sun.proxy.$Proxy114.execute(Unknown Source)
	at hudson.plugins.git.GitSCM.fetchFrom(GitSCM.java:994)
	at hudson.plugins.git.GitSCM.retrieveChanges(GitSCM.java:1237)
	at hudson.plugins.git.GitSCM.checkout(GitSCM.java:1297)
	at org.jenkinsci.plugins.multiplescms.MultiSCM.checkout(MultiSCM.java:143)
	at hudson.scm.SCM.checkout(SCM.java:505)
	at hudson.model.AbstractProject.checkout(AbstractProject.java:1206)
	at hudson.model.AbstractBuild$AbstractBuildExecution.defaultCheckout(AbstractBuild.java:574)
	at jenkins.scm.SCMCheckoutStrategy.checkout(SCMCheckoutStrategy.java:86)
	at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:499)
	at hudson.model.Run.execute(Run.java:1894)
	at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
	at hudson.model.ResourceController.execute(ResourceController.java:97)
	at hudson.model.Executor.run(Executor.java:428)

ERROR: Error fetching remote repo 'origin'
Archiving artifacts
[Checks API] No suitable checks publisher found.
Finished: FAILURE

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

Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on ascic144-trilinos (trilinos-haswell trilinos-any trilinos-37) in workspace /scratch/trilinos/jenkins/ascic144/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1
The recommended git tool is: NONE
No credentials specified
 > git rev-parse --is-inside-work-tree # timeout=10
Fetching changes from the remote Git repository
 > git config remote.origin.url https://github.com/trilinos/Trilinos # timeout=10
Fetching upstream changes from https://github.com/trilinos/Trilinos
 > git --version # timeout=10
 > git --version # 'git version 1.8.3.1'
Setting http proxy: wwwproxy.sandia.gov:80
 > git fetch --tags --progress https://github.com/trilinos/Trilinos +refs/heads/*:refs/remotes/origin/* # timeout=20
ERROR: Error fetching remote repo 'origin'
hudson.plugins.git.GitException: Failed to fetch from https://github.com/trilinos/Trilinos
	at hudson.plugins.git.GitSCM.fetchFrom(GitSCM.java:996)
	at hudson.plugins.git.GitSCM.retrieveChanges(GitSCM.java:1237)
	at hudson.plugins.git.GitSCM.checkout(GitSCM.java:1297)
	at org.jenkinsci.plugins.multiplescms.MultiSCM.checkout(MultiSCM.java:143)
	at hudson.scm.SCM.checkout(SCM.java:505)
	at hudson.model.AbstractProject.checkout(AbstractProject.java:1206)
	at hudson.model.AbstractBuild$AbstractBuildExecution.defaultCheckout(AbstractBuild.java:574)
	at jenkins.scm.SCMCheckoutStrategy.checkout(SCMCheckoutStrategy.java:86)
	at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:499)
	at hudson.model.Run.execute(Run.java:1894)
	at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
	at hudson.model.ResourceController.execute(ResourceController.java:97)
	at hudson.model.Executor.run(Executor.java:428)
Caused by: hudson.plugins.git.GitException: Command "git fetch --tags --progress https://github.com/trilinos/Trilinos +refs/heads/*:refs/remotes/origin/*" returned status code 128:
stdout: 
stderr: fatal: unable to look up current user in the passwd file: no such user
Unexpected end of command stream
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandIn(CliGitAPIImpl.java:2450)
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandWithCredentials(CliGitAPIImpl.java:2051)
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.access$500(CliGitAPIImpl.java:84)
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl$1.execute(CliGitAPIImpl.java:573)
at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler$GitCommandMasterToSlaveCallable.call(RemoteGitImpl.java:161)
at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler$GitCommandMasterToSlaveCallable.call(RemoteGitImpl.java:154)
at hudson.remoting.UserRequest.perform(UserRequest.java:211)
at hudson.remoting.UserRequest.perform(UserRequest.java:54)
at hudson.remoting.Request$2.run(Request.java:375)
at hudson.remoting.InterceptingExecutorService$1.call(InterceptingExecutorService.java:73)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
at java.lang.Thread.run(Thread.java:748)
Suppressed: hudson.remoting.Channel$CallSiteStackTrace: Remote call to ascic144-trilinos
	at hudson.remoting.Channel.attachCallSiteStackTrace(Channel.java:1800)
	at hudson.remoting.UserRequest$ExceptionResponse.retrieve(UserRequest.java:357)
	at hudson.remoting.Channel.call(Channel.java:1001)
	at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler.execute(RemoteGitImpl.java:146)
	at sun.reflect.GeneratedMethodAccessor462.invoke(Unknown Source)
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
	at java.lang.reflect.Method.invoke(Method.java:498)
	at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler.invoke(RemoteGitImpl.java:132)
	at com.sun.proxy.$Proxy114.execute(Unknown Source)
	at hudson.plugins.git.GitSCM.fetchFrom(GitSCM.java:994)
	at hudson.plugins.git.GitSCM.retrieveChanges(GitSCM.java:1237)
	at hudson.plugins.git.GitSCM.checkout(GitSCM.java:1297)
	at org.jenkinsci.plugins.multiplescms.MultiSCM.checkout(MultiSCM.java:143)
	at hudson.scm.SCM.checkout(SCM.java:505)
	at hudson.model.AbstractProject.checkout(AbstractProject.java:1206)
	at hudson.model.AbstractBuild$AbstractBuildExecution.defaultCheckout(AbstractBuild.java:574)
	at jenkins.scm.SCMCheckoutStrategy.checkout(SCMCheckoutStrategy.java:86)
	at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:499)
	at hudson.model.Run.execute(Run.java:1894)
	at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
	at hudson.model.ResourceController.execute(ResourceController.java:97)
	at hudson.model.Executor.run(Executor.java:428)

ERROR: Error fetching remote repo 'origin'
Archiving artifacts
[Checks API] No suitable checks publisher found.
Finished: FAILURE

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

    ..................................................  Size: 11250K
    ..................................................  Size: 11300K
    ..................................................  Size: 11350K
    ..................................................  Size: 11400K
    ..................................................  Size: 11450K
    ..................................................  Size: 11500K
    ..................................................  Size: 11550K
    ..................................................  Size: 11600K
    ..................................................  Size: 11649K
    ..................................................  Size: 11699K
    ..................................................  Size: 11749K
    ..................................................  Size: 11800K
    ..................................................  Size: 11850K
    ..................................................  Size: 11900K
    ..................................................  Size: 11950K
    ..................................................  Size: 12000K
    ..................................................  Size: 12050K
    ..................................................  Size: 12100K
    ..................................................  Size: 12150K
    ..................................................  Size: 12200K
    ..................................................  Size: 12250K
    ..................................................  Size: 12299K
    ..................................................  Size: 12350K
    ..................................................  Size: 12400K
    ..................................................  Size: 12450K
    ..................................................  Size: 12499K
    ..................................................  Size: 12550K
    ..................................................  Size: 12600K
    ..................................................  Size: 12650K
    ..................................................  Size: 12699K
    ..................................................  Size: 12749K
    ..................................................  Size: 12799K
    ..................................................  Size: 12850K
    ..................................................  Size: 12899K
    ..................................................  Size: 12949K
    ..................................................  Size: 12999K
    ..................................................  Size: 13049K
    ..................................................  Size: 13099K
    ..................................................  Size: 13149K
    ..................................................  Size: 13199K
    ..................................................  Size: 13249K
    ..................................................  Size: 13299K
    ..................................................  Size: 13349K
    ..................................................  Size: 13399K
    ..................................................  Size: 13449K
    ..................................................  Size: 13499K
    ..................................................  Size: 13549K
    ..................................................  Size: 13600K
    ..................................................  Size: 13650K
    ..................................................  Size: 13700K
    ..................................................  Size: 13750K
    ..................................................  Size: 13799K
    ..................................................  Size: 13850K
    . Size of output: 13851K
Build succeeded.
build submit error = 0
Starting testing step.
CMake Error at /home/trilinos/jenkins/ride/workspace/trilinos-folder/Trilinos_pullrequest_cuda_10.1.105@3/TFW_testing_single_configure_prototype/simple_testing.cmake:218 (message):
  Test failed with error -1

test submit error = 0
File upload submit error = 0

Enabled Packages:
-- Setting Trilinos_ENABLE_TpetraCore = ON

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

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

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

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

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

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

Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on ascic166-trilinos (trilinos-32 trilinos-skylake trilinos-any) in workspace /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_clang_10.0.0
The recommended git tool is: NONE
using credential d114a317-3cfb-4285-8fc7-79ae654877f4
 > git rev-parse --is-inside-work-tree # timeout=10
Fetching changes from the remote Git repository
 > git config remote.origin.url https://github.com/trilinos/Trilinos # timeout=10
Fetching upstream changes from https://github.com/trilinos/Trilinos
 > git --version # timeout=10
 > git --version # 'git version 1.8.3.1'
using GIT_SSH to set credentials Trilinos ssh key
Setting http proxy: wwwproxy.sandia.gov:80
 > git fetch --tags --progress https://github.com/trilinos/Trilinos +refs/heads/*:refs/remotes/origin/* # timeout=20
ERROR: Error fetching remote repo 'origin'
hudson.plugins.git.GitException: Failed to fetch from https://github.com/trilinos/Trilinos
	at hudson.plugins.git.GitSCM.fetchFrom(GitSCM.java:996)
	at hudson.plugins.git.GitSCM.retrieveChanges(GitSCM.java:1237)
	at hudson.plugins.git.GitSCM.checkout(GitSCM.java:1297)
	at org.jenkinsci.plugins.multiplescms.MultiSCM.checkout(MultiSCM.java:143)
	at hudson.scm.SCM.checkout(SCM.java:505)
	at hudson.model.AbstractProject.checkout(AbstractProject.java:1206)
	at hudson.model.AbstractBuild$AbstractBuildExecution.defaultCheckout(AbstractBuild.java:574)
	at jenkins.scm.SCMCheckoutStrategy.checkout(SCMCheckoutStrategy.java:86)
	at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:499)
	at hudson.model.Run.execute(Run.java:1894)
	at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
	at hudson.model.ResourceController.execute(ResourceController.java:97)
	at hudson.model.Executor.run(Executor.java:428)
Caused by: hudson.plugins.git.GitException: Command "git fetch --tags --progress https://github.com/trilinos/Trilinos +refs/heads/*:refs/remotes/origin/*" returned status code 128:
stdout: 
stderr: fatal: unable to look up current user in the passwd file: no such user
Unexpected end of command stream
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandIn(CliGitAPIImpl.java:2450)
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandWithCredentials(CliGitAPIImpl.java:2051)
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.access$500(CliGitAPIImpl.java:84)
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl$1.execute(CliGitAPIImpl.java:573)
at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler$GitCommandMasterToSlaveCallable.call(RemoteGitImpl.java:161)
at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler$GitCommandMasterToSlaveCallable.call(RemoteGitImpl.java:154)
at hudson.remoting.UserRequest.perform(UserRequest.java:211)
at hudson.remoting.UserRequest.perform(UserRequest.java:54)
at hudson.remoting.Request$2.run(Request.java:375)
at hudson.remoting.InterceptingExecutorService$1.call(InterceptingExecutorService.java:73)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
at java.lang.Thread.run(Thread.java:748)
Suppressed: hudson.remoting.Channel$CallSiteStackTrace: Remote call to ascic166-trilinos
	at hudson.remoting.Channel.attachCallSiteStackTrace(Channel.java:1800)
	at hudson.remoting.UserRequest$ExceptionResponse.retrieve(UserRequest.java:357)
	at hudson.remoting.Channel.call(Channel.java:1001)
	at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler.execute(RemoteGitImpl.java:146)
	at sun.reflect.GeneratedMethodAccessor462.invoke(Unknown Source)
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
	at java.lang.reflect.Method.invoke(Method.java:498)
	at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler.invoke(RemoteGitImpl.java:132)
	at com.sun.proxy.$Proxy114.execute(Unknown Source)
	at hudson.plugins.git.GitSCM.fetchFrom(GitSCM.java:994)
	at hudson.plugins.git.GitSCM.retrieveChanges(GitSCM.java:1237)
	at hudson.plugins.git.GitSCM.checkout(GitSCM.java:1297)
	at org.jenkinsci.plugins.multiplescms.MultiSCM.checkout(MultiSCM.java:143)
	at hudson.scm.SCM.checkout(SCM.java:505)
	at hudson.model.AbstractProject.checkout(AbstractProject.java:1206)
	at hudson.model.AbstractBuild$AbstractBuildExecution.defaultCheckout(AbstractBuild.java:574)
	at jenkins.scm.SCMCheckoutStrategy.checkout(SCMCheckoutStrategy.java:86)
	at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:499)
	at hudson.model.Run.execute(Run.java:1894)
	at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
	at hudson.model.ResourceController.execute(ResourceController.java:97)
	at hudson.model.Executor.run(Executor.java:428)

ERROR: Error fetching remote repo 'origin'
Archiving artifacts
[Checks API] No suitable checks publisher found.
Finished: FAILURE

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

Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on ascic144-trilinos (trilinos-haswell trilinos-any trilinos-37) in workspace /scratch/trilinos/jenkins/ascic144/workspace/trilinos-folder/Trilinos_pullrequest_python_3
The recommended git tool is: NONE
using credential d114a317-3cfb-4285-8fc7-79ae654877f4
 > git rev-parse --is-inside-work-tree # timeout=10
Fetching changes from the remote Git repository
 > git config remote.origin.url https://github.com/trilinos/Trilinos # timeout=10
Fetching upstream changes from https://github.com/trilinos/Trilinos
 > git --version # timeout=10
 > git --version # 'git version 1.8.3.1'
using GIT_SSH to set credentials Trilinos ssh key
Setting http proxy: wwwproxy.sandia.gov:80
 > git fetch --tags --progress https://github.com/trilinos/Trilinos +refs/heads/*:refs/remotes/origin/* # timeout=20
ERROR: Error fetching remote repo 'origin'
hudson.plugins.git.GitException: Failed to fetch from https://github.com/trilinos/Trilinos
	at hudson.plugins.git.GitSCM.fetchFrom(GitSCM.java:996)
	at hudson.plugins.git.GitSCM.retrieveChanges(GitSCM.java:1237)
	at hudson.plugins.git.GitSCM.checkout(GitSCM.java:1297)
	at org.jenkinsci.plugins.multiplescms.MultiSCM.checkout(MultiSCM.java:143)
	at hudson.scm.SCM.checkout(SCM.java:505)
	at hudson.model.AbstractProject.checkout(AbstractProject.java:1206)
	at hudson.model.AbstractBuild$AbstractBuildExecution.defaultCheckout(AbstractBuild.java:574)
	at jenkins.scm.SCMCheckoutStrategy.checkout(SCMCheckoutStrategy.java:86)
	at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:499)
	at hudson.model.Run.execute(Run.java:1894)
	at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
	at hudson.model.ResourceController.execute(ResourceController.java:97)
	at hudson.model.Executor.run(Executor.java:428)
Caused by: hudson.plugins.git.GitException: Command "git fetch --tags --progress https://github.com/trilinos/Trilinos +refs/heads/*:refs/remotes/origin/*" returned status code 128:
stdout: 
stderr: fatal: unable to look up current user in the passwd file: no such user
Unexpected end of command stream
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandIn(CliGitAPIImpl.java:2450)
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandWithCredentials(CliGitAPIImpl.java:2051)
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.access$500(CliGitAPIImpl.java:84)
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl$1.execute(CliGitAPIImpl.java:573)
at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler$GitCommandMasterToSlaveCallable.call(RemoteGitImpl.java:161)
at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler$GitCommandMasterToSlaveCallable.call(RemoteGitImpl.java:154)
at hudson.remoting.UserRequest.perform(UserRequest.java:211)
at hudson.remoting.UserRequest.perform(UserRequest.java:54)
at hudson.remoting.Request$2.run(Request.java:375)
at hudson.remoting.InterceptingExecutorService$1.call(InterceptingExecutorService.java:73)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
at java.lang.Thread.run(Thread.java:748)
Suppressed: hudson.remoting.Channel$CallSiteStackTrace: Remote call to ascic144-trilinos
	at hudson.remoting.Channel.attachCallSiteStackTrace(Channel.java:1800)
	at hudson.remoting.UserRequest$ExceptionResponse.retrieve(UserRequest.java:357)
	at hudson.remoting.Channel.call(Channel.java:1001)
	at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler.execute(RemoteGitImpl.java:146)
	at sun.reflect.GeneratedMethodAccessor462.invoke(Unknown Source)
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
	at java.lang.reflect.Method.invoke(Method.java:498)
	at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler.invoke(RemoteGitImpl.java:132)
	at com.sun.proxy.$Proxy114.execute(Unknown Source)
	at hudson.plugins.git.GitSCM.fetchFrom(GitSCM.java:994)
	at hudson.plugins.git.GitSCM.retrieveChanges(GitSCM.java:1237)
	at hudson.plugins.git.GitSCM.checkout(GitSCM.java:1297)
	at org.jenkinsci.plugins.multiplescms.MultiSCM.checkout(MultiSCM.java:143)
	at hudson.scm.SCM.checkout(SCM.java:505)
	at hudson.model.AbstractProject.checkout(AbstractProject.java:1206)
	at hudson.model.AbstractBuild$AbstractBuildExecution.defaultCheckout(AbstractBuild.java:574)
	at jenkins.scm.SCMCheckoutStrategy.checkout(SCMCheckoutStrategy.java:86)
	at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:499)
	at hudson.model.Run.execute(Run.java:1894)
	at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
	at hudson.model.ResourceController.execute(ResourceController.java:97)
	at hudson.model.Executor.run(Executor.java:428)

ERROR: Error fetching remote repo 'origin'
Archiving artifacts
[Checks API] No suitable checks publisher found.
Finished: FAILURE


CDash Test Results for PR# 8804.


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_8.3.0

  • Build Num: 3715
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;pkg: Tpetra
PULLREQUESTNUM 8804
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetra_8794_new
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA 05909c0
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA ab5db94

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0_serial

  • Build Num: 1298
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;pkg: Tpetra
PULLREQUESTNUM 8804
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetra_8794_new
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA 05909c0
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA ab5db94

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0_debug

  • Build Num: 1791
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;pkg: Tpetra
PULLREQUESTNUM 8804
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetra_8794_new
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA 05909c0
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA ab5db94

Build Information

Test Name: Trilinos_pullrequest_intel_17.0.1

  • Build Num: 9144
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;pkg: Tpetra
PULLREQUESTNUM 8804
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetra_8794_new
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA 05909c0
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA ab5db94

Build Information

Test Name: Trilinos_pullrequest_cuda_10.1.105

  • Build Num: 606
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;pkg: Tpetra
PULLREQUESTNUM 8804
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetra_8794_new
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA 05909c0
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA ab5db94

Build Information

Test Name: Trilinos_pullrequest_clang_10.0.0

  • Build Num: 1968
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;pkg: Tpetra
PULLREQUESTNUM 8804
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetra_8794_new
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA 05909c0
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA ab5db94

Build Information

Test Name: Trilinos_pullrequest_python_3

  • Build Num: 4642
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;pkg: Tpetra
PULLREQUESTNUM 8804
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetra_8794_new
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA 05909c0
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA ab5db94

Using Repos:

Repo: TRILINOS (trilinos/Trilinos)
  • Branch: tpetra_8794_new
  • SHA: 05909c0
  • Mode: TEST_REPO

Pull Request Author: kddevin

@trilinos-autotester
Copy link
Contributor

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

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

Pull Request Auto Testing has FAILED (click to expand)

Build Information

Test Name: Trilinos_pullrequest_gcc_8.3.0

  • Build Num: 3715
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;pkg: Tpetra
PULLREQUESTNUM 8804
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetra_8794_new
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA 05909c0
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA ab5db94

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0_serial

  • Build Num: 1298
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;pkg: Tpetra
PULLREQUESTNUM 8804
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetra_8794_new
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA 05909c0
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA ab5db94

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0_debug

  • Build Num: 1791
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;pkg: Tpetra
PULLREQUESTNUM 8804
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetra_8794_new
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA 05909c0
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA ab5db94

Build Information

Test Name: Trilinos_pullrequest_intel_17.0.1

  • Build Num: 9144
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;pkg: Tpetra
PULLREQUESTNUM 8804
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetra_8794_new
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA 05909c0
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA ab5db94

Build Information

Test Name: Trilinos_pullrequest_cuda_10.1.105

  • Build Num: 606
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;pkg: Tpetra
PULLREQUESTNUM 8804
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetra_8794_new
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA 05909c0
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA ab5db94

Build Information

Test Name: Trilinos_pullrequest_clang_10.0.0

  • Build Num: 1968
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;pkg: Tpetra
PULLREQUESTNUM 8804
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetra_8794_new
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA 05909c0
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA ab5db94

Build Information

Test Name: Trilinos_pullrequest_python_3

  • Build Num: 4642
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;pkg: Tpetra
PULLREQUESTNUM 8804
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetra_8794_new
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA 05909c0
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA ab5db94
Console Output (last 100 lines) : Trilinos_pullrequest_gcc_8.3.0 # 3715 (click to expand)

Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on ascic144-trilinos (trilinos-haswell trilinos-any trilinos-37) in workspace /scratch/trilinos/jenkins/ascic144/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0
The recommended git tool is: NONE
using credential d114a317-3cfb-4285-8fc7-79ae654877f4
 > git rev-parse --is-inside-work-tree # timeout=10
Fetching changes from the remote Git repository
 > git config remote.origin.url https://github.com/trilinos/Trilinos # timeout=10
Fetching upstream changes from https://github.com/trilinos/Trilinos
 > git --version # timeout=10
 > git --version # 'git version 1.8.3.1'
using GIT_SSH to set credentials Trilinos ssh key
Setting http proxy: wwwproxy.sandia.gov:80
 > git fetch --tags --progress https://github.com/trilinos/Trilinos +refs/heads/*:refs/remotes/origin/* # timeout=20
ERROR: Error fetching remote repo 'origin'
hudson.plugins.git.GitException: Failed to fetch from https://github.com/trilinos/Trilinos
	at hudson.plugins.git.GitSCM.fetchFrom(GitSCM.java:996)
	at hudson.plugins.git.GitSCM.retrieveChanges(GitSCM.java:1237)
	at hudson.plugins.git.GitSCM.checkout(GitSCM.java:1297)
	at org.jenkinsci.plugins.multiplescms.MultiSCM.checkout(MultiSCM.java:143)
	at hudson.scm.SCM.checkout(SCM.java:505)
	at hudson.model.AbstractProject.checkout(AbstractProject.java:1206)
	at hudson.model.AbstractBuild$AbstractBuildExecution.defaultCheckout(AbstractBuild.java:574)
	at jenkins.scm.SCMCheckoutStrategy.checkout(SCMCheckoutStrategy.java:86)
	at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:499)
	at hudson.model.Run.execute(Run.java:1894)
	at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
	at hudson.model.ResourceController.execute(ResourceController.java:97)
	at hudson.model.Executor.run(Executor.java:428)
Caused by: hudson.plugins.git.GitException: Command "git fetch --tags --progress https://github.com/trilinos/Trilinos +refs/heads/*:refs/remotes/origin/*" returned status code 128:
stdout: 
stderr: fatal: unable to look up current user in the passwd file: no such user
Unexpected end of command stream
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandIn(CliGitAPIImpl.java:2450)
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandWithCredentials(CliGitAPIImpl.java:2051)
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.access$500(CliGitAPIImpl.java:84)
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl$1.execute(CliGitAPIImpl.java:573)
at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler$GitCommandMasterToSlaveCallable.call(RemoteGitImpl.java:161)
at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler$GitCommandMasterToSlaveCallable.call(RemoteGitImpl.java:154)
at hudson.remoting.UserRequest.perform(UserRequest.java:211)
at hudson.remoting.UserRequest.perform(UserRequest.java:54)
at hudson.remoting.Request$2.run(Request.java:375)
at hudson.remoting.InterceptingExecutorService$1.call(InterceptingExecutorService.java:73)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
at java.lang.Thread.run(Thread.java:748)
Suppressed: hudson.remoting.Channel$CallSiteStackTrace: Remote call to ascic144-trilinos
	at hudson.remoting.Channel.attachCallSiteStackTrace(Channel.java:1800)
	at hudson.remoting.UserRequest$ExceptionResponse.retrieve(UserRequest.java:357)
	at hudson.remoting.Channel.call(Channel.java:1001)
	at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler.execute(RemoteGitImpl.java:146)
	at sun.reflect.GeneratedMethodAccessor462.invoke(Unknown Source)
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
	at java.lang.reflect.Method.invoke(Method.java:498)
	at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler.invoke(RemoteGitImpl.java:132)
	at com.sun.proxy.$Proxy114.execute(Unknown Source)
	at hudson.plugins.git.GitSCM.fetchFrom(GitSCM.java:994)
	at hudson.plugins.git.GitSCM.retrieveChanges(GitSCM.java:1237)
	at hudson.plugins.git.GitSCM.checkout(GitSCM.java:1297)
	at org.jenkinsci.plugins.multiplescms.MultiSCM.checkout(MultiSCM.java:143)
	at hudson.scm.SCM.checkout(SCM.java:505)
	at hudson.model.AbstractProject.checkout(AbstractProject.java:1206)
	at hudson.model.AbstractBuild$AbstractBuildExecution.defaultCheckout(AbstractBuild.java:574)
	at jenkins.scm.SCMCheckoutStrategy.checkout(SCMCheckoutStrategy.java:86)
	at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:499)
	at hudson.model.Run.execute(Run.java:1894)
	at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
	at hudson.model.ResourceController.execute(ResourceController.java:97)
	at hudson.model.Executor.run(Executor.java:428)

ERROR: Error fetching remote repo 'origin'
Archiving artifacts
[Checks API] No suitable checks publisher found.
Finished: FAILURE

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

Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on ascic144-trilinos (trilinos-haswell trilinos-any trilinos-37) in workspace /scratch/trilinos/jenkins/ascic144/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_serial
The recommended git tool is: NONE
using credential d114a317-3cfb-4285-8fc7-79ae654877f4
 > git rev-parse --is-inside-work-tree # timeout=10
Fetching changes from the remote Git repository
 > git config remote.origin.url https://github.com/trilinos/Trilinos # timeout=10
Fetching upstream changes from https://github.com/trilinos/Trilinos
 > git --version # timeout=10
 > git --version # 'git version 1.8.3.1'
using GIT_SSH to set credentials Trilinos ssh key
Setting http proxy: wwwproxy.sandia.gov:80
 > git fetch --tags --progress https://github.com/trilinos/Trilinos +refs/heads/*:refs/remotes/origin/* # timeout=20
ERROR: Error fetching remote repo 'origin'
hudson.plugins.git.GitException: Failed to fetch from https://github.com/trilinos/Trilinos
	at hudson.plugins.git.GitSCM.fetchFrom(GitSCM.java:996)
	at hudson.plugins.git.GitSCM.retrieveChanges(GitSCM.java:1237)
	at hudson.plugins.git.GitSCM.checkout(GitSCM.java:1297)
	at org.jenkinsci.plugins.multiplescms.MultiSCM.checkout(MultiSCM.java:143)
	at hudson.scm.SCM.checkout(SCM.java:505)
	at hudson.model.AbstractProject.checkout(AbstractProject.java:1206)
	at hudson.model.AbstractBuild$AbstractBuildExecution.defaultCheckout(AbstractBuild.java:574)
	at jenkins.scm.SCMCheckoutStrategy.checkout(SCMCheckoutStrategy.java:86)
	at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:499)
	at hudson.model.Run.execute(Run.java:1894)
	at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
	at hudson.model.ResourceController.execute(ResourceController.java:97)
	at hudson.model.Executor.run(Executor.java:428)
Caused by: hudson.plugins.git.GitException: Command "git fetch --tags --progress https://github.com/trilinos/Trilinos +refs/heads/*:refs/remotes/origin/*" returned status code 128:
stdout: 
stderr: fatal: unable to look up current user in the passwd file: no such user
Unexpected end of command stream
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandIn(CliGitAPIImpl.java:2450)
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandWithCredentials(CliGitAPIImpl.java:2051)
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.access$500(CliGitAPIImpl.java:84)
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl$1.execute(CliGitAPIImpl.java:573)
at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler$GitCommandMasterToSlaveCallable.call(RemoteGitImpl.java:161)
at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler$GitCommandMasterToSlaveCallable.call(RemoteGitImpl.java:154)
at hudson.remoting.UserRequest.perform(UserRequest.java:211)
at hudson.remoting.UserRequest.perform(UserRequest.java:54)
at hudson.remoting.Request$2.run(Request.java:375)
at hudson.remoting.InterceptingExecutorService$1.call(InterceptingExecutorService.java:73)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
at java.lang.Thread.run(Thread.java:748)
Suppressed: hudson.remoting.Channel$CallSiteStackTrace: Remote call to ascic144-trilinos
	at hudson.remoting.Channel.attachCallSiteStackTrace(Channel.java:1800)
	at hudson.remoting.UserRequest$ExceptionResponse.retrieve(UserRequest.java:357)
	at hudson.remoting.Channel.call(Channel.java:1001)
	at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler.execute(RemoteGitImpl.java:146)
	at sun.reflect.GeneratedMethodAccessor462.invoke(Unknown Source)
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
	at java.lang.reflect.Method.invoke(Method.java:498)
	at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler.invoke(RemoteGitImpl.java:132)
	at com.sun.proxy.$Proxy114.execute(Unknown Source)
	at hudson.plugins.git.GitSCM.fetchFrom(GitSCM.java:994)
	at hudson.plugins.git.GitSCM.retrieveChanges(GitSCM.java:1237)
	at hudson.plugins.git.GitSCM.checkout(GitSCM.java:1297)
	at org.jenkinsci.plugins.multiplescms.MultiSCM.checkout(MultiSCM.java:143)
	at hudson.scm.SCM.checkout(SCM.java:505)
	at hudson.model.AbstractProject.checkout(AbstractProject.java:1206)
	at hudson.model.AbstractBuild$AbstractBuildExecution.defaultCheckout(AbstractBuild.java:574)
	at jenkins.scm.SCMCheckoutStrategy.checkout(SCMCheckoutStrategy.java:86)
	at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:499)
	at hudson.model.Run.execute(Run.java:1894)
	at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
	at hudson.model.ResourceController.execute(ResourceController.java:97)
	at hudson.model.Executor.run(Executor.java:428)

ERROR: Error fetching remote repo 'origin'
Archiving artifacts
[Checks API] No suitable checks publisher found.
Finished: FAILURE

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

Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on ascic166-trilinos (trilinos-32 trilinos-skylake trilinos-any) in workspace /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_debug
The recommended git tool is: NONE
using credential d114a317-3cfb-4285-8fc7-79ae654877f4
 > git rev-parse --is-inside-work-tree # timeout=10
Fetching changes from the remote Git repository
 > git config remote.origin.url https://github.com/trilinos/Trilinos # timeout=10
Fetching upstream changes from https://github.com/trilinos/Trilinos
 > git --version # timeout=10
 > git --version # 'git version 1.8.3.1'
using GIT_SSH to set credentials Trilinos ssh key
Setting http proxy: wwwproxy.sandia.gov:80
 > git fetch --tags --progress https://github.com/trilinos/Trilinos +refs/heads/*:refs/remotes/origin/* # timeout=20
ERROR: Error fetching remote repo 'origin'
hudson.plugins.git.GitException: Failed to fetch from https://github.com/trilinos/Trilinos
	at hudson.plugins.git.GitSCM.fetchFrom(GitSCM.java:996)
	at hudson.plugins.git.GitSCM.retrieveChanges(GitSCM.java:1237)
	at hudson.plugins.git.GitSCM.checkout(GitSCM.java:1297)
	at org.jenkinsci.plugins.multiplescms.MultiSCM.checkout(MultiSCM.java:143)
	at hudson.scm.SCM.checkout(SCM.java:505)
	at hudson.model.AbstractProject.checkout(AbstractProject.java:1206)
	at hudson.model.AbstractBuild$AbstractBuildExecution.defaultCheckout(AbstractBuild.java:574)
	at jenkins.scm.SCMCheckoutStrategy.checkout(SCMCheckoutStrategy.java:86)
	at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:499)
	at hudson.model.Run.execute(Run.java:1894)
	at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
	at hudson.model.ResourceController.execute(ResourceController.java:97)
	at hudson.model.Executor.run(Executor.java:428)
Caused by: hudson.plugins.git.GitException: Command "git fetch --tags --progress https://github.com/trilinos/Trilinos +refs/heads/*:refs/remotes/origin/*" returned status code 128:
stdout: 
stderr: fatal: unable to look up current user in the passwd file: no such user
Unexpected end of command stream
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandIn(CliGitAPIImpl.java:2450)
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandWithCredentials(CliGitAPIImpl.java:2051)
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.access$500(CliGitAPIImpl.java:84)
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl$1.execute(CliGitAPIImpl.java:573)
at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler$GitCommandMasterToSlaveCallable.call(RemoteGitImpl.java:161)
at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler$GitCommandMasterToSlaveCallable.call(RemoteGitImpl.java:154)
at hudson.remoting.UserRequest.perform(UserRequest.java:211)
at hudson.remoting.UserRequest.perform(UserRequest.java:54)
at hudson.remoting.Request$2.run(Request.java:375)
at hudson.remoting.InterceptingExecutorService$1.call(InterceptingExecutorService.java:73)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
at java.lang.Thread.run(Thread.java:748)
Suppressed: hudson.remoting.Channel$CallSiteStackTrace: Remote call to ascic166-trilinos
	at hudson.remoting.Channel.attachCallSiteStackTrace(Channel.java:1800)
	at hudson.remoting.UserRequest$ExceptionResponse.retrieve(UserRequest.java:357)
	at hudson.remoting.Channel.call(Channel.java:1001)
	at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler.execute(RemoteGitImpl.java:146)
	at sun.reflect.GeneratedMethodAccessor462.invoke(Unknown Source)
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
	at java.lang.reflect.Method.invoke(Method.java:498)
	at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler.invoke(RemoteGitImpl.java:132)
	at com.sun.proxy.$Proxy114.execute(Unknown Source)
	at hudson.plugins.git.GitSCM.fetchFrom(GitSCM.java:994)
	at hudson.plugins.git.GitSCM.retrieveChanges(GitSCM.java:1237)
	at hudson.plugins.git.GitSCM.checkout(GitSCM.java:1297)
	at org.jenkinsci.plugins.multiplescms.MultiSCM.checkout(MultiSCM.java:143)
	at hudson.scm.SCM.checkout(SCM.java:505)
	at hudson.model.AbstractProject.checkout(AbstractProject.java:1206)
	at hudson.model.AbstractBuild$AbstractBuildExecution.defaultCheckout(AbstractBuild.java:574)
	at jenkins.scm.SCMCheckoutStrategy.checkout(SCMCheckoutStrategy.java:86)
	at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:499)
	at hudson.model.Run.execute(Run.java:1894)
	at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
	at hudson.model.ResourceController.execute(ResourceController.java:97)
	at hudson.model.Executor.run(Executor.java:428)

ERROR: Error fetching remote repo 'origin'
Archiving artifacts
[Checks API] No suitable checks publisher found.
Finished: FAILURE

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

Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on ascic144-trilinos (trilinos-haswell trilinos-any trilinos-37) in workspace /scratch/trilinos/jenkins/ascic144/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1
The recommended git tool is: NONE
No credentials specified
 > git rev-parse --is-inside-work-tree # timeout=10
Fetching changes from the remote Git repository
 > git config remote.origin.url https://github.com/trilinos/Trilinos # timeout=10
Fetching upstream changes from https://github.com/trilinos/Trilinos
 > git --version # timeout=10
 > git --version # 'git version 1.8.3.1'
Setting http proxy: wwwproxy.sandia.gov:80
 > git fetch --tags --progress https://github.com/trilinos/Trilinos +refs/heads/*:refs/remotes/origin/* # timeout=20
ERROR: Error fetching remote repo 'origin'
hudson.plugins.git.GitException: Failed to fetch from https://github.com/trilinos/Trilinos
	at hudson.plugins.git.GitSCM.fetchFrom(GitSCM.java:996)
	at hudson.plugins.git.GitSCM.retrieveChanges(GitSCM.java:1237)
	at hudson.plugins.git.GitSCM.checkout(GitSCM.java:1297)
	at org.jenkinsci.plugins.multiplescms.MultiSCM.checkout(MultiSCM.java:143)
	at hudson.scm.SCM.checkout(SCM.java:505)
	at hudson.model.AbstractProject.checkout(AbstractProject.java:1206)
	at hudson.model.AbstractBuild$AbstractBuildExecution.defaultCheckout(AbstractBuild.java:574)
	at jenkins.scm.SCMCheckoutStrategy.checkout(SCMCheckoutStrategy.java:86)
	at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:499)
	at hudson.model.Run.execute(Run.java:1894)
	at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
	at hudson.model.ResourceController.execute(ResourceController.java:97)
	at hudson.model.Executor.run(Executor.java:428)
Caused by: hudson.plugins.git.GitException: Command "git fetch --tags --progress https://github.com/trilinos/Trilinos +refs/heads/*:refs/remotes/origin/*" returned status code 128:
stdout: 
stderr: fatal: unable to look up current user in the passwd file: no such user
Unexpected end of command stream
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandIn(CliGitAPIImpl.java:2450)
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandWithCredentials(CliGitAPIImpl.java:2051)
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.access$500(CliGitAPIImpl.java:84)
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl$1.execute(CliGitAPIImpl.java:573)
at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler$GitCommandMasterToSlaveCallable.call(RemoteGitImpl.java:161)
at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler$GitCommandMasterToSlaveCallable.call(RemoteGitImpl.java:154)
at hudson.remoting.UserRequest.perform(UserRequest.java:211)
at hudson.remoting.UserRequest.perform(UserRequest.java:54)
at hudson.remoting.Request$2.run(Request.java:375)
at hudson.remoting.InterceptingExecutorService$1.call(InterceptingExecutorService.java:73)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
at java.lang.Thread.run(Thread.java:748)
Suppressed: hudson.remoting.Channel$CallSiteStackTrace: Remote call to ascic144-trilinos
	at hudson.remoting.Channel.attachCallSiteStackTrace(Channel.java:1800)
	at hudson.remoting.UserRequest$ExceptionResponse.retrieve(UserRequest.java:357)
	at hudson.remoting.Channel.call(Channel.java:1001)
	at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler.execute(RemoteGitImpl.java:146)
	at sun.reflect.GeneratedMethodAccessor462.invoke(Unknown Source)
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
	at java.lang.reflect.Method.invoke(Method.java:498)
	at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler.invoke(RemoteGitImpl.java:132)
	at com.sun.proxy.$Proxy114.execute(Unknown Source)
	at hudson.plugins.git.GitSCM.fetchFrom(GitSCM.java:994)
	at hudson.plugins.git.GitSCM.retrieveChanges(GitSCM.java:1237)
	at hudson.plugins.git.GitSCM.checkout(GitSCM.java:1297)
	at org.jenkinsci.plugins.multiplescms.MultiSCM.checkout(MultiSCM.java:143)
	at hudson.scm.SCM.checkout(SCM.java:505)
	at hudson.model.AbstractProject.checkout(AbstractProject.java:1206)
	at hudson.model.AbstractBuild$AbstractBuildExecution.defaultCheckout(AbstractBuild.java:574)
	at jenkins.scm.SCMCheckoutStrategy.checkout(SCMCheckoutStrategy.java:86)
	at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:499)
	at hudson.model.Run.execute(Run.java:1894)
	at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
	at hudson.model.ResourceController.execute(ResourceController.java:97)
	at hudson.model.Executor.run(Executor.java:428)

ERROR: Error fetching remote repo 'origin'
Archiving artifacts
[Checks API] No suitable checks publisher found.
Finished: FAILURE

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

    ..................................................  Size: 11249K
    ..................................................  Size: 11299K
    ..................................................  Size: 11349K
    ..................................................  Size: 11400K
    ..................................................  Size: 11450K
    ..................................................  Size: 11500K
    ..................................................  Size: 11550K
    ..................................................  Size: 11600K
    ..................................................  Size: 11650K
    ..................................................  Size: 11699K
    ..................................................  Size: 11749K
    ..................................................  Size: 11799K
    ..................................................  Size: 11849K
    ..................................................  Size: 11900K
    ..................................................  Size: 11950K
    ..................................................  Size: 12000K
    ..................................................  Size: 12050K
    ..................................................  Size: 12099K
    ..................................................  Size: 12150K
    ..................................................  Size: 12200K
    ..................................................  Size: 12250K
    ..................................................  Size: 12300K
    ..................................................  Size: 12350K
    ..................................................  Size: 12400K
    ..................................................  Size: 12450K
    ..................................................  Size: 12500K
    ..................................................  Size: 12549K
    ..................................................  Size: 12600K
    ..................................................  Size: 12650K
    ..................................................  Size: 12700K
    ..................................................  Size: 12750K
    ..................................................  Size: 12800K
    ..................................................  Size: 12850K
    ..................................................  Size: 12900K
    ..................................................  Size: 12950K
    ..................................................  Size: 12999K
    ..................................................  Size: 13049K
    ..................................................  Size: 13099K
    ..................................................  Size: 13149K
    ..................................................  Size: 13199K
    ..................................................  Size: 13249K
    ..................................................  Size: 13299K
    ..................................................  Size: 13349K
    ..................................................  Size: 13399K
    ..................................................  Size: 13449K
    ..................................................  Size: 13499K
    ..................................................  Size: 13550K
    ..................................................  Size: 13600K
    ..................................................  Size: 13650K
    ..................................................  Size: 13699K
    ..................................................  Size: 13749K
    ..................................................  Size: 13799K
    ..................................................  Size: 13849K
    ....... Size of output: 13856K
Build succeeded.
build submit error = 0
Starting testing step.
CMake Error at /home/trilinos/jenkins/ride/workspace/trilinos-folder/Trilinos_pullrequest_cuda_10.1.105@3/TFW_testing_single_configure_prototype/simple_testing.cmake:218 (message):
  Test failed with error -1

test submit error = 0
File upload submit error = 0

Enabled Packages:
-- Setting Trilinos_ENABLE_TpetraCore = ON

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

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

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

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

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

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

Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on ascic166-trilinos (trilinos-32 trilinos-skylake trilinos-any) in workspace /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_clang_10.0.0
The recommended git tool is: NONE
using credential d114a317-3cfb-4285-8fc7-79ae654877f4
 > git rev-parse --is-inside-work-tree # timeout=10
Fetching changes from the remote Git repository
 > git config remote.origin.url https://github.com/trilinos/Trilinos # timeout=10
Fetching upstream changes from https://github.com/trilinos/Trilinos
 > git --version # timeout=10
 > git --version # 'git version 1.8.3.1'
using GIT_SSH to set credentials Trilinos ssh key
Setting http proxy: wwwproxy.sandia.gov:80
 > git fetch --tags --progress https://github.com/trilinos/Trilinos +refs/heads/*:refs/remotes/origin/* # timeout=20
ERROR: Error fetching remote repo 'origin'
hudson.plugins.git.GitException: Failed to fetch from https://github.com/trilinos/Trilinos
	at hudson.plugins.git.GitSCM.fetchFrom(GitSCM.java:996)
	at hudson.plugins.git.GitSCM.retrieveChanges(GitSCM.java:1237)
	at hudson.plugins.git.GitSCM.checkout(GitSCM.java:1297)
	at org.jenkinsci.plugins.multiplescms.MultiSCM.checkout(MultiSCM.java:143)
	at hudson.scm.SCM.checkout(SCM.java:505)
	at hudson.model.AbstractProject.checkout(AbstractProject.java:1206)
	at hudson.model.AbstractBuild$AbstractBuildExecution.defaultCheckout(AbstractBuild.java:574)
	at jenkins.scm.SCMCheckoutStrategy.checkout(SCMCheckoutStrategy.java:86)
	at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:499)
	at hudson.model.Run.execute(Run.java:1894)
	at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
	at hudson.model.ResourceController.execute(ResourceController.java:97)
	at hudson.model.Executor.run(Executor.java:428)
Caused by: hudson.plugins.git.GitException: Command "git fetch --tags --progress https://github.com/trilinos/Trilinos +refs/heads/*:refs/remotes/origin/*" returned status code 128:
stdout: 
stderr: fatal: unable to look up current user in the passwd file: no such user
Unexpected end of command stream
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandIn(CliGitAPIImpl.java:2450)
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandWithCredentials(CliGitAPIImpl.java:2051)
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.access$500(CliGitAPIImpl.java:84)
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl$1.execute(CliGitAPIImpl.java:573)
at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler$GitCommandMasterToSlaveCallable.call(RemoteGitImpl.java:161)
at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler$GitCommandMasterToSlaveCallable.call(RemoteGitImpl.java:154)
at hudson.remoting.UserRequest.perform(UserRequest.java:211)
at hudson.remoting.UserRequest.perform(UserRequest.java:54)
at hudson.remoting.Request$2.run(Request.java:375)
at hudson.remoting.InterceptingExecutorService$1.call(InterceptingExecutorService.java:73)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
at java.lang.Thread.run(Thread.java:748)
Suppressed: hudson.remoting.Channel$CallSiteStackTrace: Remote call to ascic166-trilinos
	at hudson.remoting.Channel.attachCallSiteStackTrace(Channel.java:1800)
	at hudson.remoting.UserRequest$ExceptionResponse.retrieve(UserRequest.java:357)
	at hudson.remoting.Channel.call(Channel.java:1001)
	at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler.execute(RemoteGitImpl.java:146)
	at sun.reflect.GeneratedMethodAccessor462.invoke(Unknown Source)
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
	at java.lang.reflect.Method.invoke(Method.java:498)
	at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler.invoke(RemoteGitImpl.java:132)
	at com.sun.proxy.$Proxy114.execute(Unknown Source)
	at hudson.plugins.git.GitSCM.fetchFrom(GitSCM.java:994)
	at hudson.plugins.git.GitSCM.retrieveChanges(GitSCM.java:1237)
	at hudson.plugins.git.GitSCM.checkout(GitSCM.java:1297)
	at org.jenkinsci.plugins.multiplescms.MultiSCM.checkout(MultiSCM.java:143)
	at hudson.scm.SCM.checkout(SCM.java:505)
	at hudson.model.AbstractProject.checkout(AbstractProject.java:1206)
	at hudson.model.AbstractBuild$AbstractBuildExecution.defaultCheckout(AbstractBuild.java:574)
	at jenkins.scm.SCMCheckoutStrategy.checkout(SCMCheckoutStrategy.java:86)
	at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:499)
	at hudson.model.Run.execute(Run.java:1894)
	at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
	at hudson.model.ResourceController.execute(ResourceController.java:97)
	at hudson.model.Executor.run(Executor.java:428)

ERROR: Error fetching remote repo 'origin'
Archiving artifacts
[Checks API] No suitable checks publisher found.
Finished: FAILURE

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

Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on ascic144-trilinos (trilinos-haswell trilinos-any trilinos-37) in workspace /scratch/trilinos/jenkins/ascic144/workspace/trilinos-folder/Trilinos_pullrequest_python_3
The recommended git tool is: NONE
using credential d114a317-3cfb-4285-8fc7-79ae654877f4
 > git rev-parse --is-inside-work-tree # timeout=10
Fetching changes from the remote Git repository
 > git config remote.origin.url https://github.com/trilinos/Trilinos # timeout=10
Fetching upstream changes from https://github.com/trilinos/Trilinos
 > git --version # timeout=10
 > git --version # 'git version 1.8.3.1'
using GIT_SSH to set credentials Trilinos ssh key
Setting http proxy: wwwproxy.sandia.gov:80
 > git fetch --tags --progress https://github.com/trilinos/Trilinos +refs/heads/*:refs/remotes/origin/* # timeout=20
ERROR: Error fetching remote repo 'origin'
hudson.plugins.git.GitException: Failed to fetch from https://github.com/trilinos/Trilinos
	at hudson.plugins.git.GitSCM.fetchFrom(GitSCM.java:996)
	at hudson.plugins.git.GitSCM.retrieveChanges(GitSCM.java:1237)
	at hudson.plugins.git.GitSCM.checkout(GitSCM.java:1297)
	at org.jenkinsci.plugins.multiplescms.MultiSCM.checkout(MultiSCM.java:143)
	at hudson.scm.SCM.checkout(SCM.java:505)
	at hudson.model.AbstractProject.checkout(AbstractProject.java:1206)
	at hudson.model.AbstractBuild$AbstractBuildExecution.defaultCheckout(AbstractBuild.java:574)
	at jenkins.scm.SCMCheckoutStrategy.checkout(SCMCheckoutStrategy.java:86)
	at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:499)
	at hudson.model.Run.execute(Run.java:1894)
	at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
	at hudson.model.ResourceController.execute(ResourceController.java:97)
	at hudson.model.Executor.run(Executor.java:428)
Caused by: hudson.plugins.git.GitException: Command "git fetch --tags --progress https://github.com/trilinos/Trilinos +refs/heads/*:refs/remotes/origin/*" returned status code 128:
stdout: 
stderr: fatal: unable to look up current user in the passwd file: no such user
Unexpected end of command stream
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandIn(CliGitAPIImpl.java:2450)
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandWithCredentials(CliGitAPIImpl.java:2051)
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.access$500(CliGitAPIImpl.java:84)
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl$1.execute(CliGitAPIImpl.java:573)
at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler$GitCommandMasterToSlaveCallable.call(RemoteGitImpl.java:161)
at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler$GitCommandMasterToSlaveCallable.call(RemoteGitImpl.java:154)
at hudson.remoting.UserRequest.perform(UserRequest.java:211)
at hudson.remoting.UserRequest.perform(UserRequest.java:54)
at hudson.remoting.Request$2.run(Request.java:375)
at hudson.remoting.InterceptingExecutorService$1.call(InterceptingExecutorService.java:73)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
at java.lang.Thread.run(Thread.java:748)
Suppressed: hudson.remoting.Channel$CallSiteStackTrace: Remote call to ascic144-trilinos
	at hudson.remoting.Channel.attachCallSiteStackTrace(Channel.java:1800)
	at hudson.remoting.UserRequest$ExceptionResponse.retrieve(UserRequest.java:357)
	at hudson.remoting.Channel.call(Channel.java:1001)
	at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler.execute(RemoteGitImpl.java:146)
	at sun.reflect.GeneratedMethodAccessor462.invoke(Unknown Source)
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
	at java.lang.reflect.Method.invoke(Method.java:498)
	at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler.invoke(RemoteGitImpl.java:132)
	at com.sun.proxy.$Proxy114.execute(Unknown Source)
	at hudson.plugins.git.GitSCM.fetchFrom(GitSCM.java:994)
	at hudson.plugins.git.GitSCM.retrieveChanges(GitSCM.java:1237)
	at hudson.plugins.git.GitSCM.checkout(GitSCM.java:1297)
	at org.jenkinsci.plugins.multiplescms.MultiSCM.checkout(MultiSCM.java:143)
	at hudson.scm.SCM.checkout(SCM.java:505)
	at hudson.model.AbstractProject.checkout(AbstractProject.java:1206)
	at hudson.model.AbstractBuild$AbstractBuildExecution.defaultCheckout(AbstractBuild.java:574)
	at jenkins.scm.SCMCheckoutStrategy.checkout(SCMCheckoutStrategy.java:86)
	at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:499)
	at hudson.model.Run.execute(Run.java:1894)
	at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
	at hudson.model.ResourceController.execute(ResourceController.java:97)
	at hudson.model.Executor.run(Executor.java:428)

ERROR: Error fetching remote repo 'origin'
Archiving artifacts
[Checks API] No suitable checks publisher found.
Finished: FAILURE


CDash Test Results for PR# 8804.


Wiki: How to Reproduce PR Testing Builds and Errors.

next commit will have enhanced test
@trilinos-autotester
Copy link
Contributor

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

@trilinos-autotester
Copy link
Contributor

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

Pull Request Auto Testing STARTING (click to expand)

Build Information

Test Name: Trilinos_pullrequest_gcc_8.3.0

  • Build Num: 3728
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;pkg: Tpetra
PULLREQUESTNUM 8804
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetra_8794_new
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA 4d8de88
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA ab5db94

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0_serial

  • Build Num: 1311
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;pkg: Tpetra
PULLREQUESTNUM 8804
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetra_8794_new
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA 4d8de88
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA ab5db94

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0_debug

  • Build Num: 1804
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;pkg: Tpetra
PULLREQUESTNUM 8804
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetra_8794_new
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA 4d8de88
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA ab5db94

Build Information

Test Name: Trilinos_pullrequest_intel_17.0.1

  • Build Num: 9157
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;pkg: Tpetra
PULLREQUESTNUM 8804
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetra_8794_new
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA 4d8de88
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA ab5db94

Build Information

Test Name: Trilinos_pullrequest_cuda_10.1.105

  • Build Num: 619
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;pkg: Tpetra
PULLREQUESTNUM 8804
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetra_8794_new
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA 4d8de88
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA ab5db94

Build Information

Test Name: Trilinos_pullrequest_clang_10.0.0

  • Build Num: 1981
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;pkg: Tpetra
PULLREQUESTNUM 8804
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetra_8794_new
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA 4d8de88
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA ab5db94

Build Information

Test Name: Trilinos_pullrequest_python_3

  • Build Num: 4655
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;pkg: Tpetra
PULLREQUESTNUM 8804
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetra_8794_new
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA 4d8de88
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA ab5db94

Using Repos:

Repo: TRILINOS (trilinos/Trilinos)
  • Branch: tpetra_8794_new
  • SHA: 4d8de88
  • Mode: TEST_REPO

Pull Request Author: kddevin

@trilinos-autotester
Copy link
Contributor

Status Flag 'Pull Request AutoTester' - Error: Jenkins Jobs - A user has commited a change to the PR before testing completed. The original testing SHA = 4d8de88 Does not match the current commit SHA = e2900a9. The Jenkins Jobs will be shutdown; Testing of this PR must occur again.

@trilinos-autotester
Copy link
Contributor

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

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

Pull Request Auto Testing has FAILED (click to expand)

Build Information

Test Name: Trilinos_pullrequest_gcc_8.3.0

  • Build Num: 3728
  • Status: ERROR

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;pkg: Tpetra
PULLREQUESTNUM 8804
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetra_8794_new
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA 4d8de88
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA ab5db94

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0_serial

  • Build Num: 1311
  • Status: ERROR

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;pkg: Tpetra
PULLREQUESTNUM 8804
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetra_8794_new
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA 4d8de88
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA ab5db94

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0_debug

  • Build Num: 1804
  • Status: ERROR

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;pkg: Tpetra
PULLREQUESTNUM 8804
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetra_8794_new
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA 4d8de88
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA ab5db94

Build Information

Test Name: Trilinos_pullrequest_intel_17.0.1

  • Build Num: 9157
  • Status: ERROR

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;pkg: Tpetra
PULLREQUESTNUM 8804
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetra_8794_new
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA 4d8de88
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA ab5db94

Build Information

Test Name: Trilinos_pullrequest_cuda_10.1.105

  • Build Num: 619
  • Status: ERROR

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;pkg: Tpetra
PULLREQUESTNUM 8804
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetra_8794_new
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA 4d8de88
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA ab5db94

Build Information

Test Name: Trilinos_pullrequest_clang_10.0.0

  • Build Num: 1981
  • Status: ERROR

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;pkg: Tpetra
PULLREQUESTNUM 8804
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetra_8794_new
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA 4d8de88
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA ab5db94

Build Information

Test Name: Trilinos_pullrequest_python_3

  • Build Num: 4655
  • Status: ERROR

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;pkg: Tpetra
PULLREQUESTNUM 8804
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetra_8794_new
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA 4d8de88
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA ab5db94
Console Output (last 100 lines) : Trilinos_pullrequest_gcc_8.3.0 # 3728 (click to expand)

Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on ascic144-trilinos (trilinos-haswell trilinos-any trilinos-37) in workspace /scratch/trilinos/jenkins/ascic144/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0
The recommended git tool is: NONE
using credential d114a317-3cfb-4285-8fc7-79ae654877f4
 > git rev-parse --is-inside-work-tree # timeout=10
Fetching changes from the remote Git repository
 > git config remote.origin.url https://github.com/trilinos/Trilinos # timeout=10
Fetching upstream changes from https://github.com/trilinos/Trilinos
 > git --version # timeout=10
 > git --version # 'git version 1.8.3.1'
using GIT_SSH to set credentials Trilinos ssh key
Setting http proxy: wwwproxy.sandia.gov:80
 > git fetch --tags --progress https://github.com/trilinos/Trilinos +refs/heads/*:refs/remotes/origin/* # timeout=20
ERROR: Error fetching remote repo 'origin'
hudson.plugins.git.GitException: Failed to fetch from https://github.com/trilinos/Trilinos
	at hudson.plugins.git.GitSCM.fetchFrom(GitSCM.java:996)
	at hudson.plugins.git.GitSCM.retrieveChanges(GitSCM.java:1237)
	at hudson.plugins.git.GitSCM.checkout(GitSCM.java:1297)
	at org.jenkinsci.plugins.multiplescms.MultiSCM.checkout(MultiSCM.java:143)
	at hudson.scm.SCM.checkout(SCM.java:505)
	at hudson.model.AbstractProject.checkout(AbstractProject.java:1206)
	at hudson.model.AbstractBuild$AbstractBuildExecution.defaultCheckout(AbstractBuild.java:574)
	at jenkins.scm.SCMCheckoutStrategy.checkout(SCMCheckoutStrategy.java:86)
	at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:499)
	at hudson.model.Run.execute(Run.java:1894)
	at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
	at hudson.model.ResourceController.execute(ResourceController.java:97)
	at hudson.model.Executor.run(Executor.java:428)
Caused by: hudson.plugins.git.GitException: Command "git fetch --tags --progress https://github.com/trilinos/Trilinos +refs/heads/*:refs/remotes/origin/*" returned status code 128:
stdout: 
stderr: remote: Enumerating objects: 133, done.        
remote: Counting objects:   0% (1/133)        
remote: Counting objects:   1% (2/133)        
remote: Counting objects:   2% (3/133)        
remote: Counting objects:   3% (4/133)        
remote: Counting objects:   4% (6/133)        
remote: Counting objects:   5% (7/133)        
remote: Counting objects:   6% (8/133)        
remote: Counting objects:   7% (10/133)        
remote: Counting objects:   8% (11/133)        
remote: Counting objects:   9% (12/133)        
remote: Counting objects:  10% (14/133)        
remote: Counting objects:  11% (15/133)        
remote: Counting objects:  12% (16/133)        
remote: Counting objects:  13% (18/133)        
remote: Counting objects:  14% (19/133)        
remote: Counting objects:  15% (20/133)        
remote: Counting objects:  16% (22/133)        
remote: Counting objects:  17% (23/133)        
remote: Counting objects:  18% (24/133)        
remote: Counting objects:  19% (26/133)        
remote: Counting objects:  20% (27/133)        
remote: Counting objects:  21% (28/133)        
remote: Counting objects:  22% (30/133)        
remote: Counting objects:  23% (31/133)        
remote: Counting objects:  24% (32/133)        
remote: Counting objects:  25% (34/133)        
remote: Counting objects:  26% (35/133)        
remote: Counting objects:  27% (36/133)        
remote: Counting objects:  28% (38/133)        
remote: Counting objects:  29% (39/133)        
remote: Counting objects:  30% (40/133)        
remote: Counting objects:  31% (42/133)        
remote: Counting objects:  32% (43/133)        
remote: Counting objects:  33% (44/133)        
remote: Counting objects:  34% (46/133)        
remote: Counting objects:  35% (47/133)        
remote: Counting objects:  36% (48/133)        
remote: Counting objects:  37% (50/133)        
remote: Counting objects:  38% (51/133)        
remote: Counting objects:  39% (52/133)        
remote: Counting objects:  40% (54/133)        
remote: Counting objects:  41% (55/133)        
remote: Counting objects:  42% (56/133)        
remote: Counting objects:  43% (58/133)        
remote: Counting objects:  44% (59/133)        
remote: Counting objects:  45% (60/133)        
remote: Counting objects:  46% (62/133)        
remote: Counting objects:  47% (63/133)        
remote: Counting objects:  48% (64/133)        
remote: Counting objects:  49% (66/133)        
remote: Counting objects:  50% (67/133)        
remote: Counting objects:  51% (68/133)        
remote: Counting objects:  52% (70/133)        
remote: Counting objects:  53% (71/133)        
remote: Counting objects:  54% (72/133)        
remote: Counting objects:  55% (74/133)        
remote: Counting objects:  56% (75/133)        
remote: Counting objects:  57% (76/133)        
remote: Counting objects:  58% (78/133)        
remote: Counting objects:  59% (79/133)        
remote: Counting objects:  60% (80/133)        
remote: Counting objects:  61% (82/133)        
remote: Counting objects:  62% (83/133)        
remote: Counting objects:  63% (84/133)        
remote: Counting objects:  64% (86/133)        
remote: Counting objects:  65% (87/133)        
remote: Counting objects:  66% (88/133)        
remote: Counting objects:  67% (90/133)        
remote: Counting objects:  68% (91/133)        
remote: Counting objects:  69% (92/133)        
remote: Counting objects:  70% (94/133)        
remote: Counting objects:  71% (95/133)        
remote: Counting objects:  72% (96/133)        
remote: Counting objects:  73% (98/133)        
remote: Counting objects:  74% (99/133)        
remote: Counting objects:  75% (100/133)        
remote: Counting objects:  76% (102/133)        
remote: Counting objects:  77% (103/133)        
remote: Counting objects:  78% (104/133)        
remote: Counting objects:  79% (106/133)        
remote: Counting objects:  80% (107/133)        
remote: Counting objects:  81% (108/133)        
remote: Counting objects:  82% (110/133)        
remote: Counting objects:  83% (111/133)        
remote: Counting objects:  84% (112/133)        
remote: Counting objects:  85% (114/133)        
remote: Counting objects:  86% (115/133)        
remote: Counting objects:  87% (116/133)        
remote: Counting objects:  88% (118/133)        
remote: Counting objects:  89% (119/133)        
remote: Counting objects:  90% (120/133)        
remote: Counting objects:  91% (122/133)        
remote: Counting objects:  92% (123/133)        
remote: Counting objects:  93% (124/133)        
remote: Counting objects:  94% (126/133)        
remote: Counting objects:  95% (127/133)        
remote: Counting objects:  96% (128/133)        
remote: Counting objects:  97% (130/133)        
remote: Counting objects:  98% (131/133)        
remote: Counting objects:  99% (132/133)        
remote: Counting objects: 100% (133/133)        
remote: Counting objects: 100% (133/133), done.        
remote: Compressing objects:   6% (1/16)        
remote: Compressing objects:  12% (2/16)        
remote: Compressing objects:  18% (3/16)        
remote: Compressing objects:  25% (4/16)        
remote: Compressing objects:  31% (5/16)        
remote: Compressing objects:  37% (6/16)        
remote: Compressing objects:  43% (7/16)        
remote: Compressing objects:  50% (8/16)        
remote: Compressing objects:  56% (9/16)        
remote: Compressing objects:  62% (10/16)        
remote: Compressing objects:  68% (11/16)        
remote: Compressing objects:  75% (12/16)        
remote: Compressing objects:  81% (13/16)        
remote: Compressing objects:  87% (14/16)        
remote: Compressing objects:  93% (15/16)        
remote: Compressing objects: 100% (16/16)        
remote: Compressing objects: 100% (16/16), done.        
remote: Total 142 (delta 117), reused 132 (delta 117), pack-reused 9        
Receiving objects:   0% (1/142)   
Receiving objects:   1% (2/142)   
Receiving objects:   2% (3/142)   
Receiving objects:   3% (5/142)   
Receiving objects:   4% (6/142)   
Receiving objects:   5% (8/142)   
Receiving objects:   6% (9/142)   
Receiving objects:   7% (10/142)   
Receiving objects:   8% (12/142)   
Receiving objects:   9% (13/142)   
Receiving objects:  10% (15/142)   
Receiving objects:  11% (16/142)   
Receiving objects:  12% (18/142)   
Receiving objects:  13% (19/142)   
Receiving objects:  14% (20/142)   
Receiving objects:  15% (22/142)   
Receiving objects:  16% (23/142)   
Receiving objects:  17% (25/142)   
Receiving objects:  18% (26/142)   
Receiving objects:  19% (27/142)   
Receiving objects:  20% (29/142)   
Receiving objects:  21% (30/142)   
Receiving objects:  22% (32/142)   
Receiving objects:  23% (33/142)   
Receiving objects:  24% (35/142)   
Receiving objects:  25% (36/142)   
Receiving objects:  26% (37/142)   
Receiving objects:  27% (39/142)   
Receiving objects:  28% (40/142)   
Receiving objects:  29% (42/142)   
Receiving objects:  30% (43/142)   
Receiving objects:  31% (45/142)   
Receiving objects:  32% (46/142)   
Receiving objects:  33% (47/142)   
Receiving objects:  34% (49/142)   
Receiving objects:  35% (50/142)   
Receiving objects:  36% (52/142)   
Receiving objects:  37% (53/142)   
Receiving objects:  38% (54/142)   
Receiving objects:  39% (56/142)   
Receiving objects:  40% (57/142)   
Receiving objects:  41% (59/142)   
Receiving objects:  42% (60/142)   
Receiving objects:  43% (62/142)   
Receiving objects:  44% (63/142)   
Receiving objects:  45% (64/142)   
Receiving objects:  46% (66/142)   
Receiving objects:  47% (67/142)   
Receiving objects:  48% (69/142)   
Receiving objects:  49% (70/142)   
Receiving objects:  50% (71/142)   
Receiving objects:  51% (73/142)   
Receiving objects:  52% (74/142)   
Receiving objects:  53% (76/142)   
Receiving objects:  54% (77/142)   
Receiving objects:  55% (79/142)   
Receiving objects:  56% (80/142)   
Receiving objects:  57% (81/142)   
Receiving objects:  58% (83/142)   
Receiving objects:  59% (84/142)   
Receiving objects:  60% (86/142)   
Receiving objects:  61% (87/142)   
Receiving objects:  62% (89/142)   
Receiving objects:  63% (90/142)   
Receiving objects:  64% (91/142)   
Receiving objects:  65% (93/142)   
Receiving objects:  66% (94/142)   
Receiving objects:  67% (96/142)   
Receiving objects:  68% (97/142)   
Receiving objects:  69% (98/142)   
Receiving objects:  70% (100/142)   
Receiving objects:  71% (101/142)   
Receiving objects:  72% (103/142)   
Receiving objects:  73% (104/142)   
Receiving objects:  74% (106/142)   
Receiving objects:  75% (107/142)   
Receiving objects:  76% (108/142)   
Receiving objects:  77% (110/142)   
Receiving objects:  78% (111/142)   
Receiving objects:  79% (113/142)   
Receiving objects:  80% (114/142)   
Receiving objects:  81% (116/142)   
Receiving objects:  82% (117/142)   
Receiving objects:  83% (118/142)   
Receiving objects:  84% (120/142)   
Receiving objects:  85% (121/142)   
Receiving objects:  86% (123/142)   
Receiving objects:  87% (124/142)   
Receiving objects:  88% (125/142)   
Receiving objects:  89% (127/142)   
Receiving objects:  90% (128/142)   
Receiving objects:  91% (130/142)   
Receiving objects:  92% (131/142)   
Receiving objects:  93% (133/142)   
Receiving objects:  94% (134/142)   
Receiving objects:  95% (135/142)   
Receiving objects:  96% (137/142)   
Receiving objects:  97% (138/142)   
Receiving objects:  98% (140/142)   
Receiving objects:  99% (141/142)   
Receiving objects: 100% (142/142)   
Receiving objects: 100% (142/142), 32.30 KiB | 0 bytes/s, done.
Resolving deltas:   0% (0/117)   
Resolving deltas:   7% (9/117)   
Resolving deltas:   8% (10/117)   
Resolving deltas:   9% (11/117)   
Resolving deltas:  10% (12/117)   
Resolving deltas:  11% (14/117)   
Resolving deltas:  12% (15/117)   
Resolving deltas:  13% (16/117)   
Resolving deltas:  14% (17/117)   
Resolving deltas:  15% (18/117)   
Resolving deltas:  16% (19/117)   
Resolving deltas:  17% (20/117)   
Resolving deltas:  28% (33/117)   
Resolving deltas:  29% (34/117)   
Resolving deltas:  30% (36/117)   
Resolving deltas:  32% (38/117)   
Resolving deltas:  33% (39/117)   
Resolving deltas:  35% (41/117)   
Resolving deltas:  36% (43/117)   
Resolving deltas:  37% (44/117)   
Resolving deltas:  38% (45/117)   
Resolving deltas:  39% (46/117)   
Resolving deltas:  40% (47/117)   
Resolving deltas:  41% (48/117)   
Resolving deltas:  42% (50/117)   
Resolving deltas:  43% (51/117)   
Resolving deltas:  44% (52/117)   
Resolving deltas:  45% (53/117)   
Resolving deltas:  47% (55/117)   
Resolving deltas:  48% (57/117)   
Resolving deltas:  49% (58/117)   
Resolving deltas:  52% (61/117)   
Resolving deltas:  54% (64/117)   
Resolving deltas:  56% (66/117)   
Resolving deltas:  57% (67/117)   
Resolving deltas:  58% (68/117)   
Resolving deltas:  59% (70/117)   
Resolving deltas:  61% (72/117)   
Resolving deltas:  63% (74/117)   
Resolving deltas:  64% (76/117)   
Resolving deltas:  65% (77/117)   
Resolving deltas:  66% (78/117)   
Resolving deltas:  67% (79/117)   
Resolving deltas:  68% (80/117)   
Resolving deltas:  70% (82/117)   
Resolving deltas:  72% (85/117)   
Resolving deltas:  73% (86/117)   
Resolving deltas:  74% (87/117)   
Resolving deltas:  75% (88/117)   
Resolving deltas:  76% (89/117)   
Resolving deltas:  77% (91/117)   
Resolving deltas:  78% (92/117)   
Resolving deltas:  79% (93/117)   
Resolving deltas:  80% (94/117)   
Resolving deltas:  82% (97/117)   
Resolving deltas:  85% (100/117)   
Resolving deltas:  86% (101/117)   
Resolving deltas:  87% (102/117)   
Resolving deltas:  88% (104/117)   
Resolving deltas:  89% (105/117)   
Resolving deltas:  90% (106/117)   
Resolving deltas:  91% (107/117)   
Resolving deltas:  92% (108/117)   
Resolving deltas:  93% (109/117)   
Resolving deltas:  94% (110/117)   
Resolving deltas:  95% (112/117)   
Resolving deltas:  96% (113/117)   
Resolving deltas:  97% (114/117)   
Resolving deltas:  98% (115/117)   
Resolving deltas:  99% (116/117)   
Resolving deltas: 100% (117/117)   
Resolving deltas: 100% (117/117), completed with 77 local objects.
fatal: unable to look up current user in the passwd file: no such user
Unexpected end of command stream
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandIn(CliGitAPIImpl.java:2450)
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandWithCredentials(CliGitAPIImpl.java:2051)
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.access$500(CliGitAPIImpl.java:84)
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl$1.execute(CliGitAPIImpl.java:573)
at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler$GitCommandMasterToSlaveCallable.call(RemoteGitImpl.java:161)
at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler$GitCommandMasterToSlaveCallable.call(RemoteGitImpl.java:154)
at hudson.remoting.UserRequest.perform(UserRequest.java:211)
at hudson.remoting.UserRequest.perform(UserRequest.java:54)
at hudson.remoting.Request$2.run(Request.java:375)
at hudson.remoting.InterceptingExecutorService$1.call(InterceptingExecutorService.java:73)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
at java.lang.Thread.run(Thread.java:748)
Suppressed: hudson.remoting.Channel$CallSiteStackTrace: Remote call to ascic144-trilinos
	at hudson.remoting.Channel.attachCallSiteStackTrace(Channel.java:1800)
	at hudson.remoting.UserRequest$ExceptionResponse.retrieve(UserRequest.java:357)
	at hudson.remoting.Channel.call(Channel.java:1001)
	at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler.execute(RemoteGitImpl.java:146)
	at sun.reflect.GeneratedMethodAccessor462.invoke(Unknown Source)
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
	at java.lang.reflect.Method.invoke(Method.java:498)
	at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler.invoke(RemoteGitImpl.java:132)
	at com.sun.proxy.$Proxy114.execute(Unknown Source)
	at hudson.plugins.git.GitSCM.fetchFrom(GitSCM.java:994)
	at hudson.plugins.git.GitSCM.retrieveChanges(GitSCM.java:1237)
	at hudson.plugins.git.GitSCM.checkout(GitSCM.java:1297)
	at org.jenkinsci.plugins.multiplescms.MultiSCM.checkout(MultiSCM.java:143)
	at hudson.scm.SCM.checkout(SCM.java:505)
	at hudson.model.AbstractProject.checkout(AbstractProject.java:1206)
	at hudson.model.AbstractBuild$AbstractBuildExecution.defaultCheckout(AbstractBuild.java:574)
	at jenkins.scm.SCMCheckoutStrategy.checkout(SCMCheckoutStrategy.java:86)
	at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:499)
	at hudson.model.Run.execute(Run.java:1894)
	at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
	at hudson.model.ResourceController.execute(ResourceController.java:97)
	at hudson.model.Executor.run(Executor.java:428)

ERROR: Error fetching remote repo 'origin'
Archiving artifacts
[Checks API] No suitable checks publisher found.
Finished: FAILURE

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

Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on ascic144-trilinos (trilinos-haswell trilinos-any trilinos-37) in workspace /scratch/trilinos/jenkins/ascic144/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_serial
The recommended git tool is: NONE
using credential d114a317-3cfb-4285-8fc7-79ae654877f4
 > git rev-parse --is-inside-work-tree # timeout=10
Fetching changes from the remote Git repository
 > git config remote.origin.url https://github.com/trilinos/Trilinos # timeout=10
Fetching upstream changes from https://github.com/trilinos/Trilinos
 > git --version # timeout=10
 > git --version # 'git version 1.8.3.1'
using GIT_SSH to set credentials Trilinos ssh key
Setting http proxy: wwwproxy.sandia.gov:80
 > git fetch --tags --progress https://github.com/trilinos/Trilinos +refs/heads/*:refs/remotes/origin/* # timeout=20
ERROR: Error fetching remote repo 'origin'
hudson.plugins.git.GitException: Failed to fetch from https://github.com/trilinos/Trilinos
	at hudson.plugins.git.GitSCM.fetchFrom(GitSCM.java:996)
	at hudson.plugins.git.GitSCM.retrieveChanges(GitSCM.java:1237)
	at hudson.plugins.git.GitSCM.checkout(GitSCM.java:1297)
	at org.jenkinsci.plugins.multiplescms.MultiSCM.checkout(MultiSCM.java:143)
	at hudson.scm.SCM.checkout(SCM.java:505)
	at hudson.model.AbstractProject.checkout(AbstractProject.java:1206)
	at hudson.model.AbstractBuild$AbstractBuildExecution.defaultCheckout(AbstractBuild.java:574)
	at jenkins.scm.SCMCheckoutStrategy.checkout(SCMCheckoutStrategy.java:86)
	at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:499)
	at hudson.model.Run.execute(Run.java:1894)
	at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
	at hudson.model.ResourceController.execute(ResourceController.java:97)
	at hudson.model.Executor.run(Executor.java:428)
Caused by: hudson.plugins.git.GitException: Command "git fetch --tags --progress https://github.com/trilinos/Trilinos +refs/heads/*:refs/remotes/origin/*" returned status code 128:
stdout: 
stderr: remote: Enumerating objects: 91, done.        
remote: Counting objects:   1% (1/91)        
remote: Counting objects:   2% (2/91)        
remote: Counting objects:   3% (3/91)        
remote: Counting objects:   4% (4/91)        
remote: Counting objects:   5% (5/91)        
remote: Counting objects:   6% (6/91)        
remote: Counting objects:   7% (7/91)        
remote: Counting objects:   8% (8/91)        
remote: Counting objects:   9% (9/91)        
remote: Counting objects:  10% (10/91)        
remote: Counting objects:  12% (11/91)        
remote: Counting objects:  13% (12/91)        
remote: Counting objects:  14% (13/91)        
remote: Counting objects:  15% (14/91)        
remote: Counting objects:  16% (15/91)        
remote: Counting objects:  17% (16/91)        
remote: Counting objects:  18% (17/91)        
remote: Counting objects:  19% (18/91)        
remote: Counting objects:  20% (19/91)        
remote: Counting objects:  21% (20/91)        
remote: Counting objects:  23% (21/91)        
remote: Counting objects:  24% (22/91)        
remote: Counting objects:  25% (23/91)        
remote: Counting objects:  26% (24/91)        
remote: Counting objects:  27% (25/91)        
remote: Counting objects:  28% (26/91)        
remote: Counting objects:  29% (27/91)        
remote: Counting objects:  30% (28/91)        
remote: Counting objects:  31% (29/91)        
remote: Counting objects:  32% (30/91)        
remote: Counting objects:  34% (31/91)        
remote: Counting objects:  35% (32/91)        
remote: Counting objects:  36% (33/91)        
remote: Counting objects:  37% (34/91)        
remote: Counting objects:  38% (35/91)        
remote: Counting objects:  39% (36/91)        
remote: Counting objects:  40% (37/91)        
remote: Counting objects:  41% (38/91)        
remote: Counting objects:  42% (39/91)        
remote: Counting objects:  43% (40/91)        
remote: Counting objects:  45% (41/91)        
remote: Counting objects:  46% (42/91)        
remote: Counting objects:  47% (43/91)        
remote: Counting objects:  48% (44/91)        
remote: Counting objects:  49% (45/91)        
remote: Counting objects:  50% (46/91)        
remote: Counting objects:  51% (47/91)        
remote: Counting objects:  52% (48/91)        
remote: Counting objects:  53% (49/91)        
remote: Counting objects:  54% (50/91)        
remote: Counting objects:  56% (51/91)        
remote: Counting objects:  57% (52/91)        
remote: Counting objects:  58% (53/91)        
remote: Counting objects:  59% (54/91)        
remote: Counting objects:  60% (55/91)        
remote: Counting objects:  61% (56/91)        
remote: Counting objects:  62% (57/91)        
remote: Counting objects:  63% (58/91)        
remote: Counting objects:  64% (59/91)        
remote: Counting objects:  65% (60/91)        
remote: Counting objects:  67% (61/91)        
remote: Counting objects:  68% (62/91)        
remote: Counting objects:  69% (63/91)        
remote: Counting objects:  70% (64/91)        
remote: Counting objects:  71% (65/91)        
remote: Counting objects:  72% (66/91)        
remote: Counting objects:  73% (67/91)        
remote: Counting objects:  74% (68/91)        
remote: Counting objects:  75% (69/91)        
remote: Counting objects:  76% (70/91)        
remote: Counting objects:  78% (71/91)        
remote: Counting objects:  79% (72/91)        
remote: Counting objects:  80% (73/91)        
remote: Counting objects:  81% (74/91)        
remote: Counting objects:  82% (75/91)        
remote: Counting objects:  83% (76/91)        
remote: Counting objects:  84% (77/91)        
remote: Counting objects:  85% (78/91)        
remote: Counting objects:  86% (79/91)        
remote: Counting objects:  87% (80/91)        
remote: Counting objects:  89% (81/91)        
remote: Counting objects:  90% (82/91)        
remote: Counting objects:  91% (83/91)        
remote: Counting objects:  92% (84/91)        
remote: Counting objects:  93% (85/91)        
remote: Counting objects:  94% (86/91)        
remote: Counting objects:  95% (87/91)        
remote: Counting objects:  96% (88/91)        
remote: Counting objects:  97% (89/91)        
remote: Counting objects:  98% (90/91)        
remote: Counting objects: 100% (91/91)        
remote: Counting objects: 100% (91/91), done.        
remote: Compressing objects:   6% (1/15)        
remote: Compressing objects:  13% (2/15)        
remote: Compressing objects:  20% (3/15)        
remote: Compressing objects:  26% (4/15)        
remote: Compressing objects:  33% (5/15)        
remote: Compressing objects:  40% (6/15)        
remote: Compressing objects:  46% (7/15)        
remote: Compressing objects:  53% (8/15)        
remote: Compressing objects:  60% (9/15)        
remote: Compressing objects:  66% (10/15)        
remote: Compressing objects:  73% (11/15)        
remote: Compressing objects:  80% (12/15)        
remote: Compressing objects:  86% (13/15)        
remote: Compressing objects:  93% (14/15)        
remote: Compressing objects: 100% (15/15)        
remote: Compressing objects: 100% (15/15), done.        
remote: Total 91 (delta 76), reused 91 (delta 76), pack-reused 0        
fatal: unable to look up current user in the passwd file: no such user
Unexpected end of command stream
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandIn(CliGitAPIImpl.java:2450)
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandWithCredentials(CliGitAPIImpl.java:2051)
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.access$500(CliGitAPIImpl.java:84)
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl$1.execute(CliGitAPIImpl.java:573)
at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler$GitCommandMasterToSlaveCallable.call(RemoteGitImpl.java:161)
at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler$GitCommandMasterToSlaveCallable.call(RemoteGitImpl.java:154)
at hudson.remoting.UserRequest.perform(UserRequest.java:211)
at hudson.remoting.UserRequest.perform(UserRequest.java:54)
at hudson.remoting.Request$2.run(Request.java:375)
at hudson.remoting.InterceptingExecutorService$1.call(InterceptingExecutorService.java:73)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
at java.lang.Thread.run(Thread.java:748)
Suppressed: hudson.remoting.Channel$CallSiteStackTrace: Remote call to ascic144-trilinos
	at hudson.remoting.Channel.attachCallSiteStackTrace(Channel.java:1800)
	at hudson.remoting.UserRequest$ExceptionResponse.retrieve(UserRequest.java:357)
	at hudson.remoting.Channel.call(Channel.java:1001)
	at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler.execute(RemoteGitImpl.java:146)
	at sun.reflect.GeneratedMethodAccessor462.invoke(Unknown Source)
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
	at java.lang.reflect.Method.invoke(Method.java:498)
	at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler.invoke(RemoteGitImpl.java:132)
	at com.sun.proxy.$Proxy114.execute(Unknown Source)
	at hudson.plugins.git.GitSCM.fetchFrom(GitSCM.java:994)
	at hudson.plugins.git.GitSCM.retrieveChanges(GitSCM.java:1237)
	at hudson.plugins.git.GitSCM.checkout(GitSCM.java:1297)
	at org.jenkinsci.plugins.multiplescms.MultiSCM.checkout(MultiSCM.java:143)
	at hudson.scm.SCM.checkout(SCM.java:505)
	at hudson.model.AbstractProject.checkout(AbstractProject.java:1206)
	at hudson.model.AbstractBuild$AbstractBuildExecution.defaultCheckout(AbstractBuild.java:574)
	at jenkins.scm.SCMCheckoutStrategy.checkout(SCMCheckoutStrategy.java:86)
	at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:499)
	at hudson.model.Run.execute(Run.java:1894)
	at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
	at hudson.model.ResourceController.execute(ResourceController.java:97)
	at hudson.model.Executor.run(Executor.java:428)

ERROR: Error fetching remote repo 'origin'
Archiving artifacts
[Checks API] No suitable checks publisher found.
Finished: FAILURE

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

Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on ascic166-trilinos (trilinos-32 trilinos-skylake trilinos-any) in workspace /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_debug
The recommended git tool is: NONE
using credential d114a317-3cfb-4285-8fc7-79ae654877f4
 > git rev-parse --is-inside-work-tree # timeout=10
Fetching changes from the remote Git repository
 > git config remote.origin.url https://github.com/trilinos/Trilinos # timeout=10
Fetching upstream changes from https://github.com/trilinos/Trilinos
 > git --version # timeout=10
 > git --version # 'git version 1.8.3.1'
using GIT_SSH to set credentials Trilinos ssh key
Setting http proxy: wwwproxy.sandia.gov:80
 > git fetch --tags --progress https://github.com/trilinos/Trilinos +refs/heads/*:refs/remotes/origin/* # timeout=20
ERROR: Error fetching remote repo 'origin'
hudson.plugins.git.GitException: Failed to fetch from https://github.com/trilinos/Trilinos
	at hudson.plugins.git.GitSCM.fetchFrom(GitSCM.java:996)
	at hudson.plugins.git.GitSCM.retrieveChanges(GitSCM.java:1237)
	at hudson.plugins.git.GitSCM.checkout(GitSCM.java:1297)
	at org.jenkinsci.plugins.multiplescms.MultiSCM.checkout(MultiSCM.java:143)
	at hudson.scm.SCM.checkout(SCM.java:505)
	at hudson.model.AbstractProject.checkout(AbstractProject.java:1206)
	at hudson.model.AbstractBuild$AbstractBuildExecution.defaultCheckout(AbstractBuild.java:574)
	at jenkins.scm.SCMCheckoutStrategy.checkout(SCMCheckoutStrategy.java:86)
	at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:499)
	at hudson.model.Run.execute(Run.java:1894)
	at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
	at hudson.model.ResourceController.execute(ResourceController.java:97)
	at hudson.model.Executor.run(Executor.java:428)
Caused by: hudson.plugins.git.GitException: Command "git fetch --tags --progress https://github.com/trilinos/Trilinos +refs/heads/*:refs/remotes/origin/*" returned status code 128:
stdout: 
stderr: remote: Enumerating objects: 398, done.        
remote: Counting objects:   0% (1/398)        
remote: Counting objects:   1% (4/398)        
remote: Counting objects:   2% (8/398)        
remote: Counting objects:   3% (12/398)        
remote: Counting objects:   4% (16/398)        
remote: Counting objects:   5% (20/398)        
remote: Counting objects:   6% (24/398)        
remote: Counting objects:   7% (28/398)        
remote: Counting objects:   8% (32/398)        
remote: Counting objects:   9% (36/398)        
remote: Counting objects:  10% (40/398)        
remote: Counting objects:  11% (44/398)        
remote: Counting objects:  12% (48/398)        
remote: Counting objects:  13% (52/398)        
remote: Counting objects:  14% (56/398)        
remote: Counting objects:  15% (60/398)        
remote: Counting objects:  16% (64/398)        
remote: Counting objects:  17% (68/398)        
remote: Counting objects:  18% (72/398)        
remote: Counting objects:  19% (76/398)        
remote: Counting objects:  20% (80/398)        
remote: Counting objects:  21% (84/398)        
remote: Counting objects:  22% (88/398)        
remote: Counting objects:  23% (92/398)        
remote: Counting objects:  24% (96/398)        
remote: Counting objects:  25% (100/398)        
remote: Counting objects:  26% (104/398)        
remote: Counting objects:  27% (108/398)        
remote: Counting objects:  28% (112/398)        
remote: Counting objects:  29% (116/398)        
remote: Counting objects:  30% (120/398)        
remote: Counting objects:  31% (124/398)        
remote: Counting objects:  32% (128/398)        
remote: Counting objects:  33% (132/398)        
remote: Counting objects:  34% (136/398)        
remote: Counting objects:  35% (140/398)        
remote: Counting objects:  36% (144/398)        
remote: Counting objects:  37% (148/398)        
remote: Counting objects:  38% (152/398)        
remote: Counting objects:  39% (156/398)        
remote: Counting objects:  40% (160/398)        
remote: Counting objects:  41% (164/398)        
remote: Counting objects:  42% (168/398)        
remote: Counting objects:  43% (172/398)        
remote: Counting objects:  44% (176/398)        
remote: Counting objects:  45% (180/398)        
remote: Counting objects:  46% (184/398)        
remote: Counting objects:  47% (188/398)        
remote: Counting objects:  48% (192/398)        
remote: Counting objects:  49% (196/398)        
remote: Counting objects:  50% (199/398)        
remote: Counting objects:  51% (203/398)        
remote: Counting objects:  52% (207/398)        
remote: Counting objects:  53% (211/398)        
remote: Counting objects:  54% (215/398)        
remote: Counting objects:  55% (219/398)        
remote: Counting objects:  56% (223/398)        
remote: Counting objects:  57% (227/398)        
remote: Counting objects:  58% (231/398)        
remote: Counting objects:  59% (235/398)        
remote: Counting objects:  60% (239/398)        
remote: Counting objects:  61% (243/398)        
remote: Counting objects:  62% (247/398)        
remote: Counting objects:  63% (251/398)        
remote: Counting objects:  64% (255/398)        
remote: Counting objects:  65% (259/398)        
remote: Counting objects:  66% (263/398)        
remote: Counting objects:  67% (267/398)        
remote: Counting objects:  68% (271/398)        
remote: Counting objects:  69% (275/398)        
remote: Counting objects:  70% (279/398)        
remote: Counting objects:  71% (283/398)        
remote: Counting objects:  72% (287/398)        
remote: Counting objects:  73% (291/398)        
remote: Counting objects:  74% (295/398)        
remote: Counting objects:  75% (299/398)        
remote: Counting objects:  76% (303/398)        
remote: Counting objects:  77% (307/398)        
remote: Counting objects:  78% (311/398)        
remote: Counting objects:  79% (315/398)        
remote: Counting objects:  80% (319/398)        
remote: Counting objects:  81% (323/398)        
remote: Counting objects:  82% (327/398)        
remote: Counting objects:  83% (331/398)        
remote: Counting objects:  84% (335/398)        
remote: Counting objects:  85% (339/398)        
remote: Counting objects:  86% (343/398)        
remote: Counting objects:  87% (347/398)        
remote: Counting objects:  88% (351/398)        
remote: Counting objects:  89% (355/398)        
remote: Counting objects:  90% (359/398)        
remote: Counting objects:  91% (363/398)        
remote: Counting objects:  92% (367/398)        
remote: Counting objects:  93% (371/398)        
remote: Counting objects:  94% (375/398)        
remote: Counting objects:  95% (379/398)        
remote: Counting objects:  96% (383/398)        
remote: Counting objects:  97% (387/398)        
remote: Counting objects:  98% (391/398)        
remote: Counting objects:  99% (395/398)        
remote: Counting objects: 100% (398/398)        
remote: Counting objects: 100% (398/398), done.        
remote: Compressing objects:   4% (1/22)        
remote: Compressing objects:   9% (2/22)        
remote: Compressing objects:  13% (3/22)        
remote: Compressing objects:  18% (4/22)        
remote: Compressing objects:  22% (5/22)        
remote: Compressing objects:  27% (6/22)        
remote: Compressing objects:  31% (7/22)        
remote: Compressing objects:  36% (8/22)        
remote: Compressing objects:  40% (9/22)        
remote: Compressing objects:  45% (10/22)        
remote: Compressing objects:  50% (11/22)        
remote: Compressing objects:  54% (12/22)        
remote: Compressing objects:  59% (13/22)        
remote: Compressing objects:  63% (14/22)        
remote: Compressing objects:  68% (15/22)        
remote: Compressing objects:  72% (16/22)        
remote: Compressing objects:  77% (17/22)        
remote: Compressing objects:  81% (18/22)        
remote: Compressing objects:  86% (19/22)        
remote: Compressing objects:  90% (20/22)        
remote: Compressing objects:  95% (21/22)        
remote: Compressing objects: 100% (22/22)        
remote: Compressing objects: 100% (22/22), done.        
Receiving objects:   0% (1/499)   
Receiving objects:   1% (5/499)   
Receiving objects:   2% (10/499)   
Receiving objects:   3% (15/499)   
Receiving objects:   4% (20/499)   
Receiving objects:   5% (25/499)   
Receiving objects:   6% (30/499)   
Receiving objects:   7% (35/499)   
Receiving objects:   8% (40/499)   
Receiving objects:   9% (45/499)   
Receiving objects:  10% (50/499)   
Receiving objects:  11% (55/499)   
Receiving objects:  12% (60/499)   
Receiving objects:  13% (65/499)   
Receiving objects:  14% (70/499)   
Receiving objects:  15% (75/499)   
Receiving objects:  16% (80/499)   
Receiving objects:  17% (85/499)   
Receiving objects:  18% (90/499)   
Receiving objects:  19% (95/499)   
Receiving objects:  20% (100/499)   
Receiving objects:  21% (105/499)   
Receiving objects:  22% (110/499)   
Receiving objects:  23% (115/499)   
Receiving objects:  24% (120/499)   
Receiving objects:  25% (125/499)   
Receiving objects:  26% (130/499)   
Receiving objects:  27% (135/499)   
Receiving objects:  28% (140/499)   
Receiving objects:  29% (145/499)   
Receiving objects:  30% (150/499)   
Receiving objects:  31% (155/499)   
Receiving objects:  32% (160/499)   
Receiving objects:  33% (165/499)   
Receiving objects:  34% (170/499)   
Receiving objects:  35% (175/499)   
Receiving objects:  36% (180/499)   
Receiving objects:  37% (185/499)   
Receiving objects:  38% (190/499)   
Receiving objects:  39% (195/499)   
Receiving objects:  40% (200/499)   
Receiving objects:  41% (205/499)   
Receiving objects:  42% (210/499)   
Receiving objects:  43% (215/499)   
Receiving objects:  44% (220/499)   
Receiving objects:  45% (225/499)   
Receiving objects:  46% (230/499)   
Receiving objects:  47% (235/499)   
Receiving objects:  48% (240/499)   
Receiving objects:  49% (245/499)   
Receiving objects:  50% (250/499)   
Receiving objects:  51% (255/499)   
Receiving objects:  52% (260/499)   
Receiving objects:  53% (265/499)   
Receiving objects:  54% (270/499)   
Receiving objects:  55% (275/499)   
Receiving objects:  56% (280/499)   
Receiving objects:  57% (285/499)   
Receiving objects:  58% (290/499)   
Receiving objects:  59% (295/499)   
Receiving objects:  60% (300/499)   
Receiving objects:  61% (305/499)   
Receiving objects:  62% (310/499)   
Receiving objects:  63% (315/499)   
Receiving objects:  64% (320/499)   
Receiving objects:  65% (325/499)   
Receiving objects:  66% (330/499)   
Receiving objects:  67% (335/499)   
Receiving objects:  68% (340/499)   
Receiving objects:  69% (345/499)   
Receiving objects:  70% (350/499)   
Receiving objects:  71% (355/499)   
Receiving objects:  72% (360/499)   
Receiving objects:  73% (365/499)   
Receiving objects:  74% (370/499)   
Receiving objects:  75% (375/499)   
remote: Total 499 (delta 377), reused 391 (delta 376), pack-reused 101        
Receiving objects:  76% (380/499)   
Receiving objects:  77% (385/499)   
Receiving objects:  78% (390/499)   
Receiving objects:  79% (395/499)   
Receiving objects:  80% (400/499)   
Receiving objects:  81% (405/499)   
Receiving objects:  82% (410/499)   
Receiving objects:  83% (415/499)   
Receiving objects:  84% (420/499)   
Receiving objects:  85% (425/499)   
Receiving objects:  86% (430/499)   
Receiving objects:  87% (435/499)   
Receiving objects:  88% (440/499)   
Receiving objects:  89% (445/499)   
Receiving objects:  90% (450/499)   
Receiving objects:  91% (455/499)   
Receiving objects:  92% (460/499)   
Receiving objects:  93% (465/499)   
Receiving objects:  94% (470/499)   
Receiving objects:  95% (475/499)   
Receiving objects:  96% (480/499)   
Receiving objects:  97% (485/499)   
Receiving objects:  98% (490/499)   
Receiving objects:  99% (495/499)   
Receiving objects: 100% (499/499)   
Receiving objects: 100% (499/499), 174.68 KiB | 0 bytes/s, done.
Resolving deltas:   0% (0/398)   
Resolving deltas:   1% (4/398)   
Resolving deltas:   2% (9/398)   
Resolving deltas:   3% (13/398)   
Resolving deltas:   4% (16/398)   
Resolving deltas:   5% (21/398)   
Resolving deltas:   6% (24/398)   
Resolving deltas:   7% (28/398)   
Resolving deltas:   8% (32/398)   
Resolving deltas:  13% (55/398)   
Resolving deltas:  14% (56/398)   
Resolving deltas:  15% (61/398)   
Resolving deltas:  16% (65/398)   
Resolving deltas:  17% (68/398)   
Resolving deltas:  18% (72/398)   
Resolving deltas:  19% (76/398)   
Resolving deltas:  20% (80/398)   
Resolving deltas:  21% (84/398)   
Resolving deltas:  22% (88/398)   
Resolving deltas:  23% (92/398)   
Resolving deltas:  24% (96/398)   
Resolving deltas:  25% (100/398)   
Resolving deltas:  26% (104/398)   
Resolving deltas:  27% (108/398)   
Resolving deltas:  28% (112/398)   
Resolving deltas:  35% (140/398)   
Resolving deltas:  36% (144/398)   
Resolving deltas:  37% (149/398)   
Resolving deltas:  39% (157/398)   
Resolving deltas:  41% (167/398)   
Resolving deltas:  43% (172/398)   
Resolving deltas:  44% (176/398)   
Resolving deltas:  45% (180/398)   
Resolving deltas:  46% (186/398)   
Resolving deltas:  48% (195/398)   
Resolving deltas:  54% (216/398)   
Resolving deltas:  59% (237/398)   
Resolving deltas:  60% (240/398)   
Resolving deltas:  61% (244/398)   
Resolving deltas:  64% (257/398)   
Resolving deltas:  65% (259/398)   
Resolving deltas:  66% (265/398)   
Resolving deltas:  67% (267/398)   
Resolving deltas:  68% (271/398)   
Resolving deltas:  69% (275/398)   
Resolving deltas:  70% (279/398)   
Resolving deltas:  71% (283/398)   
Resolving deltas:  72% (287/398)   
Resolving deltas:  73% (291/398)   
Resolving deltas:  74% (295/398)   
Resolving deltas:  75% (299/398)   
Resolving deltas:  76% (304/398)   
Resolving deltas:  77% (307/398)   
Resolving deltas:  78% (311/398)   
Resolving deltas:  80% (319/398)   
Resolving deltas:  81% (325/398)   
Resolving deltas:  82% (327/398)   
Resolving deltas:  83% (331/398)   
Resolving deltas:  84% (336/398)   
Resolving deltas:  85% (339/398)   
Resolving deltas:  86% (343/398)   
Resolving deltas:  88% (352/398)   
Resolving deltas:  89% (356/398)   
Resolving deltas:  90% (361/398)   
Resolving deltas:  91% (364/398)   
Resolving deltas:  92% (367/398)   
Resolving deltas:  93% (372/398)   
Resolving deltas:  94% (376/398)   
Resolving deltas:  95% (379/398)   
Resolving deltas:  96% (385/398)   
Resolving deltas:  97% (387/398)   
Resolving deltas:  98% (391/398)   
Resolving deltas:  99% (395/398)   
Resolving deltas: 100% (398/398)   
Resolving deltas: 100% (398/398), completed with 174 local objects.
fatal: unable to look up current user in the passwd file: no such user
Unexpected end of command stream
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandIn(CliGitAPIImpl.java:2450)
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandWithCredentials(CliGitAPIImpl.java:2051)
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.access$500(CliGitAPIImpl.java:84)
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl$1.execute(CliGitAPIImpl.java:573)
at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler$GitCommandMasterToSlaveCallable.call(RemoteGitImpl.java:161)
at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler$GitCommandMasterToSlaveCallable.call(RemoteGitImpl.java:154)
at hudson.remoting.UserRequest.perform(UserRequest.java:211)
at hudson.remoting.UserRequest.perform(UserRequest.java:54)
at hudson.remoting.Request$2.run(Request.java:375)
at hudson.remoting.InterceptingExecutorService$1.call(InterceptingExecutorService.java:73)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
at java.lang.Thread.run(Thread.java:748)
Suppressed: hudson.remoting.Channel$CallSiteStackTrace: Remote call to ascic166-trilinos
	at hudson.remoting.Channel.attachCallSiteStackTrace(Channel.java:1800)
	at hudson.remoting.UserRequest$ExceptionResponse.retrieve(UserRequest.java:357)
	at hudson.remoting.Channel.call(Channel.java:1001)
	at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler.execute(RemoteGitImpl.java:146)
	at sun.reflect.GeneratedMethodAccessor462.invoke(Unknown Source)
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
	at java.lang.reflect.Method.invoke(Method.java:498)
	at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler.invoke(RemoteGitImpl.java:132)
	at com.sun.proxy.$Proxy114.execute(Unknown Source)
	at hudson.plugins.git.GitSCM.fetchFrom(GitSCM.java:994)
	at hudson.plugins.git.GitSCM.retrieveChanges(GitSCM.java:1237)
	at hudson.plugins.git.GitSCM.checkout(GitSCM.java:1297)
	at org.jenkinsci.plugins.multiplescms.MultiSCM.checkout(MultiSCM.java:143)
	at hudson.scm.SCM.checkout(SCM.java:505)
	at hudson.model.AbstractProject.checkout(AbstractProject.java:1206)
	at hudson.model.AbstractBuild$AbstractBuildExecution.defaultCheckout(AbstractBuild.java:574)
	at jenkins.scm.SCMCheckoutStrategy.checkout(SCMCheckoutStrategy.java:86)
	at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:499)
	at hudson.model.Run.execute(Run.java:1894)
	at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
	at hudson.model.ResourceController.execute(ResourceController.java:97)
	at hudson.model.Executor.run(Executor.java:428)

ERROR: Error fetching remote repo 'origin'
Archiving artifacts
[Checks API] No suitable checks publisher found.
Finished: FAILURE

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

Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on ascic144-trilinos (trilinos-haswell trilinos-any trilinos-37) in workspace /scratch/trilinos/jenkins/ascic144/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1
The recommended git tool is: NONE
No credentials specified
 > git rev-parse --is-inside-work-tree # timeout=10
Fetching changes from the remote Git repository
 > git config remote.origin.url https://github.com/trilinos/Trilinos # timeout=10
Fetching upstream changes from https://github.com/trilinos/Trilinos
 > git --version # timeout=10
 > git --version # 'git version 1.8.3.1'
Setting http proxy: wwwproxy.sandia.gov:80
 > git fetch --tags --progress https://github.com/trilinos/Trilinos +refs/heads/*:refs/remotes/origin/* # timeout=20
ERROR: Error fetching remote repo 'origin'
hudson.plugins.git.GitException: Failed to fetch from https://github.com/trilinos/Trilinos
	at hudson.plugins.git.GitSCM.fetchFrom(GitSCM.java:996)
	at hudson.plugins.git.GitSCM.retrieveChanges(GitSCM.java:1237)
	at hudson.plugins.git.GitSCM.checkout(GitSCM.java:1297)
	at org.jenkinsci.plugins.multiplescms.MultiSCM.checkout(MultiSCM.java:143)
	at hudson.scm.SCM.checkout(SCM.java:505)
	at hudson.model.AbstractProject.checkout(AbstractProject.java:1206)
	at hudson.model.AbstractBuild$AbstractBuildExecution.defaultCheckout(AbstractBuild.java:574)
	at jenkins.scm.SCMCheckoutStrategy.checkout(SCMCheckoutStrategy.java:86)
	at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:499)
	at hudson.model.Run.execute(Run.java:1894)
	at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
	at hudson.model.ResourceController.execute(ResourceController.java:97)
	at hudson.model.Executor.run(Executor.java:428)
Caused by: hudson.plugins.git.GitException: Command "git fetch --tags --progress https://github.com/trilinos/Trilinos +refs/heads/*:refs/remotes/origin/*" returned status code 128:
stdout: 
stderr: remote: Enumerating objects: 1306, done.        
remote: Counting objects:   0% (1/1306)        
remote: Counting objects:   1% (14/1306)        
remote: Counting objects:   2% (27/1306)        
remote: Counting objects:   3% (40/1306)        
remote: Counting objects:   4% (53/1306)        
remote: Counting objects:   5% (66/1306)        
remote: Counting objects:   6% (79/1306)        
remote: Counting objects:   7% (92/1306)        
remote: Counting objects:   8% (105/1306)        
remote: Counting objects:   9% (118/1306)        
remote: Counting objects:  10% (131/1306)        
remote: Counting objects:  11% (144/1306)        
remote: Counting objects:  12% (157/1306)        
remote: Counting objects:  13% (170/1306)        
remote: Counting objects:  14% (183/1306)        
remote: Counting objects:  15% (196/1306)        
remote: Counting objects:  16% (209/1306)        
remote: Counting objects:  17% (223/1306)        
remote: Counting objects:  18% (236/1306)        
remote: Counting objects:  19% (249/1306)        
remote: Counting objects:  20% (262/1306)        
remote: Counting objects:  21% (275/1306)        
remote: Counting objects:  22% (288/1306)        
remote: Counting objects:  23% (301/1306)        
remote: Counting objects:  24% (314/1306)        
remote: Counting objects:  25% (327/1306)        
remote: Counting objects:  26% (340/1306)        
remote: Counting objects:  27% (353/1306)        
remote: Counting objects:  28% (366/1306)        
remote: Counting objects:  29% (379/1306)        
remote: Counting objects:  30% (392/1306)        
remote: Counting objects:  31% (405/1306)        
remote: Counting objects:  32% (418/1306)        
remote: Counting objects:  33% (431/1306)        
remote: Counting objects:  34% (445/1306)        
remote: Counting objects:  35% (458/1306)        
remote: Counting objects:  36% (471/1306)        
remote: Counting objects:  37% (484/1306)        
remote: Counting objects:  38% (497/1306)        
remote: Counting objects:  39% (510/1306)        
remote: Counting objects:  40% (523/1306)        
remote: Counting objects:  41% (536/1306)        
remote: Counting objects:  42% (549/1306)        
remote: Counting objects:  43% (562/1306)        
remote: Counting objects:  44% (575/1306)        
remote: Counting objects:  45% (588/1306)        
remote: Counting objects:  46% (601/1306)        
remote: Counting objects:  47% (614/1306)        
remote: Counting objects:  48% (627/1306)        
remote: Counting objects:  49% (640/1306)        
remote: Counting objects:  50% (653/1306)        
remote: Counting objects:  51% (667/1306)        
remote: Counting objects:  52% (680/1306)        
remote: Counting objects:  53% (693/1306)        
remote: Counting objects:  54% (706/1306)        
remote: Counting objects:  55% (719/1306)        
remote: Counting objects:  56% (732/1306)        
remote: Counting objects:  57% (745/1306)        
remote: Counting objects:  58% (758/1306)        
remote: Counting objects:  59% (771/1306)        
remote: Counting objects:  60% (784/1306)        
remote: Counting objects:  61% (797/1306)        
remote: Counting objects:  62% (810/1306)        
remote: Counting objects:  63% (823/1306)        
remote: Counting objects:  64% (836/1306)        
remote: Counting objects:  65% (849/1306)        
remote: Counting objects:  66% (862/1306)        
remote: Counting objects:  67% (876/1306)        
remote: Counting objects:  68% (889/1306)        
remote: Counting objects:  69% (902/1306)        
remote: Counting objects:  70% (915/1306)        
remote: Counting objects:  71% (928/1306)        
remote: Counting objects:  72% (941/1306)        
remote: Counting objects:  73% (954/1306)        
remote: Counting objects:  74% (967/1306)        
remote: Counting objects:  75% (980/1306)        
remote: Counting objects:  76% (993/1306)        
remote: Counting objects:  77% (1006/1306)        
remote: Counting objects:  78% (1019/1306)        
remote: Counting objects:  79% (1032/1306)        
remote: Counting objects:  80% (1045/1306)        
remote: Counting objects:  81% (1058/1306)        
remote: Counting objects:  82% (1071/1306)        
remote: Counting objects:  83% (1084/1306)        
remote: Counting objects:  84% (1098/1306)        
remote: Counting objects:  85% (1111/1306)        
remote: Counting objects:  86% (1124/1306)        
remote: Counting objects:  87% (1137/1306)        
remote: Counting objects:  88% (1150/1306)        
remote: Counting objects:  89% (1163/1306)        
remote: Counting objects:  90% (1176/1306)        
remote: Counting objects:  91% (1189/1306)        
remote: Counting objects:  92% (1202/1306)        
remote: Counting objects:  93% (1215/1306)        
remote: Counting objects:  94% (1228/1306)        
remote: Counting objects:  95% (1241/1306)        
remote: Counting objects:  96% (1254/1306)        
remote: Counting objects:  97% (1267/1306)        
remote: Counting objects:  98% (1280/1306)        
remote: Counting objects:  99% (1293/1306)        
remote: Counting objects: 100% (1306/1306)        
remote: Counting objects: 100% (1306/1306), done.        
remote: Compressing objects:   4% (1/22)        
remote: Compressing objects:   9% (2/22)        
remote: Compressing objects:  13% (3/22)        
remote: Compressing objects:  18% (4/22)        
remote: Compressing objects:  22% (5/22)        
remote: Compressing objects:  27% (6/22)        
remote: Compressing objects:  31% (7/22)        
remote: Compressing objects:  36% (8/22)        
remote: Compressing objects:  40% (9/22)        
remote: Compressing objects:  45% (10/22)        
remote: Compressing objects:  50% (11/22)        
remote: Compressing objects:  54% (12/22)        
remote: Compressing objects:  59% (13/22)        
remote: Compressing objects:  63% (14/22)        
remote: Compressing objects:  68% (15/22)        
remote: Compressing objects:  72% (16/22)        
remote: Compressing objects:  77% (17/22)        
remote: Compressing objects:  81% (18/22)        
remote: Compressing objects:  86% (19/22)        
remote: Compressing objects:  90% (20/22)        
remote: Compressing objects:  95% (21/22)        
remote: Compressing objects: 100% (22/22)        
remote: Compressing objects: 100% (22/22), done.        
Receiving objects:   0% (1/1571)   
Receiving objects:   1% (16/1571)   
Receiving objects:   2% (32/1571)   
Receiving objects:   3% (48/1571)   
Receiving objects:   4% (63/1571)   
Receiving objects:   5% (79/1571)   
Receiving objects:   6% (95/1571)   
Receiving objects:   7% (110/1571)   
Receiving objects:   8% (126/1571)   
Receiving objects:   9% (142/1571)   
Receiving objects:  10% (158/1571)   
Receiving objects:  11% (173/1571)   
Receiving objects:  12% (189/1571)   
Receiving objects:  13% (205/1571)   
Receiving objects:  14% (220/1571)   
Receiving objects:  15% (236/1571)   
Receiving objects:  16% (252/1571)   
Receiving objects:  17% (268/1571)   
Receiving objects:  18% (283/1571)   
Receiving objects:  19% (299/1571)   
Receiving objects:  20% (315/1571)   
Receiving objects:  21% (330/1571)   
Receiving objects:  22% (346/1571)   
Receiving objects:  23% (362/1571)   
Receiving objects:  24% (378/1571)   
Receiving objects:  25% (393/1571)   
Receiving objects:  26% (409/1571)   
Receiving objects:  27% (425/1571)   
Receiving objects:  28% (440/1571)   
Receiving objects:  29% (456/1571)   
Receiving objects:  30% (472/1571)   
Receiving objects:  31% (488/1571)   
Receiving objects:  32% (503/1571)   
Receiving objects:  33% (519/1571)   
Receiving objects:  34% (535/1571)   
Receiving objects:  35% (550/1571)   
Receiving objects:  36% (566/1571)   
Receiving objects:  37% (582/1571)   
Receiving objects:  38% (597/1571)   
Receiving objects:  39% (613/1571)   
Receiving objects:  40% (629/1571)   
Receiving objects:  41% (645/1571)   
Receiving objects:  42% (660/1571)   
Receiving objects:  43% (676/1571)   
Receiving objects:  44% (692/1571)   
Receiving objects:  45% (707/1571)   
Receiving objects:  46% (723/1571)   
Receiving objects:  47% (739/1571)   
Receiving objects:  48% (755/1571)   
Receiving objects:  49% (770/1571)   
Receiving objects:  50% (786/1571)   
Receiving objects:  51% (802/1571)   
Receiving objects:  52% (817/1571)   
Receiving objects:  53% (833/1571)   
Receiving objects:  54% (849/1571)   
Receiving objects:  55% (865/1571)   
Receiving objects:  56% (880/1571)   
Receiving objects:  57% (896/1571)   
Receiving objects:  58% (912/1571)   
Receiving objects:  59% (927/1571)   
Receiving objects:  60% (943/1571)   
Receiving objects:  61% (959/1571)   
Receiving objects:  62% (975/1571)   
Receiving objects:  63% (990/1571)   
Receiving objects:  64% (1006/1571)   
Receiving objects:  65% (1022/1571)   
Receiving objects:  66% (1037/1571)   
Receiving objects:  67% (1053/1571)   
Receiving objects:  68% (1069/1571)   
Receiving objects:  69% (1084/1571)   
Receiving objects:  70% (1100/1571)   
Receiving objects:  71% (1116/1571)   
Receiving objects:  72% (1132/1571)   
Receiving objects:  73% (1147/1571)   
Receiving objects:  74% (1163/1571)   
Receiving objects:  75% (1179/1571)   
Receiving objects:  76% (1194/1571)   
Receiving objects:  77% (1210/1571)   
Receiving objects:  78% (1226/1571)   
Receiving objects:  79% (1242/1571)   
Receiving objects:  80% (1257/1571)   
Receiving objects:  81% (1273/1571)   
Receiving objects:  82% (1289/1571)   
Receiving objects:  83% (1304/1571)   
Receiving objects:  84% (1320/1571)   
Receiving objects:  85% (1336/1571)   
Receiving objects:  86% (1352/1571)   
Receiving objects:  87% (1367/1571)   
remote: Total 1571 (delta 1285), reused 1299 (delta 1284), pack-reused 265        
Receiving objects:  88% (1383/1571)   
Receiving objects:  89% (1399/1571)   
Receiving objects:  90% (1414/1571)   
Receiving objects:  91% (1430/1571)   
Receiving objects:  92% (1446/1571)   
Receiving objects:  93% (1462/1571)   
Receiving objects:  94% (1477/1571)   
Receiving objects:  95% (1493/1571)   
Receiving objects:  96% (1509/1571)   
Receiving objects:  97% (1524/1571)   
Receiving objects:  98% (1540/1571)   
Receiving objects:  99% (1556/1571)   
Receiving objects: 100% (1571/1571)   
Receiving objects: 100% (1571/1571), 554.91 KiB | 0 bytes/s, done.
Resolving deltas:   0% (0/1316)   
Resolving deltas:   1% (16/1316)   
Resolving deltas:   2% (27/1316)   
Resolving deltas:   3% (40/1316)   
Resolving deltas:   4% (53/1316)   
Resolving deltas:   8% (117/1316)   
Resolving deltas:   9% (119/1316)   
Resolving deltas:  10% (135/1316)   
Resolving deltas:  11% (150/1316)   
Resolving deltas:  12% (165/1316)   
Resolving deltas:  13% (180/1316)   
Resolving deltas:  14% (192/1316)   
Resolving deltas:  15% (204/1316)   
Resolving deltas:  16% (211/1316)   
Resolving deltas:  17% (224/1316)   
Resolving deltas:  18% (237/1316)   
Resolving deltas:  19% (251/1316)   
Resolving deltas:  20% (264/1316)   
Resolving deltas:  21% (277/1316)   
Resolving deltas:  22% (290/1316)   
Resolving deltas:  23% (303/1316)   
Resolving deltas:  24% (316/1316)   
Resolving deltas:  25% (329/1316)   
Resolving deltas:  26% (343/1316)   
Resolving deltas:  30% (402/1316)   
Resolving deltas:  31% (409/1316)   
Resolving deltas:  33% (446/1316)   
Resolving deltas:  34% (448/1316)   
Resolving deltas:  35% (465/1316)   
Resolving deltas:  37% (490/1316)   
Resolving deltas:  38% (508/1316)   
Resolving deltas:  39% (522/1316)   
Resolving deltas:  40% (528/1316)   
Resolving deltas:  41% (547/1316)   
Resolving deltas:  43% (568/1316)   
Resolving deltas:  44% (589/1316)   
Resolving deltas:  45% (596/1316)   
Resolving deltas:  46% (610/1316)   
Resolving deltas:  47% (627/1316)   
Resolving deltas:  48% (632/1316)   
Resolving deltas:  49% (645/1316)   
Resolving deltas:  50% (658/1316)   
Resolving deltas:  51% (672/1316)   
Resolving deltas:  52% (687/1316)   
Resolving deltas:  53% (704/1316)   
Resolving deltas:  54% (711/1316)   
Resolving deltas:  55% (724/1316)   
Resolving deltas:  56% (738/1316)   
Resolving deltas:  57% (751/1316)   
Resolving deltas:  58% (764/1316)   
Resolving deltas:  59% (780/1316)   
Resolving deltas:  60% (790/1316)   
Resolving deltas:  61% (807/1316)   
Resolving deltas:  62% (816/1316)   
Resolving deltas:  63% (830/1316)   
Resolving deltas:  64% (843/1316)   
Resolving deltas:  65% (856/1316)   
Resolving deltas:  66% (881/1316)   
Resolving deltas:  68% (897/1316)   
Resolving deltas:  69% (909/1316)   
Resolving deltas:  70% (923/1316)   
Resolving deltas:  71% (935/1316)   
Resolving deltas:  72% (948/1316)   
Resolving deltas:  73% (961/1316)   
Resolving deltas:  74% (974/1316)   
Resolving deltas:  75% (987/1316)   
Resolving deltas:  76% (1005/1316)   
Resolving deltas:  77% (1014/1316)   
Resolving deltas:  78% (1027/1316)   
Resolving deltas:  79% (1041/1316)   
Resolving deltas:  80% (1053/1316)   
Resolving deltas:  81% (1071/1316)   
Resolving deltas:  82% (1080/1316)   
Resolving deltas:  83% (1093/1316)   
Resolving deltas:  84% (1106/1316)   
Resolving deltas:  85% (1119/1316)   
Resolving deltas:  86% (1132/1316)   
Resolving deltas:  87% (1145/1316)   
Resolving deltas:  88% (1160/1316)   
Resolving deltas:  89% (1172/1316)   
Resolving deltas:  90% (1185/1316)   
Resolving deltas:  91% (1198/1316)   
Resolving deltas:  92% (1212/1316)   
Resolving deltas:  93% (1224/1316)   
Resolving deltas:  94% (1238/1316)   
Resolving deltas:  95% (1251/1316)   
Resolving deltas:  96% (1264/1316)   
Resolving deltas:  97% (1277/1316)   
Resolving deltas:  98% (1290/1316)   
Resolving deltas:  99% (1303/1316)   
Resolving deltas: 100% (1316/1316)   
Resolving deltas: 100% (1316/1316), completed with 629 local objects.
fatal: unable to look up current user in the passwd file: no such user
Unexpected end of command stream
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandIn(CliGitAPIImpl.java:2450)
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandWithCredentials(CliGitAPIImpl.java:2051)
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.access$500(CliGitAPIImpl.java:84)
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl$1.execute(CliGitAPIImpl.java:573)
at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler$GitCommandMasterToSlaveCallable.call(RemoteGitImpl.java:161)
at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler$GitCommandMasterToSlaveCallable.call(RemoteGitImpl.java:154)
at hudson.remoting.UserRequest.perform(UserRequest.java:211)
at hudson.remoting.UserRequest.perform(UserRequest.java:54)
at hudson.remoting.Request$2.run(Request.java:375)
at hudson.remoting.InterceptingExecutorService$1.call(InterceptingExecutorService.java:73)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
at java.lang.Thread.run(Thread.java:748)
Suppressed: hudson.remoting.Channel$CallSiteStackTrace: Remote call to ascic144-trilinos
	at hudson.remoting.Channel.attachCallSiteStackTrace(Channel.java:1800)
	at hudson.remoting.UserRequest$ExceptionResponse.retrieve(UserRequest.java:357)
	at hudson.remoting.Channel.call(Channel.java:1001)
	at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler.execute(RemoteGitImpl.java:146)
	at sun.reflect.GeneratedMethodAccessor462.invoke(Unknown Source)
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
	at java.lang.reflect.Method.invoke(Method.java:498)
	at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler.invoke(RemoteGitImpl.java:132)
	at com.sun.proxy.$Proxy114.execute(Unknown Source)
	at hudson.plugins.git.GitSCM.fetchFrom(GitSCM.java:994)
	at hudson.plugins.git.GitSCM.retrieveChanges(GitSCM.java:1237)
	at hudson.plugins.git.GitSCM.checkout(GitSCM.java:1297)
	at org.jenkinsci.plugins.multiplescms.MultiSCM.checkout(MultiSCM.java:143)
	at hudson.scm.SCM.checkout(SCM.java:505)
	at hudson.model.AbstractProject.checkout(AbstractProject.java:1206)
	at hudson.model.AbstractBuild$AbstractBuildExecution.defaultCheckout(AbstractBuild.java:574)
	at jenkins.scm.SCMCheckoutStrategy.checkout(SCMCheckoutStrategy.java:86)
	at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:499)
	at hudson.model.Run.execute(Run.java:1894)
	at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
	at hudson.model.ResourceController.execute(ResourceController.java:97)
	at hudson.model.Executor.run(Executor.java:428)

ERROR: Error fetching remote repo 'origin'
Archiving artifacts
[Checks API] No suitable checks publisher found.
Finished: FAILURE

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

    origin/develop \
    HEAD \
    packageEnables.cmake \
    package_subproject_list.cmake

TRILINOS_DIR=/home/trilinos/jenkins/ride/workspace/trilinos-folder/Trilinos_pullrequest_cuda_10.1.105/Trilinos/commonTools/framework/../..
TRILINOS_SCRIPTS_DIR=/home/trilinos/jenkins/ride/workspace/trilinos-folder/Trilinos_pullrequest_cuda_10.1.105/Trilinos/commonTools/framework/../..
TRIBITS_DIR=/home/trilinos/jenkins/ride/workspace/trilinos-folder/Trilinos_pullrequest_cuda_10.1.105/Trilinos/commonTools/framework/../../cmake/tribits
TRILINOS_DIR=/home/trilinos/jenkins/ride/workspace/trilinos-folder/Trilinos_pullrequest_cuda_10.1.105/Trilinos/commonTools/framework/../..
TRILINOS_SCRIPTS_DIR=/home/trilinos/jenkins/ride/workspace/trilinos-folder/Trilinos_pullrequest_cuda_10.1.105/Trilinos/commonTools/framework/../..
TRIBITS_DIR=/home/trilinos/jenkins/ride/workspace/trilinos-folder/Trilinos_pullrequest_cuda_10.1.105/Trilinos/commonTools/framework/../../cmake/tribits


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


A) Generate the Trilinos Packages definition and depencencies XML file

Wrote the file 'TrilinosPackageDependencies.xml'

B) Get the set of changed files

Current directory: /home/trilinos/jenkins/ride/workspace/trilinos-folder/Trilinos_pullrequest_cuda_10.1.105/Trilinos

git diff --name-only origin/develop..HEAD > /home/trilinos/jenkins/ride/workspace/trilinos-folder/Trilinos_pullrequest_cuda_10.1.105/changed-files.txt

Wrote file 'changed-files.txt'

Current directory: /home/trilinos/jenkins/ride/workspace/trilinos-folder/Trilinos_pullrequest_cuda_10.1.105

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

CHANGED_PACKAGES_FULL_LIST='TpetraCore'

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

CHANGED_PACKAGES_ST_LIST='TpetraCore'

E) Generate the packageEnables.cmake enables file

Wrote file 'packageEnables.cmake'

F) Generate the package_subproject_list.cmake file

Wrote file 'package_subproject_list.cmake'
Build name = PR-8804-test-Trilinos_pullrequest_cuda_10.1.105-619
Cur dir = /home/trilinos/jenkins/ride/workspace/trilinos-folder/Trilinos_pullrequest_cuda_10.1.105/TFW_testing_single_configure_prototype
Source dir = /home/trilinos/jenkins/ride/workspace/trilinos-folder/Trilinos_pullrequest_cuda_10.1.105/Trilinos
Binary dir = /home/trilinos/jenkins/ride/workspace/trilinos-folder/Trilinos_pullrequest_cuda_10.1.105/pull_request_test
Parallel level = 29
Testing Parallel level = 4
skip_by_parts_submit = OFF
skip_single_submit = ON
skip_update_step = ON
skip_upload_config_files = OFF
skip_clean_build_dir = ON
Subproject count = 61
Dashboard model = Experimental
Dashboard track = Pull Request
Running configuration:
/home/atdm-devops-admin/tools/ride/cmake-3.17.2/bin/cmake
-C "/home/trilinos/jenkins/ride/workspace/trilinos-folder/Trilinos_pullrequest_cuda_10.1.105/Trilinos/cmake/std/PullRequestLinuxCuda10.1.105TestingSettings.cmake"
-C "/home/trilinos/jenkins/ride/workspace/trilinos-folder/Trilinos_pullrequest_cuda_10.1.105/packageEnables.cmake"
-DTrilinos_ENABLE_TESTS:BOOL=ON
-DTrilinos_PARALLEL_LINK_JOBS_LIMIT:STRING=2
-G "Ninja"
/home/trilinos/jenkins/ride/workspace/trilinos-folder/Trilinos_pullrequest_cuda_10.1.105/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=ride17&field2=buildname&compare2=61&value2=PR-8804-test-Trilinos_pullrequest_cuda_10.1.105-619&field3=buildstamp&compare3=61&value3=20210224-2105-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-8804-test-Trilinos_pullrequest_cuda_10.1.105-619&field2=buildstamp&compare2=61&value2=20210224-2105-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-8804-test-Trilinos_pullrequest_cuda_10.1.105-619&field2=buildstamp&compare2=61&value2=20210224-2105-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 of output: 310K
configure submit error = 0
Configure suceeded.
Starting build step.
Each symbol represents 1024 bytes of output.
.................................................. Size: 50K
.................................................. Size: 100K
.................................................. Size: 149K
.................................................. Size: 199K
.................................................. Size: 250K
.................................................. Size: 299K
.................................................. Size: 349K
.................................................. Size: 399K
...............Build was aborted
Aborted by James M Willenbring
Terminated
Archiving artifacts
[Checks API] No suitable checks publisher found.
Finished: ABORTED

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

Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on ascic166-trilinos (trilinos-32 trilinos-skylake trilinos-any) in workspace /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_clang_10.0.0
The recommended git tool is: NONE
using credential d114a317-3cfb-4285-8fc7-79ae654877f4
 > git rev-parse --is-inside-work-tree # timeout=10
Fetching changes from the remote Git repository
 > git config remote.origin.url https://github.com/trilinos/Trilinos # timeout=10
Fetching upstream changes from https://github.com/trilinos/Trilinos
 > git --version # timeout=10
 > git --version # 'git version 1.8.3.1'
using GIT_SSH to set credentials Trilinos ssh key
Setting http proxy: wwwproxy.sandia.gov:80
 > git fetch --tags --progress https://github.com/trilinos/Trilinos +refs/heads/*:refs/remotes/origin/* # timeout=20
ERROR: Error fetching remote repo 'origin'
hudson.plugins.git.GitException: Failed to fetch from https://github.com/trilinos/Trilinos
	at hudson.plugins.git.GitSCM.fetchFrom(GitSCM.java:996)
	at hudson.plugins.git.GitSCM.retrieveChanges(GitSCM.java:1237)
	at hudson.plugins.git.GitSCM.checkout(GitSCM.java:1297)
	at org.jenkinsci.plugins.multiplescms.MultiSCM.checkout(MultiSCM.java:143)
	at hudson.scm.SCM.checkout(SCM.java:505)
	at hudson.model.AbstractProject.checkout(AbstractProject.java:1206)
	at hudson.model.AbstractBuild$AbstractBuildExecution.defaultCheckout(AbstractBuild.java:574)
	at jenkins.scm.SCMCheckoutStrategy.checkout(SCMCheckoutStrategy.java:86)
	at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:499)
	at hudson.model.Run.execute(Run.java:1894)
	at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
	at hudson.model.ResourceController.execute(ResourceController.java:97)
	at hudson.model.Executor.run(Executor.java:428)
Caused by: hudson.plugins.git.GitException: Command "git fetch --tags --progress https://github.com/trilinos/Trilinos +refs/heads/*:refs/remotes/origin/*" returned status code 128:
stdout: 
stderr: remote: Enumerating objects: 91, done.        
remote: Counting objects:   1% (1/91)        
remote: Counting objects:   2% (2/91)        
remote: Counting objects:   3% (3/91)        
remote: Counting objects:   4% (4/91)        
remote: Counting objects:   5% (5/91)        
remote: Counting objects:   6% (6/91)        
remote: Counting objects:   7% (7/91)        
remote: Counting objects:   8% (8/91)        
remote: Counting objects:   9% (9/91)        
remote: Counting objects:  10% (10/91)        
remote: Counting objects:  12% (11/91)        
remote: Counting objects:  13% (12/91)        
remote: Counting objects:  14% (13/91)        
remote: Counting objects:  15% (14/91)        
remote: Counting objects:  16% (15/91)        
remote: Counting objects:  17% (16/91)        
remote: Counting objects:  18% (17/91)        
remote: Counting objects:  19% (18/91)        
remote: Counting objects:  20% (19/91)        
remote: Counting objects:  21% (20/91)        
remote: Counting objects:  23% (21/91)        
remote: Counting objects:  24% (22/91)        
remote: Counting objects:  25% (23/91)        
remote: Counting objects:  26% (24/91)        
remote: Counting objects:  27% (25/91)        
remote: Counting objects:  28% (26/91)        
remote: Counting objects:  29% (27/91)        
remote: Counting objects:  30% (28/91)        
remote: Counting objects:  31% (29/91)        
remote: Counting objects:  32% (30/91)        
remote: Counting objects:  34% (31/91)        
remote: Counting objects:  35% (32/91)        
remote: Counting objects:  36% (33/91)        
remote: Counting objects:  37% (34/91)        
remote: Counting objects:  38% (35/91)        
remote: Counting objects:  39% (36/91)        
remote: Counting objects:  40% (37/91)        
remote: Counting objects:  41% (38/91)        
remote: Counting objects:  42% (39/91)        
remote: Counting objects:  43% (40/91)        
remote: Counting objects:  45% (41/91)        
remote: Counting objects:  46% (42/91)        
remote: Counting objects:  47% (43/91)        
remote: Counting objects:  48% (44/91)        
remote: Counting objects:  49% (45/91)        
remote: Counting objects:  50% (46/91)        
remote: Counting objects:  51% (47/91)        
remote: Counting objects:  52% (48/91)        
remote: Counting objects:  53% (49/91)        
remote: Counting objects:  54% (50/91)        
remote: Counting objects:  56% (51/91)        
remote: Counting objects:  57% (52/91)        
remote: Counting objects:  58% (53/91)        
remote: Counting objects:  59% (54/91)        
remote: Counting objects:  60% (55/91)        
remote: Counting objects:  61% (56/91)        
remote: Counting objects:  62% (57/91)        
remote: Counting objects:  63% (58/91)        
remote: Counting objects:  64% (59/91)        
remote: Counting objects:  65% (60/91)        
remote: Counting objects:  67% (61/91)        
remote: Counting objects:  68% (62/91)        
remote: Counting objects:  69% (63/91)        
remote: Counting objects:  70% (64/91)        
remote: Counting objects:  71% (65/91)        
remote: Counting objects:  72% (66/91)        
remote: Counting objects:  73% (67/91)        
remote: Counting objects:  74% (68/91)        
remote: Counting objects:  75% (69/91)        
remote: Counting objects:  76% (70/91)        
remote: Counting objects:  78% (71/91)        
remote: Counting objects:  79% (72/91)        
remote: Counting objects:  80% (73/91)        
remote: Counting objects:  81% (74/91)        
remote: Counting objects:  82% (75/91)        
remote: Counting objects:  83% (76/91)        
remote: Counting objects:  84% (77/91)        
remote: Counting objects:  85% (78/91)        
remote: Counting objects:  86% (79/91)        
remote: Counting objects:  87% (80/91)        
remote: Counting objects:  89% (81/91)        
remote: Counting objects:  90% (82/91)        
remote: Counting objects:  91% (83/91)        
remote: Counting objects:  92% (84/91)        
remote: Counting objects:  93% (85/91)        
remote: Counting objects:  94% (86/91)        
remote: Counting objects:  95% (87/91)        
remote: Counting objects:  96% (88/91)        
remote: Counting objects:  97% (89/91)        
remote: Counting objects:  98% (90/91)        
remote: Counting objects: 100% (91/91)        
remote: Counting objects: 100% (91/91), done.        
remote: Compressing objects:   6% (1/15)        
remote: Compressing objects:  13% (2/15)        
remote: Compressing objects:  20% (3/15)        
remote: Compressing objects:  26% (4/15)        
remote: Compressing objects:  33% (5/15)        
remote: Compressing objects:  40% (6/15)        
remote: Compressing objects:  46% (7/15)        
remote: Compressing objects:  53% (8/15)        
remote: Compressing objects:  60% (9/15)        
remote: Compressing objects:  66% (10/15)        
remote: Compressing objects:  73% (11/15)        
remote: Compressing objects:  80% (12/15)        
remote: Compressing objects:  86% (13/15)        
remote: Compressing objects:  93% (14/15)        
remote: Compressing objects: 100% (15/15)        
remote: Compressing objects: 100% (15/15), done.        
remote: Total 91 (delta 76), reused 91 (delta 76), pack-reused 0        
fatal: unable to look up current user in the passwd file: no such user
Unexpected end of command stream
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandIn(CliGitAPIImpl.java:2450)
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandWithCredentials(CliGitAPIImpl.java:2051)
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.access$500(CliGitAPIImpl.java:84)
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl$1.execute(CliGitAPIImpl.java:573)
at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler$GitCommandMasterToSlaveCallable.call(RemoteGitImpl.java:161)
at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler$GitCommandMasterToSlaveCallable.call(RemoteGitImpl.java:154)
at hudson.remoting.UserRequest.perform(UserRequest.java:211)
at hudson.remoting.UserRequest.perform(UserRequest.java:54)
at hudson.remoting.Request$2.run(Request.java:375)
at hudson.remoting.InterceptingExecutorService$1.call(InterceptingExecutorService.java:73)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
at java.lang.Thread.run(Thread.java:748)
Suppressed: hudson.remoting.Channel$CallSiteStackTrace: Remote call to ascic166-trilinos
	at hudson.remoting.Channel.attachCallSiteStackTrace(Channel.java:1800)
	at hudson.remoting.UserRequest$ExceptionResponse.retrieve(UserRequest.java:357)
	at hudson.remoting.Channel.call(Channel.java:1001)
	at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler.execute(RemoteGitImpl.java:146)
	at sun.reflect.GeneratedMethodAccessor462.invoke(Unknown Source)
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
	at java.lang.reflect.Method.invoke(Method.java:498)
	at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler.invoke(RemoteGitImpl.java:132)
	at com.sun.proxy.$Proxy114.execute(Unknown Source)
	at hudson.plugins.git.GitSCM.fetchFrom(GitSCM.java:994)
	at hudson.plugins.git.GitSCM.retrieveChanges(GitSCM.java:1237)
	at hudson.plugins.git.GitSCM.checkout(GitSCM.java:1297)
	at org.jenkinsci.plugins.multiplescms.MultiSCM.checkout(MultiSCM.java:143)
	at hudson.scm.SCM.checkout(SCM.java:505)
	at hudson.model.AbstractProject.checkout(AbstractProject.java:1206)
	at hudson.model.AbstractBuild$AbstractBuildExecution.defaultCheckout(AbstractBuild.java:574)
	at jenkins.scm.SCMCheckoutStrategy.checkout(SCMCheckoutStrategy.java:86)
	at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:499)
	at hudson.model.Run.execute(Run.java:1894)
	at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
	at hudson.model.ResourceController.execute(ResourceController.java:97)
	at hudson.model.Executor.run(Executor.java:428)

ERROR: Error fetching remote repo 'origin'
Archiving artifacts
[Checks API] No suitable checks publisher found.
Finished: FAILURE

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

Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on ascic144-trilinos (trilinos-haswell trilinos-any trilinos-37) in workspace /scratch/trilinos/jenkins/ascic144/workspace/trilinos-folder/Trilinos_pullrequest_python_3
The recommended git tool is: NONE
using credential d114a317-3cfb-4285-8fc7-79ae654877f4
 > git rev-parse --is-inside-work-tree # timeout=10
Fetching changes from the remote Git repository
 > git config remote.origin.url https://github.com/trilinos/Trilinos # timeout=10
Fetching upstream changes from https://github.com/trilinos/Trilinos
 > git --version # timeout=10
 > git --version # 'git version 1.8.3.1'
using GIT_SSH to set credentials Trilinos ssh key
Setting http proxy: wwwproxy.sandia.gov:80
 > git fetch --tags --progress https://github.com/trilinos/Trilinos +refs/heads/*:refs/remotes/origin/* # timeout=20
ERROR: Error fetching remote repo 'origin'
hudson.plugins.git.GitException: Failed to fetch from https://github.com/trilinos/Trilinos
	at hudson.plugins.git.GitSCM.fetchFrom(GitSCM.java:996)
	at hudson.plugins.git.GitSCM.retrieveChanges(GitSCM.java:1237)
	at hudson.plugins.git.GitSCM.checkout(GitSCM.java:1297)
	at org.jenkinsci.plugins.multiplescms.MultiSCM.checkout(MultiSCM.java:143)
	at hudson.scm.SCM.checkout(SCM.java:505)
	at hudson.model.AbstractProject.checkout(AbstractProject.java:1206)
	at hudson.model.AbstractBuild$AbstractBuildExecution.defaultCheckout(AbstractBuild.java:574)
	at jenkins.scm.SCMCheckoutStrategy.checkout(SCMCheckoutStrategy.java:86)
	at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:499)
	at hudson.model.Run.execute(Run.java:1894)
	at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
	at hudson.model.ResourceController.execute(ResourceController.java:97)
	at hudson.model.Executor.run(Executor.java:428)
Caused by: hudson.plugins.git.GitException: Command "git fetch --tags --progress https://github.com/trilinos/Trilinos +refs/heads/*:refs/remotes/origin/*" returned status code 128:
stdout: 
stderr: remote: Enumerating objects: 214, done.        
remote: Counting objects:   0% (1/214)        
remote: Counting objects:   1% (3/214)        
remote: Counting objects:   2% (5/214)        
remote: Counting objects:   3% (7/214)        
remote: Counting objects:   4% (9/214)        
remote: Counting objects:   5% (11/214)        
remote: Counting objects:   6% (13/214)        
remote: Counting objects:   7% (15/214)        
remote: Counting objects:   8% (18/214)        
remote: Counting objects:   9% (20/214)        
remote: Counting objects:  10% (22/214)        
remote: Counting objects:  11% (24/214)        
remote: Counting objects:  12% (26/214)        
remote: Counting objects:  13% (28/214)        
remote: Counting objects:  14% (30/214)        
remote: Counting objects:  15% (33/214)        
remote: Counting objects:  16% (35/214)        
remote: Counting objects:  17% (37/214)        
remote: Counting objects:  18% (39/214)        
remote: Counting objects:  19% (41/214)        
remote: Counting objects:  20% (43/214)        
remote: Counting objects:  21% (45/214)        
remote: Counting objects:  22% (48/214)        
remote: Counting objects:  23% (50/214)        
remote: Counting objects:  24% (52/214)        
remote: Counting objects:  25% (54/214)        
remote: Counting objects:  26% (56/214)        
remote: Counting objects:  27% (58/214)        
remote: Counting objects:  28% (60/214)        
remote: Counting objects:  29% (63/214)        
remote: Counting objects:  30% (65/214)        
remote: Counting objects:  31% (67/214)        
remote: Counting objects:  32% (69/214)        
remote: Counting objects:  33% (71/214)        
remote: Counting objects:  34% (73/214)        
remote: Counting objects:  35% (75/214)        
remote: Counting objects:  36% (78/214)        
remote: Counting objects:  37% (80/214)        
remote: Counting objects:  38% (82/214)        
remote: Counting objects:  39% (84/214)        
remote: Counting objects:  40% (86/214)        
remote: Counting objects:  41% (88/214)        
remote: Counting objects:  42% (90/214)        
remote: Counting objects:  43% (93/214)        
remote: Counting objects:  44% (95/214)        
remote: Counting objects:  45% (97/214)        
remote: Counting objects:  46% (99/214)        
remote: Counting objects:  47% (101/214)        
remote: Counting objects:  48% (103/214)        
remote: Counting objects:  49% (105/214)        
remote: Counting objects:  50% (107/214)        
remote: Counting objects:  51% (110/214)        
remote: Counting objects:  52% (112/214)        
remote: Counting objects:  53% (114/214)        
remote: Counting objects:  54% (116/214)        
remote: Counting objects:  55% (118/214)        
remote: Counting objects:  56% (120/214)        
remote: Counting objects:  57% (122/214)        
remote: Counting objects:  58% (125/214)        
remote: Counting objects:  59% (127/214)        
remote: Counting objects:  60% (129/214)        
remote: Counting objects:  61% (131/214)        
remote: Counting objects:  62% (133/214)        
remote: Counting objects:  63% (135/214)        
remote: Counting objects:  64% (137/214)        
remote: Counting objects:  65% (140/214)        
remote: Counting objects:  66% (142/214)        
remote: Counting objects:  67% (144/214)        
remote: Counting objects:  68% (146/214)        
remote: Counting objects:  69% (148/214)        
remote: Counting objects:  70% (150/214)        
remote: Counting objects:  71% (152/214)        
remote: Counting objects:  72% (155/214)        
remote: Counting objects:  73% (157/214)        
remote: Counting objects:  74% (159/214)        
remote: Counting objects:  75% (161/214)        
remote: Counting objects:  76% (163/214)        
remote: Counting objects:  77% (165/214)        
remote: Counting objects:  78% (167/214)        
remote: Counting objects:  79% (170/214)        
remote: Counting objects:  80% (172/214)        
remote: Counting objects:  81% (174/214)        
remote: Counting objects:  82% (176/214)        
remote: Counting objects:  83% (178/214)        
remote: Counting objects:  84% (180/214)        
remote: Counting objects:  85% (182/214)        
remote: Counting objects:  86% (185/214)        
remote: Counting objects:  87% (187/214)        
remote: Counting objects:  88% (189/214)        
remote: Counting objects:  89% (191/214)        
remote: Counting objects:  90% (193/214)        
remote: Counting objects:  91% (195/214)        
remote: Counting objects:  92% (197/214)        
remote: Counting objects:  93% (200/214)        
remote: Counting objects:  94% (202/214)        
remote: Counting objects:  95% (204/214)        
remote: Counting objects:  96% (206/214)        
remote: Counting objects:  97% (208/214)        
remote: Counting objects:  98% (210/214)        
remote: Counting objects:  99% (212/214)        
remote: Counting objects: 100% (214/214)        
remote: Counting objects: 100% (214/214), done.        
remote: Compressing objects:   6% (1/16)        
remote: Compressing objects:  12% (2/16)        
remote: Compressing objects:  18% (3/16)        
remote: Compressing objects:  25% (4/16)        
remote: Compressing objects:  31% (5/16)        
remote: Compressing objects:  37% (6/16)        
remote: Compressing objects:  43% (7/16)        
remote: Compressing objects:  50% (8/16)        
remote: Compressing objects:  56% (9/16)        
remote: Compressing objects:  62% (10/16)        
remote: Compressing objects:  68% (11/16)        
remote: Compressing objects:  75% (12/16)        
remote: Compressing objects:  81% (13/16)        
remote: Compressing objects:  87% (14/16)        
remote: Compressing objects:  93% (15/16)        
remote: Compressing objects: 100% (16/16)        
remote: Compressing objects: 100% (16/16), done.        
Receiving objects:   0% (1/241)   
Receiving objects:   1% (3/241)   
Receiving objects:   2% (5/241)   
Receiving objects:   3% (8/241)   
Receiving objects:   4% (10/241)   
Receiving objects:   5% (13/241)   
Receiving objects:   6% (15/241)   
Receiving objects:   7% (17/241)   
Receiving objects:   8% (20/241)   
Receiving objects:   9% (22/241)   
Receiving objects:  10% (25/241)   
Receiving objects:  11% (27/241)   
Receiving objects:  12% (29/241)   
Receiving objects:  13% (32/241)   
Receiving objects:  14% (34/241)   
Receiving objects:  15% (37/241)   
Receiving objects:  16% (39/241)   
Receiving objects:  17% (41/241)   
Receiving objects:  18% (44/241)   
Receiving objects:  19% (46/241)   
Receiving objects:  20% (49/241)   
Receiving objects:  21% (51/241)   
Receiving objects:  22% (54/241)   
Receiving objects:  23% (56/241)   
Receiving objects:  24% (58/241)   
Receiving objects:  25% (61/241)   
Receiving objects:  26% (63/241)   
Receiving objects:  27% (66/241)   
Receiving objects:  28% (68/241)   
Receiving objects:  29% (70/241)   
Receiving objects:  30% (73/241)   
Receiving objects:  31% (75/241)   
Receiving objects:  32% (78/241)   
Receiving objects:  33% (80/241)   
Receiving objects:  34% (82/241)   
Receiving objects:  35% (85/241)   
Receiving objects:  36% (87/241)   
Receiving objects:  37% (90/241)   
Receiving objects:  38% (92/241)   
Receiving objects:  39% (94/241)   
Receiving objects:  40% (97/241)   
Receiving objects:  41% (99/241)   
Receiving objects:  42% (102/241)   
Receiving objects:  43% (104/241)   
Receiving objects:  44% (107/241)   
Receiving objects:  45% (109/241)   
Receiving objects:  46% (111/241)   
Receiving objects:  47% (114/241)   
Receiving objects:  48% (116/241)   
Receiving objects:  49% (119/241)   
Receiving objects:  50% (121/241)   
Receiving objects:  51% (123/241)   
Receiving objects:  52% (126/241)   
Receiving objects:  53% (128/241)   
Receiving objects:  54% (131/241)   
remote: Total 241 (delta 198), reused 213 (delta 198), pack-reused 27        
Receiving objects:  55% (133/241)   
Receiving objects:  56% (135/241)   
Receiving objects:  57% (138/241)   
Receiving objects:  58% (140/241)   
Receiving objects:  59% (143/241)   
Receiving objects:  60% (145/241)   
Receiving objects:  61% (148/241)   
Receiving objects:  62% (150/241)   
Receiving objects:  63% (152/241)   
Receiving objects:  64% (155/241)   
Receiving objects:  65% (157/241)   
Receiving objects:  66% (160/241)   
Receiving objects:  67% (162/241)   
Receiving objects:  68% (164/241)   
Receiving objects:  69% (167/241)   
Receiving objects:  70% (169/241)   
Receiving objects:  71% (172/241)   
Receiving objects:  72% (174/241)   
Receiving objects:  73% (176/241)   
Receiving objects:  74% (179/241)   
Receiving objects:  75% (181/241)   
Receiving objects:  76% (184/241)   
Receiving objects:  77% (186/241)   
Receiving objects:  78% (188/241)   
Receiving objects:  79% (191/241)   
Receiving objects:  80% (193/241)   
Receiving objects:  81% (196/241)   
Receiving objects:  82% (198/241)   
Receiving objects:  83% (201/241)   
Receiving objects:  84% (203/241)   
Receiving objects:  85% (205/241)   
Receiving objects:  86% (208/241)   
Receiving objects:  87% (210/241)   
Receiving objects:  88% (213/241)   
Receiving objects:  89% (215/241)   
Receiving objects:  90% (217/241)   
Receiving objects:  91% (220/241)   
Receiving objects:  92% (222/241)   
Receiving objects:  93% (225/241)   
Receiving objects:  94% (227/241)   
Receiving objects:  95% (229/241)   
Receiving objects:  96% (232/241)   
Receiving objects:  97% (234/241)   
Receiving objects:  98% (237/241)   
Receiving objects:  99% (239/241)   
Receiving objects: 100% (241/241)   
Receiving objects: 100% (241/241), 103.01 KiB | 0 bytes/s, done.
Resolving deltas:   0% (0/203)   
Resolving deltas:   2% (5/203)   
Resolving deltas:   6% (14/203)   
Resolving deltas:   7% (15/203)   
Resolving deltas:   8% (17/203)   
Resolving deltas:   9% (20/203)   
Resolving deltas:  10% (21/203)   
Resolving deltas:  11% (24/203)   
Resolving deltas:  12% (25/203)   
Resolving deltas:  13% (27/203)   
Resolving deltas:  26% (53/203)   
Resolving deltas:  27% (55/203)   
Resolving deltas:  33% (68/203)   
Resolving deltas:  34% (70/203)   
Resolving deltas:  37% (76/203)   
Resolving deltas:  38% (78/203)   
Resolving deltas:  39% (80/203)   
Resolving deltas:  42% (86/203)   
Resolving deltas:  43% (88/203)   
Resolving deltas:  44% (90/203)   
Resolving deltas:  45% (92/203)   
Resolving deltas:  46% (94/203)   
Resolving deltas:  47% (96/203)   
Resolving deltas:  48% (98/203)   
Resolving deltas:  49% (100/203)   
Resolving deltas:  50% (102/203)   
Resolving deltas:  51% (104/203)   
Resolving deltas:  52% (106/203)   
Resolving deltas:  53% (108/203)   
Resolving deltas:  54% (110/203)   
Resolving deltas:  55% (112/203)   
Resolving deltas:  56% (114/203)   
Resolving deltas:  57% (116/203)   
Resolving deltas:  58% (118/203)   
Resolving deltas:  61% (125/203)   
Resolving deltas:  64% (131/203)   
Resolving deltas:  65% (132/203)   
Resolving deltas:  66% (135/203)   
Resolving deltas:  67% (137/203)   
Resolving deltas:  68% (139/203)   
Resolving deltas:  69% (141/203)   
Resolving deltas:  70% (143/203)   
Resolving deltas:  71% (145/203)   
Resolving deltas:  72% (147/203)   
Resolving deltas:  74% (151/203)   
Resolving deltas:  75% (154/203)   
Resolving deltas:  76% (156/203)   
Resolving deltas:  77% (157/203)   
Resolving deltas:  78% (160/203)   
Resolving deltas:  79% (162/203)   
Resolving deltas:  80% (164/203)   
Resolving deltas:  81% (166/203)   
Resolving deltas:  82% (167/203)   
Resolving deltas:  83% (169/203)   
Resolving deltas:  84% (172/203)   
Resolving deltas:  85% (173/203)   
Resolving deltas:  86% (175/203)   
Resolving deltas:  87% (177/203)   
Resolving deltas:  88% (179/203)   
Resolving deltas:  89% (181/203)   
Resolving deltas:  90% (183/203)   
Resolving deltas:  92% (187/203)   
Resolving deltas:  93% (190/203)   
Resolving deltas:  94% (191/203)   
Resolving deltas:  95% (194/203)   
Resolving deltas:  96% (195/203)   
Resolving deltas:  97% (197/203)   
Resolving deltas:  98% (199/203)   
Resolving deltas:  99% (201/203)   
Resolving deltas: 100% (203/203)   
Resolving deltas: 100% (203/203), completed with 104 local objects.
fatal: unable to look up current user in the passwd file: no such user
Unexpected end of command stream
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandIn(CliGitAPIImpl.java:2450)
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandWithCredentials(CliGitAPIImpl.java:2051)
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.access$500(CliGitAPIImpl.java:84)
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl$1.execute(CliGitAPIImpl.java:573)
at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler$GitCommandMasterToSlaveCallable.call(RemoteGitImpl.java:161)
at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler$GitCommandMasterToSlaveCallable.call(RemoteGitImpl.java:154)
at hudson.remoting.UserRequest.perform(UserRequest.java:211)
at hudson.remoting.UserRequest.perform(UserRequest.java:54)
at hudson.remoting.Request$2.run(Request.java:375)
at hudson.remoting.InterceptingExecutorService$1.call(InterceptingExecutorService.java:73)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
at java.lang.Thread.run(Thread.java:748)
Suppressed: hudson.remoting.Channel$CallSiteStackTrace: Remote call to ascic144-trilinos
	at hudson.remoting.Channel.attachCallSiteStackTrace(Channel.java:1800)
	at hudson.remoting.UserRequest$ExceptionResponse.retrieve(UserRequest.java:357)
	at hudson.remoting.Channel.call(Channel.java:1001)
	at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler.execute(RemoteGitImpl.java:146)
	at sun.reflect.GeneratedMethodAccessor462.invoke(Unknown Source)
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
	at java.lang.reflect.Method.invoke(Method.java:498)
	at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler.invoke(RemoteGitImpl.java:132)
	at com.sun.proxy.$Proxy114.execute(Unknown Source)
	at hudson.plugins.git.GitSCM.fetchFrom(GitSCM.java:994)
	at hudson.plugins.git.GitSCM.retrieveChanges(GitSCM.java:1237)
	at hudson.plugins.git.GitSCM.checkout(GitSCM.java:1297)
	at org.jenkinsci.plugins.multiplescms.MultiSCM.checkout(MultiSCM.java:143)
	at hudson.scm.SCM.checkout(SCM.java:505)
	at hudson.model.AbstractProject.checkout(AbstractProject.java:1206)
	at hudson.model.AbstractBuild$AbstractBuildExecution.defaultCheckout(AbstractBuild.java:574)
	at jenkins.scm.SCMCheckoutStrategy.checkout(SCMCheckoutStrategy.java:86)
	at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:499)
	at hudson.model.Run.execute(Run.java:1894)
	at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
	at hudson.model.ResourceController.execute(ResourceController.java:97)
	at hudson.model.Executor.run(Executor.java:428)

ERROR: Error fetching remote repo 'origin'
Archiving artifacts
[Checks API] No suitable checks publisher found.
Finished: FAILURE


CDash Test Results for PR# 8804.


Wiki: How to Reproduce PR Testing Builds and Errors.

@kddevin kddevin added the AT: RETEST Causes the PR autotester to run a new round of PR tests on the next iteration label Feb 24, 2021
@trilinos-autotester
Copy link
Contributor

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

@trilinos-autotester
Copy link
Contributor

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

@trilinos-autotester
Copy link
Contributor

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

Pull Request Auto Testing STARTING (click to expand)

Build Information

Test Name: Trilinos_pullrequest_gcc_8.3.0

  • Build Num: 3732
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;AT: RETEST;pkg: Tpetra
PULLREQUESTNUM 8804
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetra_8794_new
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA e2900a9
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA ab5db94

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0_serial

  • Build Num: 1315
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;AT: RETEST;pkg: Tpetra
PULLREQUESTNUM 8804
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetra_8794_new
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA e2900a9
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA ab5db94

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0_debug

  • Build Num: 1808
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;AT: RETEST;pkg: Tpetra
PULLREQUESTNUM 8804
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetra_8794_new
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA e2900a9
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA ab5db94

Build Information

Test Name: Trilinos_pullrequest_intel_17.0.1

  • Build Num: 9161
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;AT: RETEST;pkg: Tpetra
PULLREQUESTNUM 8804
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetra_8794_new
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA e2900a9
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA ab5db94

Build Information

Test Name: Trilinos_pullrequest_cuda_10.1.105

  • Build Num: 623
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;AT: RETEST;pkg: Tpetra
PULLREQUESTNUM 8804
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetra_8794_new
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA e2900a9
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA ab5db94

Build Information

Test Name: Trilinos_pullrequest_clang_10.0.0

  • Build Num: 1985
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;AT: RETEST;pkg: Tpetra
PULLREQUESTNUM 8804
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetra_8794_new
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA e2900a9
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA ab5db94

Build Information

Test Name: Trilinos_pullrequest_python_3

  • Build Num: 4659
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;AT: RETEST;pkg: Tpetra
PULLREQUESTNUM 8804
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetra_8794_new
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA e2900a9
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA ab5db94

Using Repos:

Repo: TRILINOS (trilinos/Trilinos)
  • Branch: tpetra_8794_new
  • SHA: e2900a9
  • Mode: TEST_REPO

Pull Request Author: kddevin

@trilinos-autotester
Copy link
Contributor

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

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

Pull Request Auto Testing has FAILED (click to expand)

Build Information

Test Name: Trilinos_pullrequest_gcc_8.3.0

  • Build Num: 3732
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;AT: RETEST;pkg: Tpetra
PULLREQUESTNUM 8804
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetra_8794_new
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA e2900a9
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA ab5db94

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0_serial

  • Build Num: 1315
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;AT: RETEST;pkg: Tpetra
PULLREQUESTNUM 8804
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetra_8794_new
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA e2900a9
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA ab5db94

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0_debug

  • Build Num: 1808
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;AT: RETEST;pkg: Tpetra
PULLREQUESTNUM 8804
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetra_8794_new
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA e2900a9
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA ab5db94

Build Information

Test Name: Trilinos_pullrequest_intel_17.0.1

  • Build Num: 9161
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;AT: RETEST;pkg: Tpetra
PULLREQUESTNUM 8804
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetra_8794_new
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA e2900a9
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA ab5db94

Build Information

Test Name: Trilinos_pullrequest_cuda_10.1.105

  • Build Num: 623
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;AT: RETEST;pkg: Tpetra
PULLREQUESTNUM 8804
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetra_8794_new
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA e2900a9
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA ab5db94

Build Information

Test Name: Trilinos_pullrequest_clang_10.0.0

  • Build Num: 1985
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;AT: RETEST;pkg: Tpetra
PULLREQUESTNUM 8804
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetra_8794_new
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA e2900a9
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA ab5db94

Build Information

Test Name: Trilinos_pullrequest_python_3

  • Build Num: 4659
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;AT: RETEST;pkg: Tpetra
PULLREQUESTNUM 8804
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetra_8794_new
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA e2900a9
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA ab5db94
Console Output (last 100 lines) : Trilinos_pullrequest_gcc_8.3.0 # 3732 (click to expand)

Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on ascic144-trilinos (trilinos-haswell trilinos-any trilinos-37) in workspace /scratch/trilinos/jenkins/ascic144/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0
The recommended git tool is: NONE
using credential d114a317-3cfb-4285-8fc7-79ae654877f4
 > git rev-parse --is-inside-work-tree # timeout=10
Fetching changes from the remote Git repository
 > git config remote.origin.url https://github.com/trilinos/Trilinos # timeout=10
Fetching upstream changes from https://github.com/trilinos/Trilinos
 > git --version # timeout=10
 > git --version # 'git version 1.8.3.1'
using GIT_SSH to set credentials Trilinos ssh key
Setting http proxy: wwwproxy.sandia.gov:80
 > git fetch --tags --progress https://github.com/trilinos/Trilinos +refs/heads/*:refs/remotes/origin/* # timeout=20
ERROR: Error fetching remote repo 'origin'
hudson.plugins.git.GitException: Failed to fetch from https://github.com/trilinos/Trilinos
	at hudson.plugins.git.GitSCM.fetchFrom(GitSCM.java:996)
	at hudson.plugins.git.GitSCM.retrieveChanges(GitSCM.java:1237)
	at hudson.plugins.git.GitSCM.checkout(GitSCM.java:1297)
	at org.jenkinsci.plugins.multiplescms.MultiSCM.checkout(MultiSCM.java:143)
	at hudson.scm.SCM.checkout(SCM.java:505)
	at hudson.model.AbstractProject.checkout(AbstractProject.java:1206)
	at hudson.model.AbstractBuild$AbstractBuildExecution.defaultCheckout(AbstractBuild.java:574)
	at jenkins.scm.SCMCheckoutStrategy.checkout(SCMCheckoutStrategy.java:86)
	at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:499)
	at hudson.model.Run.execute(Run.java:1894)
	at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
	at hudson.model.ResourceController.execute(ResourceController.java:97)
	at hudson.model.Executor.run(Executor.java:428)
Caused by: hudson.plugins.git.GitException: Command "git fetch --tags --progress https://github.com/trilinos/Trilinos +refs/heads/*:refs/remotes/origin/*" returned status code 128:
stdout: 
stderr: fatal: unable to look up current user in the passwd file: no such user
Unexpected end of command stream
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandIn(CliGitAPIImpl.java:2450)
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandWithCredentials(CliGitAPIImpl.java:2051)
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.access$500(CliGitAPIImpl.java:84)
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl$1.execute(CliGitAPIImpl.java:573)
at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler$GitCommandMasterToSlaveCallable.call(RemoteGitImpl.java:161)
at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler$GitCommandMasterToSlaveCallable.call(RemoteGitImpl.java:154)
at hudson.remoting.UserRequest.perform(UserRequest.java:211)
at hudson.remoting.UserRequest.perform(UserRequest.java:54)
at hudson.remoting.Request$2.run(Request.java:375)
at hudson.remoting.InterceptingExecutorService$1.call(InterceptingExecutorService.java:73)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
at java.lang.Thread.run(Thread.java:748)
Suppressed: hudson.remoting.Channel$CallSiteStackTrace: Remote call to ascic144-trilinos
	at hudson.remoting.Channel.attachCallSiteStackTrace(Channel.java:1800)
	at hudson.remoting.UserRequest$ExceptionResponse.retrieve(UserRequest.java:357)
	at hudson.remoting.Channel.call(Channel.java:1001)
	at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler.execute(RemoteGitImpl.java:146)
	at sun.reflect.GeneratedMethodAccessor462.invoke(Unknown Source)
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
	at java.lang.reflect.Method.invoke(Method.java:498)
	at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler.invoke(RemoteGitImpl.java:132)
	at com.sun.proxy.$Proxy114.execute(Unknown Source)
	at hudson.plugins.git.GitSCM.fetchFrom(GitSCM.java:994)
	at hudson.plugins.git.GitSCM.retrieveChanges(GitSCM.java:1237)
	at hudson.plugins.git.GitSCM.checkout(GitSCM.java:1297)
	at org.jenkinsci.plugins.multiplescms.MultiSCM.checkout(MultiSCM.java:143)
	at hudson.scm.SCM.checkout(SCM.java:505)
	at hudson.model.AbstractProject.checkout(AbstractProject.java:1206)
	at hudson.model.AbstractBuild$AbstractBuildExecution.defaultCheckout(AbstractBuild.java:574)
	at jenkins.scm.SCMCheckoutStrategy.checkout(SCMCheckoutStrategy.java:86)
	at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:499)
	at hudson.model.Run.execute(Run.java:1894)
	at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
	at hudson.model.ResourceController.execute(ResourceController.java:97)
	at hudson.model.Executor.run(Executor.java:428)

ERROR: Error fetching remote repo 'origin'
Archiving artifacts
[Checks API] No suitable checks publisher found.
Finished: FAILURE

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

Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on ascic144-trilinos (trilinos-haswell trilinos-any trilinos-37) in workspace /scratch/trilinos/jenkins/ascic144/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_serial
The recommended git tool is: NONE
using credential d114a317-3cfb-4285-8fc7-79ae654877f4
 > git rev-parse --is-inside-work-tree # timeout=10
Fetching changes from the remote Git repository
 > git config remote.origin.url https://github.com/trilinos/Trilinos # timeout=10
Fetching upstream changes from https://github.com/trilinos/Trilinos
 > git --version # timeout=10
 > git --version # 'git version 1.8.3.1'
using GIT_SSH to set credentials Trilinos ssh key
Setting http proxy: wwwproxy.sandia.gov:80
 > git fetch --tags --progress https://github.com/trilinos/Trilinos +refs/heads/*:refs/remotes/origin/* # timeout=20
ERROR: Error fetching remote repo 'origin'
hudson.plugins.git.GitException: Failed to fetch from https://github.com/trilinos/Trilinos
	at hudson.plugins.git.GitSCM.fetchFrom(GitSCM.java:996)
	at hudson.plugins.git.GitSCM.retrieveChanges(GitSCM.java:1237)
	at hudson.plugins.git.GitSCM.checkout(GitSCM.java:1297)
	at org.jenkinsci.plugins.multiplescms.MultiSCM.checkout(MultiSCM.java:143)
	at hudson.scm.SCM.checkout(SCM.java:505)
	at hudson.model.AbstractProject.checkout(AbstractProject.java:1206)
	at hudson.model.AbstractBuild$AbstractBuildExecution.defaultCheckout(AbstractBuild.java:574)
	at jenkins.scm.SCMCheckoutStrategy.checkout(SCMCheckoutStrategy.java:86)
	at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:499)
	at hudson.model.Run.execute(Run.java:1894)
	at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
	at hudson.model.ResourceController.execute(ResourceController.java:97)
	at hudson.model.Executor.run(Executor.java:428)
Caused by: hudson.plugins.git.GitException: Command "git fetch --tags --progress https://github.com/trilinos/Trilinos +refs/heads/*:refs/remotes/origin/*" returned status code 128:
stdout: 
stderr: fatal: unable to look up current user in the passwd file: no such user
Unexpected end of command stream
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandIn(CliGitAPIImpl.java:2450)
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandWithCredentials(CliGitAPIImpl.java:2051)
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.access$500(CliGitAPIImpl.java:84)
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl$1.execute(CliGitAPIImpl.java:573)
at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler$GitCommandMasterToSlaveCallable.call(RemoteGitImpl.java:161)
at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler$GitCommandMasterToSlaveCallable.call(RemoteGitImpl.java:154)
at hudson.remoting.UserRequest.perform(UserRequest.java:211)
at hudson.remoting.UserRequest.perform(UserRequest.java:54)
at hudson.remoting.Request$2.run(Request.java:375)
at hudson.remoting.InterceptingExecutorService$1.call(InterceptingExecutorService.java:73)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
at java.lang.Thread.run(Thread.java:748)
Suppressed: hudson.remoting.Channel$CallSiteStackTrace: Remote call to ascic144-trilinos
	at hudson.remoting.Channel.attachCallSiteStackTrace(Channel.java:1800)
	at hudson.remoting.UserRequest$ExceptionResponse.retrieve(UserRequest.java:357)
	at hudson.remoting.Channel.call(Channel.java:1001)
	at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler.execute(RemoteGitImpl.java:146)
	at sun.reflect.GeneratedMethodAccessor462.invoke(Unknown Source)
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
	at java.lang.reflect.Method.invoke(Method.java:498)
	at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler.invoke(RemoteGitImpl.java:132)
	at com.sun.proxy.$Proxy114.execute(Unknown Source)
	at hudson.plugins.git.GitSCM.fetchFrom(GitSCM.java:994)
	at hudson.plugins.git.GitSCM.retrieveChanges(GitSCM.java:1237)
	at hudson.plugins.git.GitSCM.checkout(GitSCM.java:1297)
	at org.jenkinsci.plugins.multiplescms.MultiSCM.checkout(MultiSCM.java:143)
	at hudson.scm.SCM.checkout(SCM.java:505)
	at hudson.model.AbstractProject.checkout(AbstractProject.java:1206)
	at hudson.model.AbstractBuild$AbstractBuildExecution.defaultCheckout(AbstractBuild.java:574)
	at jenkins.scm.SCMCheckoutStrategy.checkout(SCMCheckoutStrategy.java:86)
	at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:499)
	at hudson.model.Run.execute(Run.java:1894)
	at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
	at hudson.model.ResourceController.execute(ResourceController.java:97)
	at hudson.model.Executor.run(Executor.java:428)

ERROR: Error fetching remote repo 'origin'
Archiving artifacts
[Checks API] No suitable checks publisher found.
Finished: FAILURE

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

Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on ascic166-trilinos (trilinos-32 trilinos-skylake trilinos-any) in workspace /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_debug
The recommended git tool is: NONE
using credential d114a317-3cfb-4285-8fc7-79ae654877f4
 > git rev-parse --is-inside-work-tree # timeout=10
Fetching changes from the remote Git repository
 > git config remote.origin.url https://github.com/trilinos/Trilinos # timeout=10
Fetching upstream changes from https://github.com/trilinos/Trilinos
 > git --version # timeout=10
 > git --version # 'git version 1.8.3.1'
using GIT_SSH to set credentials Trilinos ssh key
Setting http proxy: wwwproxy.sandia.gov:80
 > git fetch --tags --progress https://github.com/trilinos/Trilinos +refs/heads/*:refs/remotes/origin/* # timeout=20
ERROR: Error fetching remote repo 'origin'
hudson.plugins.git.GitException: Failed to fetch from https://github.com/trilinos/Trilinos
	at hudson.plugins.git.GitSCM.fetchFrom(GitSCM.java:996)
	at hudson.plugins.git.GitSCM.retrieveChanges(GitSCM.java:1237)
	at hudson.plugins.git.GitSCM.checkout(GitSCM.java:1297)
	at org.jenkinsci.plugins.multiplescms.MultiSCM.checkout(MultiSCM.java:143)
	at hudson.scm.SCM.checkout(SCM.java:505)
	at hudson.model.AbstractProject.checkout(AbstractProject.java:1206)
	at hudson.model.AbstractBuild$AbstractBuildExecution.defaultCheckout(AbstractBuild.java:574)
	at jenkins.scm.SCMCheckoutStrategy.checkout(SCMCheckoutStrategy.java:86)
	at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:499)
	at hudson.model.Run.execute(Run.java:1894)
	at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
	at hudson.model.ResourceController.execute(ResourceController.java:97)
	at hudson.model.Executor.run(Executor.java:428)
Caused by: hudson.plugins.git.GitException: Command "git fetch --tags --progress https://github.com/trilinos/Trilinos +refs/heads/*:refs/remotes/origin/*" returned status code 128:
stdout: 
stderr: fatal: unable to look up current user in the passwd file: no such user
Unexpected end of command stream
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandIn(CliGitAPIImpl.java:2450)
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandWithCredentials(CliGitAPIImpl.java:2051)
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.access$500(CliGitAPIImpl.java:84)
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl$1.execute(CliGitAPIImpl.java:573)
at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler$GitCommandMasterToSlaveCallable.call(RemoteGitImpl.java:161)
at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler$GitCommandMasterToSlaveCallable.call(RemoteGitImpl.java:154)
at hudson.remoting.UserRequest.perform(UserRequest.java:211)
at hudson.remoting.UserRequest.perform(UserRequest.java:54)
at hudson.remoting.Request$2.run(Request.java:375)
at hudson.remoting.InterceptingExecutorService$1.call(InterceptingExecutorService.java:73)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
at java.lang.Thread.run(Thread.java:748)
Suppressed: hudson.remoting.Channel$CallSiteStackTrace: Remote call to ascic166-trilinos
	at hudson.remoting.Channel.attachCallSiteStackTrace(Channel.java:1800)
	at hudson.remoting.UserRequest$ExceptionResponse.retrieve(UserRequest.java:357)
	at hudson.remoting.Channel.call(Channel.java:1001)
	at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler.execute(RemoteGitImpl.java:146)
	at sun.reflect.GeneratedMethodAccessor462.invoke(Unknown Source)
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
	at java.lang.reflect.Method.invoke(Method.java:498)
	at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler.invoke(RemoteGitImpl.java:132)
	at com.sun.proxy.$Proxy114.execute(Unknown Source)
	at hudson.plugins.git.GitSCM.fetchFrom(GitSCM.java:994)
	at hudson.plugins.git.GitSCM.retrieveChanges(GitSCM.java:1237)
	at hudson.plugins.git.GitSCM.checkout(GitSCM.java:1297)
	at org.jenkinsci.plugins.multiplescms.MultiSCM.checkout(MultiSCM.java:143)
	at hudson.scm.SCM.checkout(SCM.java:505)
	at hudson.model.AbstractProject.checkout(AbstractProject.java:1206)
	at hudson.model.AbstractBuild$AbstractBuildExecution.defaultCheckout(AbstractBuild.java:574)
	at jenkins.scm.SCMCheckoutStrategy.checkout(SCMCheckoutStrategy.java:86)
	at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:499)
	at hudson.model.Run.execute(Run.java:1894)
	at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
	at hudson.model.ResourceController.execute(ResourceController.java:97)
	at hudson.model.Executor.run(Executor.java:428)

ERROR: Error fetching remote repo 'origin'
Archiving artifacts
[Checks API] No suitable checks publisher found.
Finished: FAILURE

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

Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on ascic144-trilinos (trilinos-haswell trilinos-any trilinos-37) in workspace /scratch/trilinos/jenkins/ascic144/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1
The recommended git tool is: NONE
No credentials specified
 > git rev-parse --is-inside-work-tree # timeout=10
Fetching changes from the remote Git repository
 > git config remote.origin.url https://github.com/trilinos/Trilinos # timeout=10
Fetching upstream changes from https://github.com/trilinos/Trilinos
 > git --version # timeout=10
 > git --version # 'git version 1.8.3.1'
Setting http proxy: wwwproxy.sandia.gov:80
 > git fetch --tags --progress https://github.com/trilinos/Trilinos +refs/heads/*:refs/remotes/origin/* # timeout=20
ERROR: Error fetching remote repo 'origin'
hudson.plugins.git.GitException: Failed to fetch from https://github.com/trilinos/Trilinos
	at hudson.plugins.git.GitSCM.fetchFrom(GitSCM.java:996)
	at hudson.plugins.git.GitSCM.retrieveChanges(GitSCM.java:1237)
	at hudson.plugins.git.GitSCM.checkout(GitSCM.java:1297)
	at org.jenkinsci.plugins.multiplescms.MultiSCM.checkout(MultiSCM.java:143)
	at hudson.scm.SCM.checkout(SCM.java:505)
	at hudson.model.AbstractProject.checkout(AbstractProject.java:1206)
	at hudson.model.AbstractBuild$AbstractBuildExecution.defaultCheckout(AbstractBuild.java:574)
	at jenkins.scm.SCMCheckoutStrategy.checkout(SCMCheckoutStrategy.java:86)
	at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:499)
	at hudson.model.Run.execute(Run.java:1894)
	at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
	at hudson.model.ResourceController.execute(ResourceController.java:97)
	at hudson.model.Executor.run(Executor.java:428)
Caused by: hudson.plugins.git.GitException: Command "git fetch --tags --progress https://github.com/trilinos/Trilinos +refs/heads/*:refs/remotes/origin/*" returned status code 128:
stdout: 
stderr: fatal: unable to look up current user in the passwd file: no such user
Unexpected end of command stream
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandIn(CliGitAPIImpl.java:2450)
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandWithCredentials(CliGitAPIImpl.java:2051)
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.access$500(CliGitAPIImpl.java:84)
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl$1.execute(CliGitAPIImpl.java:573)
at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler$GitCommandMasterToSlaveCallable.call(RemoteGitImpl.java:161)
at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler$GitCommandMasterToSlaveCallable.call(RemoteGitImpl.java:154)
at hudson.remoting.UserRequest.perform(UserRequest.java:211)
at hudson.remoting.UserRequest.perform(UserRequest.java:54)
at hudson.remoting.Request$2.run(Request.java:375)
at hudson.remoting.InterceptingExecutorService$1.call(InterceptingExecutorService.java:73)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
at java.lang.Thread.run(Thread.java:748)
Suppressed: hudson.remoting.Channel$CallSiteStackTrace: Remote call to ascic144-trilinos
	at hudson.remoting.Channel.attachCallSiteStackTrace(Channel.java:1800)
	at hudson.remoting.UserRequest$ExceptionResponse.retrieve(UserRequest.java:357)
	at hudson.remoting.Channel.call(Channel.java:1001)
	at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler.execute(RemoteGitImpl.java:146)
	at sun.reflect.GeneratedMethodAccessor462.invoke(Unknown Source)
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
	at java.lang.reflect.Method.invoke(Method.java:498)
	at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler.invoke(RemoteGitImpl.java:132)
	at com.sun.proxy.$Proxy114.execute(Unknown Source)
	at hudson.plugins.git.GitSCM.fetchFrom(GitSCM.java:994)
	at hudson.plugins.git.GitSCM.retrieveChanges(GitSCM.java:1237)
	at hudson.plugins.git.GitSCM.checkout(GitSCM.java:1297)
	at org.jenkinsci.plugins.multiplescms.MultiSCM.checkout(MultiSCM.java:143)
	at hudson.scm.SCM.checkout(SCM.java:505)
	at hudson.model.AbstractProject.checkout(AbstractProject.java:1206)
	at hudson.model.AbstractBuild$AbstractBuildExecution.defaultCheckout(AbstractBuild.java:574)
	at jenkins.scm.SCMCheckoutStrategy.checkout(SCMCheckoutStrategy.java:86)
	at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:499)
	at hudson.model.Run.execute(Run.java:1894)
	at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
	at hudson.model.ResourceController.execute(ResourceController.java:97)
	at hudson.model.Executor.run(Executor.java:428)

ERROR: Error fetching remote repo 'origin'
Archiving artifacts
[Checks API] No suitable checks publisher found.
Finished: FAILURE

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

    ..................................................  Size: 10950K
    ..................................................  Size: 11000K
    ..................................................  Size: 11050K
    ..................................................  Size: 11100K
    ..................................................  Size: 11150K
    ..................................................  Size: 11200K
    ..................................................  Size: 11250K
    ..................................................  Size: 11300K
    ..................................................  Size: 11350K
    ..................................................  Size: 11400K
    ..................................................  Size: 11450K
    ..................................................  Size: 11499K
    ..................................................  Size: 11549K
    ..................................................  Size: 11599K
    ..................................................  Size: 11650K
    ..................................................  Size: 11700K
    ..................................................  Size: 11750K
    ..................................................  Size: 11799K
    ..................................................  Size: 11849K
    ..................................................  Size: 11899K
    ..................................................  Size: 11949K
    ..................................................  Size: 11999K
    ..................................................  Size: 12049K
    ..................................................  Size: 12100K
    ..................................................  Size: 12150K
    ..................................................  Size: 12200K
    ..................................................  Size: 12250K
    ..................................................  Size: 12300K
    ..................................................  Size: 12350K
    ..................................................  Size: 12400K
    ..................................................  Size: 12450K
    ..................................................  Size: 12500K
    ..................................................  Size: 12550K
    ..................................................  Size: 12600K
    ..................................................  Size: 12650K
    ..................................................  Size: 12700K
    ..................................................  Size: 12750K
    ..................................................  Size: 12800K
    ..................................................  Size: 12849K
    ..................................................  Size: 12899K
    ..................................................  Size: 12950K
    ..................................................  Size: 13000K
    ..................................................  Size: 13050K
    ..................................................  Size: 13100K
    ..................................................  Size: 13150K
    ..................................................  Size: 13199K
    ..................................................  Size: 13249K
    ..................................................  Size: 13299K
    ..................................................  Size: 13350K
    ..................................................  Size: 13400K
    ..................................................  Size: 13450K
    ..................................................  Size: 13500K
    ..................................................  Size: 13549K
    ..................................................  Size: 13600K
    ..................................................  Size: 13649K
    ..................................................  Size: 13699K
    ..................................................  Size: 13749K
    .................................. Size of output: 13784K
Build succeeded.
build submit error = 0
Starting testing step.
Tests succeeded.
test submit error = 0
File upload submit error = 0

Enabled Packages:
-- Setting Trilinos_ENABLE_TpetraCore = ON

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

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

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

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

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

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

Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on ascic166-trilinos (trilinos-32 trilinos-skylake trilinos-any) in workspace /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_clang_10.0.0
The recommended git tool is: NONE
using credential d114a317-3cfb-4285-8fc7-79ae654877f4
 > git rev-parse --is-inside-work-tree # timeout=10
Fetching changes from the remote Git repository
 > git config remote.origin.url https://github.com/trilinos/Trilinos # timeout=10
Fetching upstream changes from https://github.com/trilinos/Trilinos
 > git --version # timeout=10
 > git --version # 'git version 1.8.3.1'
using GIT_SSH to set credentials Trilinos ssh key
Setting http proxy: wwwproxy.sandia.gov:80
 > git fetch --tags --progress https://github.com/trilinos/Trilinos +refs/heads/*:refs/remotes/origin/* # timeout=20
ERROR: Error fetching remote repo 'origin'
hudson.plugins.git.GitException: Failed to fetch from https://github.com/trilinos/Trilinos
	at hudson.plugins.git.GitSCM.fetchFrom(GitSCM.java:996)
	at hudson.plugins.git.GitSCM.retrieveChanges(GitSCM.java:1237)
	at hudson.plugins.git.GitSCM.checkout(GitSCM.java:1297)
	at org.jenkinsci.plugins.multiplescms.MultiSCM.checkout(MultiSCM.java:143)
	at hudson.scm.SCM.checkout(SCM.java:505)
	at hudson.model.AbstractProject.checkout(AbstractProject.java:1206)
	at hudson.model.AbstractBuild$AbstractBuildExecution.defaultCheckout(AbstractBuild.java:574)
	at jenkins.scm.SCMCheckoutStrategy.checkout(SCMCheckoutStrategy.java:86)
	at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:499)
	at hudson.model.Run.execute(Run.java:1894)
	at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
	at hudson.model.ResourceController.execute(ResourceController.java:97)
	at hudson.model.Executor.run(Executor.java:428)
Caused by: hudson.plugins.git.GitException: Command "git fetch --tags --progress https://github.com/trilinos/Trilinos +refs/heads/*:refs/remotes/origin/*" returned status code 128:
stdout: 
stderr: fatal: unable to look up current user in the passwd file: no such user
Unexpected end of command stream
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandIn(CliGitAPIImpl.java:2450)
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandWithCredentials(CliGitAPIImpl.java:2051)
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.access$500(CliGitAPIImpl.java:84)
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl$1.execute(CliGitAPIImpl.java:573)
at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler$GitCommandMasterToSlaveCallable.call(RemoteGitImpl.java:161)
at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler$GitCommandMasterToSlaveCallable.call(RemoteGitImpl.java:154)
at hudson.remoting.UserRequest.perform(UserRequest.java:211)
at hudson.remoting.UserRequest.perform(UserRequest.java:54)
at hudson.remoting.Request$2.run(Request.java:375)
at hudson.remoting.InterceptingExecutorService$1.call(InterceptingExecutorService.java:73)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
at java.lang.Thread.run(Thread.java:748)
Suppressed: hudson.remoting.Channel$CallSiteStackTrace: Remote call to ascic166-trilinos
	at hudson.remoting.Channel.attachCallSiteStackTrace(Channel.java:1800)
	at hudson.remoting.UserRequest$ExceptionResponse.retrieve(UserRequest.java:357)
	at hudson.remoting.Channel.call(Channel.java:1001)
	at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler.execute(RemoteGitImpl.java:146)
	at sun.reflect.GeneratedMethodAccessor462.invoke(Unknown Source)
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
	at java.lang.reflect.Method.invoke(Method.java:498)
	at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler.invoke(RemoteGitImpl.java:132)
	at com.sun.proxy.$Proxy114.execute(Unknown Source)
	at hudson.plugins.git.GitSCM.fetchFrom(GitSCM.java:994)
	at hudson.plugins.git.GitSCM.retrieveChanges(GitSCM.java:1237)
	at hudson.plugins.git.GitSCM.checkout(GitSCM.java:1297)
	at org.jenkinsci.plugins.multiplescms.MultiSCM.checkout(MultiSCM.java:143)
	at hudson.scm.SCM.checkout(SCM.java:505)
	at hudson.model.AbstractProject.checkout(AbstractProject.java:1206)
	at hudson.model.AbstractBuild$AbstractBuildExecution.defaultCheckout(AbstractBuild.java:574)
	at jenkins.scm.SCMCheckoutStrategy.checkout(SCMCheckoutStrategy.java:86)
	at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:499)
	at hudson.model.Run.execute(Run.java:1894)
	at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
	at hudson.model.ResourceController.execute(ResourceController.java:97)
	at hudson.model.Executor.run(Executor.java:428)

ERROR: Error fetching remote repo 'origin'
Archiving artifacts
[Checks API] No suitable checks publisher found.
Finished: FAILURE

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

Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on ascic144-trilinos (trilinos-haswell trilinos-any trilinos-37) in workspace /scratch/trilinos/jenkins/ascic144/workspace/trilinos-folder/Trilinos_pullrequest_python_3
The recommended git tool is: NONE
using credential d114a317-3cfb-4285-8fc7-79ae654877f4
 > git rev-parse --is-inside-work-tree # timeout=10
Fetching changes from the remote Git repository
 > git config remote.origin.url https://github.com/trilinos/Trilinos # timeout=10
Fetching upstream changes from https://github.com/trilinos/Trilinos
 > git --version # timeout=10
 > git --version # 'git version 1.8.3.1'
using GIT_SSH to set credentials Trilinos ssh key
Setting http proxy: wwwproxy.sandia.gov:80
 > git fetch --tags --progress https://github.com/trilinos/Trilinos +refs/heads/*:refs/remotes/origin/* # timeout=20
ERROR: Error fetching remote repo 'origin'
hudson.plugins.git.GitException: Failed to fetch from https://github.com/trilinos/Trilinos
	at hudson.plugins.git.GitSCM.fetchFrom(GitSCM.java:996)
	at hudson.plugins.git.GitSCM.retrieveChanges(GitSCM.java:1237)
	at hudson.plugins.git.GitSCM.checkout(GitSCM.java:1297)
	at org.jenkinsci.plugins.multiplescms.MultiSCM.checkout(MultiSCM.java:143)
	at hudson.scm.SCM.checkout(SCM.java:505)
	at hudson.model.AbstractProject.checkout(AbstractProject.java:1206)
	at hudson.model.AbstractBuild$AbstractBuildExecution.defaultCheckout(AbstractBuild.java:574)
	at jenkins.scm.SCMCheckoutStrategy.checkout(SCMCheckoutStrategy.java:86)
	at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:499)
	at hudson.model.Run.execute(Run.java:1894)
	at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
	at hudson.model.ResourceController.execute(ResourceController.java:97)
	at hudson.model.Executor.run(Executor.java:428)
Caused by: hudson.plugins.git.GitException: Command "git fetch --tags --progress https://github.com/trilinos/Trilinos +refs/heads/*:refs/remotes/origin/*" returned status code 128:
stdout: 
stderr: fatal: unable to look up current user in the passwd file: no such user
Unexpected end of command stream
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandIn(CliGitAPIImpl.java:2450)
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandWithCredentials(CliGitAPIImpl.java:2051)
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.access$500(CliGitAPIImpl.java:84)
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl$1.execute(CliGitAPIImpl.java:573)
at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler$GitCommandMasterToSlaveCallable.call(RemoteGitImpl.java:161)
at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler$GitCommandMasterToSlaveCallable.call(RemoteGitImpl.java:154)
at hudson.remoting.UserRequest.perform(UserRequest.java:211)
at hudson.remoting.UserRequest.perform(UserRequest.java:54)
at hudson.remoting.Request$2.run(Request.java:375)
at hudson.remoting.InterceptingExecutorService$1.call(InterceptingExecutorService.java:73)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
at java.lang.Thread.run(Thread.java:748)
Suppressed: hudson.remoting.Channel$CallSiteStackTrace: Remote call to ascic144-trilinos
	at hudson.remoting.Channel.attachCallSiteStackTrace(Channel.java:1800)
	at hudson.remoting.UserRequest$ExceptionResponse.retrieve(UserRequest.java:357)
	at hudson.remoting.Channel.call(Channel.java:1001)
	at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler.execute(RemoteGitImpl.java:146)
	at sun.reflect.GeneratedMethodAccessor462.invoke(Unknown Source)
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
	at java.lang.reflect.Method.invoke(Method.java:498)
	at org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler.invoke(RemoteGitImpl.java:132)
	at com.sun.proxy.$Proxy114.execute(Unknown Source)
	at hudson.plugins.git.GitSCM.fetchFrom(GitSCM.java:994)
	at hudson.plugins.git.GitSCM.retrieveChanges(GitSCM.java:1237)
	at hudson.plugins.git.GitSCM.checkout(GitSCM.java:1297)
	at org.jenkinsci.plugins.multiplescms.MultiSCM.checkout(MultiSCM.java:143)
	at hudson.scm.SCM.checkout(SCM.java:505)
	at hudson.model.AbstractProject.checkout(AbstractProject.java:1206)
	at hudson.model.AbstractBuild$AbstractBuildExecution.defaultCheckout(AbstractBuild.java:574)
	at jenkins.scm.SCMCheckoutStrategy.checkout(SCMCheckoutStrategy.java:86)
	at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:499)
	at hudson.model.Run.execute(Run.java:1894)
	at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
	at hudson.model.ResourceController.execute(ResourceController.java:97)
	at hudson.model.Executor.run(Executor.java:428)

ERROR: Error fetching remote repo 'origin'
Archiving artifacts
[Checks API] No suitable checks publisher found.
Finished: FAILURE


CDash Test Results for PR# 8804.


Wiki: How to Reproduce PR Testing Builds and Errors.

@trilinos-autotester
Copy link
Contributor

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

@trilinos-autotester
Copy link
Contributor

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

Pull Request Auto Testing STARTING (click to expand)

Build Information

Test Name: Trilinos_pullrequest_gcc_8.3.0

  • Build Num: 3828
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;AT: RETEST;pkg: Tpetra
PULLREQUESTNUM 8804
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetra_8794_new
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA e2900a9
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA ab5db94

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0_serial

  • Build Num: 1400
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;AT: RETEST;pkg: Tpetra
PULLREQUESTNUM 8804
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetra_8794_new
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA e2900a9
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA ab5db94

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0_debug

  • Build Num: 1890
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;AT: RETEST;pkg: Tpetra
PULLREQUESTNUM 8804
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetra_8794_new
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA e2900a9
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA ab5db94

Build Information

Test Name: Trilinos_pullrequest_intel_17.0.1

  • Build Num: 9238
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;AT: RETEST;pkg: Tpetra
PULLREQUESTNUM 8804
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetra_8794_new
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA e2900a9
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA ab5db94

Build Information

Test Name: Trilinos_pullrequest_cuda_10.1.105

  • Build Num: 691
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;AT: RETEST;pkg: Tpetra
PULLREQUESTNUM 8804
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetra_8794_new
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA e2900a9
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA ab5db94

Build Information

Test Name: Trilinos_pullrequest_clang_10.0.0

  • Build Num: 2053
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;AT: RETEST;pkg: Tpetra
PULLREQUESTNUM 8804
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetra_8794_new
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA e2900a9
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA ab5db94

Build Information

Test Name: Trilinos_pullrequest_python_3

  • Build Num: 4727
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;AT: RETEST;pkg: Tpetra
PULLREQUESTNUM 8804
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetra_8794_new
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA e2900a9
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA ab5db94

Using Repos:

Repo: TRILINOS (trilinos/Trilinos)
  • Branch: tpetra_8794_new
  • SHA: e2900a9
  • Mode: TEST_REPO

Pull Request Author: kddevin

@trilinos-autotester
Copy link
Contributor

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

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

Pull Request Auto Testing has FAILED (click to expand)

Build Information

Test Name: Trilinos_pullrequest_gcc_8.3.0

  • Build Num: 3828
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;AT: RETEST;pkg: Tpetra
PULLREQUESTNUM 8804
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetra_8794_new
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA e2900a9
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA ab5db94

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0_serial

  • Build Num: 1400
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;AT: RETEST;pkg: Tpetra
PULLREQUESTNUM 8804
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetra_8794_new
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA e2900a9
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA ab5db94

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0_debug

  • Build Num: 1890
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;AT: RETEST;pkg: Tpetra
PULLREQUESTNUM 8804
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetra_8794_new
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA e2900a9
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA ab5db94

Build Information

Test Name: Trilinos_pullrequest_intel_17.0.1

  • Build Num: 9238
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;AT: RETEST;pkg: Tpetra
PULLREQUESTNUM 8804
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetra_8794_new
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA e2900a9
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA ab5db94

Build Information

Test Name: Trilinos_pullrequest_cuda_10.1.105

  • Build Num: 691
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;AT: RETEST;pkg: Tpetra
PULLREQUESTNUM 8804
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetra_8794_new
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA e2900a9
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA ab5db94

Build Information

Test Name: Trilinos_pullrequest_clang_10.0.0

  • Build Num: 2053
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;AT: RETEST;pkg: Tpetra
PULLREQUESTNUM 8804
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetra_8794_new
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA e2900a9
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA ab5db94

Build Information

Test Name: Trilinos_pullrequest_python_3

  • Build Num: 4727
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;AT: RETEST;pkg: Tpetra
PULLREQUESTNUM 8804
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetra_8794_new
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA e2900a9
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA ab5db94
Console Output (last 100 lines) : Trilinos_pullrequest_gcc_8.3.0 # 3828 (click to expand)

/projects/sems/install/rhel7-x86_64/sems/utility/cmake/3.17.1/bin/cmake 
  -C "/scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/Trilinos/cmake/std/PullRequestLinuxGCC8.3.0TestingSettings.cmake"
  -C "/scratch/trilinos/jenkins/ascic141/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/ascic141/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=ascic141&field2=buildname&compare2=61&value2=PR-8804-test-Trilinos_pullrequest_gcc_8.3.0-3828&field3=buildstamp&compare3=61&value3=20210308-1704-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-8804-test-Trilinos_pullrequest_gcc_8.3.0-3828&field2=buildstamp&compare2=61&value2=20210308-1704-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-8804-test-Trilinos_pullrequest_gcc_8.3.0-3828&field2=buildstamp&compare2=61&value2=20210308-1704-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 of output: 331K
configure submit error = 0
Configure suceeded.
Starting build step.
   Each symbol represents 1024 bytes of output.
    ..................................................  Size: 49K
    ..................................................  Size: 99K
    ..................................................  Size: 149K
    ..................................................  Size: 199K
    ..................................................  Size: 249K
    ..................................................  Size: 299K
    ..................................................  Size: 349K
    ..................................................  Size: 399K
    ..................................................  Size: 449K
    ..................................................  Size: 499K
    ..................................................  Size: 549K
    ..................................................  Size: 599K
    ..................................................  Size: 649K
    ..................................................  Size: 699K
    ..................................................  Size: 749K
    ..................................................  Size: 799K
    ..................................................  Size: 849K
    ..................................................  Size: 899K
    ..................................................  Size: 949K
    ..................................................  Size: 999K
    ..................................................  Size: 1049K
    ..................................................  Size: 1099K
    ..................................................  Size: 1149K
    ..................................................  Size: 1199K
    ..................................................  Size: 1249K
    ..................................................  Size: 1299K
    ..................................................  Size: 1349K
    ..................................................  Size: 1399K
    ..................................................  Size: 1449K
    ..................................................  Size: 1499K
    ..................................................  Size: 1549K
    ..................................................  Size: 1599K
    ..................................................  Size: 1649K
    ................................. Size of output: 1683K
Build succeeded.
build submit error = 0
Starting testing step.
Tests succeeded.
test submit error = 0
File upload submit error = 0

Enabled Packages:
-- Setting Trilinos_ENABLE_TpetraCore = ON

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

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

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

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

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

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

Source dir               = /scratch/trilinos/jenkins/ascic144/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_serial/Trilinos
Binary dir               = /scratch/trilinos/jenkins/ascic144/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_serial/pull_request_test
Parallel level           = 20
Testing Parallel level   = 4
skip_by_parts_submit     = OFF
skip_single_submit       = ON
skip_update_step         = ON
skip_upload_config_files = OFF
skip_clean_build_dir     = ON
Subproject count         = 61
Dashboard model          = Experimental
Dashboard track          = Pull Request
Running configuration:
/projects/sems/install/rhel7-x86_64/sems/utility/cmake/3.17.1/bin/cmake 
  -C "/scratch/trilinos/jenkins/ascic144/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_serial/Trilinos/cmake/std/PullRequestLinuxGCC7.2.0SerialTestingSettings.cmake"
  -C "/scratch/trilinos/jenkins/ascic144/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_serial/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_7.2.0_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=ascic144&field2=buildname&compare2=61&value2=PR-8804-test-Trilinos_pullrequest_gcc_7.2.0_serial-1400&field3=buildstamp&compare3=61&value3=20210308-1704-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-8804-test-Trilinos_pullrequest_gcc_7.2.0_serial-1400&field2=buildstamp&compare2=61&value2=20210308-1704-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-8804-test-Trilinos_pullrequest_gcc_7.2.0_serial-1400&field2=buildstamp&compare2=61&value2=20210308-1704-Pull Request-Experimental
Starting configure step.
   Each . represents 1024 bytes of output
    ..................................................  Size: 50K
    ..................................................  Size: 100K
    ..................................................  Size: 150K
    ..................................................  Size: 200K
    ..................................................  Size: 250K
    ................................ Size of output: 281K
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 of output: 1067K
Build succeeded.
build submit error = 0
Starting testing step.
Tests succeeded.
test submit error = 0
File upload submit error = 0

Enabled Packages:
-- Setting Trilinos_ENABLE_TpetraCore = ON

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

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

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

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

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

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

E) Generate the packageEnables.cmake enables file

Wrote file 'packageEnables.cmake'

F) Generate the package_subproject_list.cmake file

Wrote file 'package_subproject_list.cmake'
Build name = PR-8804-test-Trilinos_pullrequest_gcc_7.2.0_debug-1890
Cur dir = /scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_debug/TFW_testing_single_configure_prototype
Source dir = /scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_debug/Trilinos
Binary dir = /scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_debug/pull_request_test
Parallel level = 29
Testing Parallel level = 4
skip_by_parts_submit = OFF
skip_single_submit = ON
skip_update_step = ON
skip_upload_config_files = OFF
skip_clean_build_dir = ON
Subproject count = 61
Dashboard model = Experimental
Dashboard track = Pull Request
Running configuration:
/projects/sems/install/rhel7-x86_64/sems/utility/cmake/3.17.1/bin/cmake
-C "/scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_debug/Trilinos/cmake/std/PullRequestLinuxGCC7.2.0DebugTestingSettings.cmake"
-C "/scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_debug/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_debug/Trilinos
CTEST_DROP_LOCATION = /cdash/submit.php?project=Trilinos
CDash URL1 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&display=project&filtercount=3&showfilters=1&filtercombine=and&field1=site&compare1=61&value1=ascic158&field2=buildname&compare2=61&value2=PR-8804-test-Trilinos_pullrequest_gcc_7.2.0_debug-1890&field3=buildstamp&compare3=61&value3=20210308-1704-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-8804-test-Trilinos_pullrequest_gcc_7.2.0_debug-1890&field2=buildstamp&compare2=61&value2=20210308-1704-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-8804-test-Trilinos_pullrequest_gcc_7.2.0_debug-1890&field2=buildstamp&compare2=61&value2=20210308-1704-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 of output: 328K
configure submit error = 0
Configure suceeded.
Starting build step.
Each symbol represents 1024 bytes of output.
.................................................. Size: 49K
.................................................. Size: 99K
.................................................. Size: 149K
.................................................. Size: 199K
.................................................. Size: 249K
.................................................. Size: 299K
.................................................. Size: 349K
.................................. Size of output: 384K
Build succeeded.
build submit error = 0
Starting testing step.
CMake Error at /scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_debug/TFW_testing_single_configure_prototype/simple_testing.cmake:218 (message):
Test failed with error -1

test submit error = 0
File upload submit error = 0

Enabled Packages:
-- Setting Trilinos_ENABLE_TpetraCore = ON

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

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

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

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

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

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

    ..................................................  Size: 10650K
    ..................................................  Size: 10700K
    ..................................................  Size: 10750K
    ..................................................  Size: 10800K
    ..................................................  Size: 10850K
    ..................................................  Size: 10900K
    ..................................................  Size: 10950K
    ..................................................  Size: 11000K
    ..................................................  Size: 11050K
    ..................................................  Size: 11100K
    ..................................................  Size: 11150K
    ..................................................  Size: 11200K
    ..................................................  Size: 11249K
    ..................................................  Size: 11299K
    ..................................................  Size: 11349K
    ..................................................  Size: 11399K
    ..................................................  Size: 11450K
    ..................................................  Size: 11500K
    ..................................................  Size: 11549K
    ..................................................  Size: 11599K
    ..................................................  Size: 11649K
    ..................................................  Size: 11699K
    ..................................................  Size: 11749K
    ..................................................  Size: 11799K
    ..................................................  Size: 11849K
    ..................................................  Size: 11899K
    ..................................................  Size: 11950K
    ..................................................  Size: 12000K
    ..................................................  Size: 12050K
    ..................................................  Size: 12100K
    ..................................................  Size: 12150K
    ..................................................  Size: 12200K
    ..................................................  Size: 12250K
    ..................................................  Size: 12300K
    ..................................................  Size: 12350K
    ..................................................  Size: 12400K
    ..................................................  Size: 12450K
    ..................................................  Size: 12500K
    ..................................................  Size: 12550K
    ..................................................  Size: 12600K
    ..................................................  Size: 12650K
    ..................................................  Size: 12700K
    ..................................................  Size: 12750K
    ..................................................  Size: 12800K
    ..................................................  Size: 12850K
    ..................................................  Size: 12900K
    ..................................................  Size: 12950K
    ..................................................  Size: 13000K
    ..................................................  Size: 13050K
    ..................................................  Size: 13099K
    ..................................................  Size: 13150K
    ..................................................  Size: 13200K
    ..................................................  Size: 13250K
    ..................................................  Size: 13300K
    ..................................................  Size: 13350K
    ..................................................  Size: 13399K
    ..................................................  Size: 13449K
    .. Size of output: 13452K
Build succeeded.
build submit error = 0
Starting testing step.
Tests succeeded.
test submit error = 0
File upload submit error = 0

Enabled Packages:
-- Setting Trilinos_ENABLE_TpetraCore = ON

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

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

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

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

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

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

    ..................................................  Size: 11249K
    ..................................................  Size: 11299K
    ..................................................  Size: 11349K
    ..................................................  Size: 11399K
    ..................................................  Size: 11449K
    ..................................................  Size: 11499K
    ..................................................  Size: 11550K
    ..................................................  Size: 11600K
    ..................................................  Size: 11650K
    ..................................................  Size: 11700K
    ..................................................  Size: 11750K
    ..................................................  Size: 11800K
    ..................................................  Size: 11850K
    ..................................................  Size: 11900K
    ..................................................  Size: 11949K
    ..................................................  Size: 11999K
    ..................................................  Size: 12049K
    ..................................................  Size: 12100K
    ..................................................  Size: 12150K
    ..................................................  Size: 12200K
    ..................................................  Size: 12250K
    ..................................................  Size: 12300K
    ..................................................  Size: 12350K
    ..................................................  Size: 12400K
    ..................................................  Size: 12449K
    ..................................................  Size: 12500K
    ..................................................  Size: 12550K
    ..................................................  Size: 12600K
    ..................................................  Size: 12650K
    ..................................................  Size: 12700K
    ..................................................  Size: 12749K
    ..................................................  Size: 12799K
    ..................................................  Size: 12849K
    ..................................................  Size: 12899K
    ..................................................  Size: 12949K
    ..................................................  Size: 12999K
    ..................................................  Size: 13049K
    ..................................................  Size: 13100K
    ..................................................  Size: 13150K
    ..................................................  Size: 13200K
    ..................................................  Size: 13250K
    ..................................................  Size: 13299K
    ..................................................  Size: 13349K
    ..................................................  Size: 13399K
    ..................................................  Size: 13450K
    ..................................................  Size: 13500K
    ..................................................  Size: 13550K
    ..................................................  Size: 13600K
    ..................................................  Size: 13649K
    ..................................................  Size: 13700K
    ..................................................  Size: 13749K
    ..................................................  Size: 13800K
    ..................................................  Size: 13849K
    .............. Size of output: 13863K
Build succeeded.
build submit error = 0
Starting testing step.
CMake Error at /home/trilinos/jenkins/ride/workspace/trilinos-folder/Trilinos_pullrequest_cuda_10.1.105@2/TFW_testing_single_configure_prototype/simple_testing.cmake:218 (message):
  Test failed with error -1

test submit error = 0
File upload submit error = 0

Enabled Packages:
-- Setting Trilinos_ENABLE_TpetraCore = ON

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

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

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

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

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

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

CHANGED_PACKAGES_ST_LIST='TpetraCore'

E) Generate the packageEnables.cmake enables file

Wrote file 'packageEnables.cmake'

F) Generate the package_subproject_list.cmake file

Wrote file 'package_subproject_list.cmake'
Build name = PR-8804-test-Trilinos_pullrequest_clang_10.0.0-2053
Cur dir = /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_clang_10.0.0/TFW_testing_single_configure_prototype
Source dir = /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_clang_10.0.0/Trilinos
Binary dir = /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_clang_10.0.0/pull_request_test
Parallel level = 29
Testing Parallel level = 4
skip_by_parts_submit = OFF
skip_single_submit = ON
skip_update_step = ON
skip_upload_config_files = OFF
skip_clean_build_dir = ON
Subproject count = 61
Dashboard model = Experimental
Dashboard track = Pull Request
Running configuration:
/projects/sems/install/rhel7-x86_64/sems/utility/cmake/3.17.1/bin/cmake
-C "/scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_clang_10.0.0/Trilinos/cmake/std/PullRequestLinuxClang10.0.0TestingSettings.cmake"
-C "/scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_clang_10.0.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_clang_10.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=ascic166&field2=buildname&compare2=61&value2=PR-8804-test-Trilinos_pullrequest_clang_10.0.0-2053&field3=buildstamp&compare3=61&value3=20210308-1704-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-8804-test-Trilinos_pullrequest_clang_10.0.0-2053&field2=buildstamp&compare2=61&value2=20210308-1704-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-8804-test-Trilinos_pullrequest_clang_10.0.0-2053&field2=buildstamp&compare2=61&value2=20210308-1704-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 of output: 325K
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: 350K
.................................................. Size: 399K
........... Size of output: 410K
Build succeeded.
build submit error = 0
Starting testing step.
Tests succeeded.
test submit error = 0
File upload submit error = 0

Enabled Packages:
-- Setting Trilinos_ENABLE_TpetraCore = ON

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

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

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

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

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

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

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

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

Enabled Packages:
-- Setting Trilinos_ENABLE_TrilinosFrameworkTests = ON

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

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

--- Change directory to /scratch/trilinos/jenkins/ascic142/workspace/trilinos-folder/Trilinos_pullrequest_python_3/TFW_testing_single_configure_prototype
--- OK

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

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


CDash Test Results for PR# 8804.


Wiki: How to Reproduce PR Testing Builds and Errors.

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

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

Pull Request Auto Testing STARTING (click to expand)

Build Information

Test Name: Trilinos_pullrequest_gcc_8.3.0

  • Build Num: 3843
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;pkg: Tpetra
PULLREQUESTNUM 8804
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetra_8794_new
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA e2900a9
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA ab5db94

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0_serial

  • Build Num: 1411
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;pkg: Tpetra
PULLREQUESTNUM 8804
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetra_8794_new
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA e2900a9
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA ab5db94

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0_debug

  • Build Num: 1899
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;pkg: Tpetra
PULLREQUESTNUM 8804
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetra_8794_new
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA e2900a9
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA ab5db94

Build Information

Test Name: Trilinos_pullrequest_intel_17.0.1

  • Build Num: 9246
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;pkg: Tpetra
PULLREQUESTNUM 8804
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetra_8794_new
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA e2900a9
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA ab5db94

Build Information

Test Name: Trilinos_pullrequest_cuda_10.1.105

  • Build Num: 699
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;pkg: Tpetra
PULLREQUESTNUM 8804
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetra_8794_new
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA e2900a9
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA ab5db94

Build Information

Test Name: Trilinos_pullrequest_clang_10.0.0

  • Build Num: 2061
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;pkg: Tpetra
PULLREQUESTNUM 8804
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetra_8794_new
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA e2900a9
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA ab5db94

Build Information

Test Name: Trilinos_pullrequest_python_3

  • Build Num: 4735
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;pkg: Tpetra
PULLREQUESTNUM 8804
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetra_8794_new
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA e2900a9
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA ab5db94

Using Repos:

Repo: TRILINOS (trilinos/Trilinos)
  • Branch: tpetra_8794_new
  • SHA: e2900a9
  • Mode: TEST_REPO

Pull Request Author: kddevin

@trilinos-autotester
Copy link
Contributor

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

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

Pull Request Auto Testing has FAILED (click to expand)

Build Information

Test Name: Trilinos_pullrequest_gcc_8.3.0

  • Build Num: 3843
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;pkg: Tpetra
PULLREQUESTNUM 8804
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetra_8794_new
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA e2900a9
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA ab5db94

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0_serial

  • Build Num: 1411
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;pkg: Tpetra
PULLREQUESTNUM 8804
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetra_8794_new
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA e2900a9
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA ab5db94

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0_debug

  • Build Num: 1899
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;pkg: Tpetra
PULLREQUESTNUM 8804
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetra_8794_new
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA e2900a9
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA ab5db94

Build Information

Test Name: Trilinos_pullrequest_intel_17.0.1

  • Build Num: 9246
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;pkg: Tpetra
PULLREQUESTNUM 8804
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetra_8794_new
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA e2900a9
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA ab5db94

Build Information

Test Name: Trilinos_pullrequest_cuda_10.1.105

  • Build Num: 699
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;pkg: Tpetra
PULLREQUESTNUM 8804
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetra_8794_new
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA e2900a9
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA ab5db94

Build Information

Test Name: Trilinos_pullrequest_clang_10.0.0

  • Build Num: 2061
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;pkg: Tpetra
PULLREQUESTNUM 8804
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetra_8794_new
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA e2900a9
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA ab5db94

Build Information

Test Name: Trilinos_pullrequest_python_3

  • Build Num: 4735
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;pkg: Tpetra
PULLREQUESTNUM 8804
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetra_8794_new
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA e2900a9
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA ab5db94
Console Output (last 100 lines) : Trilinos_pullrequest_gcc_8.3.0 # 3843 (click to expand)

/projects/sems/install/rhel7-x86_64/sems/utility/cmake/3.17.1/bin/cmake 
  -C "/scratch/trilinos/jenkins/ascic115/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/Trilinos/cmake/std/PullRequestLinuxGCC8.3.0TestingSettings.cmake"
  -C "/scratch/trilinos/jenkins/ascic115/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/ascic115/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=ascic115&field2=buildname&compare2=61&value2=PR-8804-test-Trilinos_pullrequest_gcc_8.3.0-3843&field3=buildstamp&compare3=61&value3=20210309-0024-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-8804-test-Trilinos_pullrequest_gcc_8.3.0-3843&field2=buildstamp&compare2=61&value2=20210309-0024-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-8804-test-Trilinos_pullrequest_gcc_8.3.0-3843&field2=buildstamp&compare2=61&value2=20210309-0024-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 of output: 331K
configure submit error = 0
Configure suceeded.
Starting build step.
   Each symbol represents 1024 bytes of output.
    ..................................................  Size: 49K
    ..................................................  Size: 99K
    ..................................................  Size: 149K
    ..................................................  Size: 199K
    ..................................................  Size: 249K
    ..................................................  Size: 299K
    ..................................................  Size: 349K
    ..................................................  Size: 399K
    ..................................................  Size: 449K
    ..................................................  Size: 499K
    ..................................................  Size: 549K
    ..................................................  Size: 599K
    ..................................................  Size: 649K
    ..................................................  Size: 699K
    ..................................................  Size: 749K
    ..................................................  Size: 799K
    ..................................................  Size: 849K
    ..................................................  Size: 899K
    ..................................................  Size: 949K
    ..................................................  Size: 999K
    ..................................................  Size: 1049K
    ..................................................  Size: 1099K
    ..................................................  Size: 1149K
    ..................................................  Size: 1199K
    ..................................................  Size: 1249K
    ..................................................  Size: 1299K
    ..................................................  Size: 1349K
    ..................................................  Size: 1399K
    ..................................................  Size: 1449K
    ..................................................  Size: 1499K
    ..................................................  Size: 1549K
    ..................................................  Size: 1599K
    ..................................................  Size: 1649K
    ................................. Size of output: 1683K
Build succeeded.
build submit error = 0
Starting testing step.
Tests succeeded.
test submit error = 0
File upload submit error = 0

Enabled Packages:
-- Setting Trilinos_ENABLE_TpetraCore = ON

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

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

--- Change directory to /scratch/trilinos/jenkins/ascic115/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/TFW_testing_single_configure_prototype
--- OK

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

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

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

F) Generate the package_subproject_list.cmake file

Wrote file 'package_subproject_list.cmake'
Build name = PR-8804-test-Trilinos_pullrequest_gcc_7.2.0_serial-1411
Cur dir = /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_serial/TFW_testing_single_configure_prototype
Source dir = /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_serial/Trilinos
Binary dir = /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_serial/pull_request_test
Parallel level = 29
Testing Parallel level = 4
skip_by_parts_submit = OFF
skip_single_submit = ON
skip_update_step = ON
skip_upload_config_files = OFF
skip_clean_build_dir = ON
Subproject count = 61
Dashboard model = Experimental
Dashboard track = Pull Request
Running configuration:
/projects/sems/install/rhel7-x86_64/sems/utility/cmake/3.17.1/bin/cmake
-C "/scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_serial/Trilinos/cmake/std/PullRequestLinuxGCC7.2.0SerialTestingSettings.cmake"
-C "/scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_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_7.2.0_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-8804-test-Trilinos_pullrequest_gcc_7.2.0_serial-1411&field3=buildstamp&compare3=61&value3=20210309-0024-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-8804-test-Trilinos_pullrequest_gcc_7.2.0_serial-1411&field2=buildstamp&compare2=61&value2=20210309-0024-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-8804-test-Trilinos_pullrequest_gcc_7.2.0_serial-1411&field2=buildstamp&compare2=61&value2=20210309-0024-Pull Request-Experimental
Starting configure step.
Each . represents 1024 bytes of output
.................................................. Size: 50K
.................................................. Size: 100K
.................................................. Size: 150K
.................................................. Size: 200K
.................................................. Size: 250K
................................ Size of output: 281K
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 of output: 832K
Build succeeded.
build submit error = 0
Starting testing step.
Tests succeeded.
test submit error = 0
File upload submit error = 0

Enabled Packages:
-- Setting Trilinos_ENABLE_TpetraCore = ON

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

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

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

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

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

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

E) Generate the packageEnables.cmake enables file

Wrote file 'packageEnables.cmake'

F) Generate the package_subproject_list.cmake file

Wrote file 'package_subproject_list.cmake'
Build name = PR-8804-test-Trilinos_pullrequest_gcc_7.2.0_debug-1899
Cur dir = /scratch/trilinos/jenkins/tr-test-3/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_debug/TFW_testing_single_configure_prototype
Source dir = /scratch/trilinos/jenkins/tr-test-3/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_debug/Trilinos
Binary dir = /scratch/trilinos/jenkins/tr-test-3/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_debug/pull_request_test
Parallel level = 20
Testing Parallel level = 4
skip_by_parts_submit = OFF
skip_single_submit = ON
skip_update_step = ON
skip_upload_config_files = OFF
skip_clean_build_dir = ON
Subproject count = 61
Dashboard model = Experimental
Dashboard track = Pull Request
Running configuration:
/projects/sems/install/rhel7-x86_64/sems/utility/cmake/3.17.1/bin/cmake
-C "/scratch/trilinos/jenkins/tr-test-3/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_debug/Trilinos/cmake/std/PullRequestLinuxGCC7.2.0DebugTestingSettings.cmake"
-C "/scratch/trilinos/jenkins/tr-test-3/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_debug/packageEnables.cmake"
-DTrilinos_ENABLE_TESTS:BOOL=ON
-DTrilinos_PARALLEL_LINK_JOBS_LIMIT:STRING=2
-G "Ninja"
/scratch/trilinos/jenkins/tr-test-3/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_debug/Trilinos
CTEST_DROP_LOCATION = /cdash/submit.php?project=Trilinos
CDash URL1 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&display=project&filtercount=3&showfilters=1&filtercombine=and&field1=site&compare1=61&value1=tr-test-3.novalocal&field2=buildname&compare2=61&value2=PR-8804-test-Trilinos_pullrequest_gcc_7.2.0_debug-1899&field3=buildstamp&compare3=61&value3=20210309-0025-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-8804-test-Trilinos_pullrequest_gcc_7.2.0_debug-1899&field2=buildstamp&compare2=61&value2=20210309-0025-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-8804-test-Trilinos_pullrequest_gcc_7.2.0_debug-1899&field2=buildstamp&compare2=61&value2=20210309-0025-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 of output: 328K
configure submit error = 0
Configure suceeded.
Starting build step.
Each symbol represents 1024 bytes of output.
.................................................. Size: 49K
.................................................. Size: 99K
.................................................. Size: 149K
.................................................. Size: 199K
.................................................. Size: 249K
.................................................. Size: 299K
.................................................. Size: 349K
........................................... Size of output: 393K
Build succeeded.
build submit error = 0
Starting testing step.
CMake Error at /scratch/trilinos/jenkins/tr-test-3/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_debug/TFW_testing_single_configure_prototype/simple_testing.cmake:218 (message):
Test failed with error -1

test submit error = 0
File upload submit error = 0

Enabled Packages:
-- Setting Trilinos_ENABLE_TpetraCore = ON

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

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

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

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

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

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

    ..................................................  Size: 11499K
    ..................................................  Size: 11549K
    ..................................................  Size: 11599K
    ..................................................  Size: 11650K
    ..................................................  Size: 11700K
    ..................................................  Size: 11750K
    ..................................................  Size: 11799K
    ..................................................  Size: 11849K
    ..................................................  Size: 11899K
    ..................................................  Size: 11949K
    ..................................................  Size: 11999K
    ..................................................  Size: 12050K
    ..................................................  Size: 12100K
    ..................................................  Size: 12150K
    ..................................................  Size: 12200K
    ..................................................  Size: 12250K
    ..................................................  Size: 12300K
    ..................................................  Size: 12350K
    ..................................................  Size: 12399K
    ..................................................  Size: 12450K
    ..................................................  Size: 12500K
    ..................................................  Size: 12550K
    ..................................................  Size: 12600K
    ..................................................  Size: 12650K
    ..................................................  Size: 12700K
    ..................................................  Size: 12749K
    ..................................................  Size: 12799K
    ..................................................  Size: 12849K
    ..................................................  Size: 12899K
    ..................................................  Size: 12949K
    ..................................................  Size: 12999K
    ..................................................  Size: 13049K
    ..................................................  Size: 13099K
    ..................................................  Size: 13149K
    ..................................................  Size: 13199K
    ..................................................  Size: 13249K
    ..................................................  Size: 13299K
    ..................................................  Size: 13349K
    ..................................................  Size: 13399K
    ..................................................  Size: 13449K
    ..................................................  Size: 13499K
    ..................................................  Size: 13549K
    ..................................................  Size: 13599K
    ..................................................  Size: 13649K
    ..................................................  Size: 13699K
    ..................................................  Size: 13749K
    ..................................................  Size: 13799K
    ..................................................  Size: 13849K
    ..................................................  Size: 13899K
    ..................................................  Size: 13949K
    ..................................................  Size: 13999K
    ..................................................  Size: 14050K
    ..................................................  Size: 14100K
    ..................................................  Size: 14149K
    ..................................................  Size: 14199K
    ..................................................  Size: 14250K
    ..................................................  Size: 14299K
    ................. Size of output: 14317K
Build succeeded.
build submit error = 0
Starting testing step.
Tests succeeded.
test submit error = 0
File upload submit error = 0

Enabled Packages:
-- Setting Trilinos_ENABLE_TpetraCore = ON

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

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

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

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

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

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

    ..................................................  Size: 11000K
    ..................................................  Size: 11050K
    ..................................................  Size: 11100K
    ..................................................  Size: 11150K
    ..................................................  Size: 11200K
    ..................................................  Size: 11250K
    ..................................................  Size: 11300K
    ..................................................  Size: 11350K
    ..................................................  Size: 11400K
    ..................................................  Size: 11450K
    ..................................................  Size: 11500K
    ..................................................  Size: 11550K
    ..................................................  Size: 11599K
    ..................................................  Size: 11650K
    ..................................................  Size: 11699K
    ..................................................  Size: 11749K
    ..................................................  Size: 11799K
    ..................................................  Size: 11849K
    ..................................................  Size: 11899K
    ..................................................  Size: 11949K
    ..................................................  Size: 11999K
    ..................................................  Size: 12049K
    ..................................................  Size: 12099K
    ..................................................  Size: 12149K
    ..................................................  Size: 12199K
    ..................................................  Size: 12249K
    ..................................................  Size: 12300K
    ..................................................  Size: 12350K
    ..................................................  Size: 12400K
    ..................................................  Size: 12450K
    ..................................................  Size: 12500K
    ..................................................  Size: 12549K
    ..................................................  Size: 12599K
    ..................................................  Size: 12649K
    ..................................................  Size: 12700K
    ..................................................  Size: 12750K
    ..................................................  Size: 12800K
    ..................................................  Size: 12850K
    ..................................................  Size: 12900K
    ..................................................  Size: 12950K
    ..................................................  Size: 13000K
    ..................................................  Size: 13050K
    ..................................................  Size: 13100K
    ..................................................  Size: 13150K
    ..................................................  Size: 13200K
    ..................................................  Size: 13249K
    ..................................................  Size: 13299K
    ..................................................  Size: 13349K
    ..................................................  Size: 13400K
    ..................................................  Size: 13450K
    ..................................................  Size: 13500K
    ..................................................  Size: 13550K
    ..................................................  Size: 13599K
    ..................................................  Size: 13650K
    ..................................................  Size: 13700K
    ..................................................  Size: 13749K
    ..................................................  Size: 13800K
    ................................................. Size of output: 13848K
Build succeeded.
build submit error = 0
Starting testing step.
Tests succeeded.
test submit error = 0
File upload submit error = 0

Enabled Packages:
-- Setting Trilinos_ENABLE_TpetraCore = ON

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

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

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

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

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

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

Build name               = PR-8804-test-Trilinos_pullrequest_clang_10.0.0-2061
Cur dir                  = /scratch/trilinos/jenkins/tr-test-9/workspace/trilinos-folder/Trilinos_pullrequest_clang_10.0.0/TFW_testing_single_configure_prototype
Source dir               = /scratch/trilinos/jenkins/tr-test-9/workspace/trilinos-folder/Trilinos_pullrequest_clang_10.0.0/Trilinos
Binary dir               = /scratch/trilinos/jenkins/tr-test-9/workspace/trilinos-folder/Trilinos_pullrequest_clang_10.0.0/pull_request_test
Parallel level           = 20
Testing Parallel level   = 4
skip_by_parts_submit     = OFF
skip_single_submit       = ON
skip_update_step         = ON
skip_upload_config_files = OFF
skip_clean_build_dir     = ON
Subproject count         = 61
Dashboard model          = Experimental
Dashboard track          = Pull Request
Running configuration:
/projects/sems/install/rhel7-x86_64/sems/utility/cmake/3.17.1/bin/cmake 
  -C "/scratch/trilinos/jenkins/tr-test-9/workspace/trilinos-folder/Trilinos_pullrequest_clang_10.0.0/Trilinos/cmake/std/PullRequestLinuxClang10.0.0TestingSettings.cmake"
  -C "/scratch/trilinos/jenkins/tr-test-9/workspace/trilinos-folder/Trilinos_pullrequest_clang_10.0.0/packageEnables.cmake"
  -DTrilinos_ENABLE_TESTS:BOOL=ON
  -DTrilinos_PARALLEL_LINK_JOBS_LIMIT:STRING=2
  -G "Ninja"
  /scratch/trilinos/jenkins/tr-test-9/workspace/trilinos-folder/Trilinos_pullrequest_clang_10.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=tr-test-9.novalocal&field2=buildname&compare2=61&value2=PR-8804-test-Trilinos_pullrequest_clang_10.0.0-2061&field3=buildstamp&compare3=61&value3=20210309-0037-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-8804-test-Trilinos_pullrequest_clang_10.0.0-2061&field2=buildstamp&compare2=61&value2=20210309-0037-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-8804-test-Trilinos_pullrequest_clang_10.0.0-2061&field2=buildstamp&compare2=61&value2=20210309-0037-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 of output: 325K
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: 850K
    ..................................................  Size: 899K
    ................... Size of output: 918K
Build succeeded.
build submit error = 0
Starting testing step.
Tests succeeded.
test submit error = 0
File upload submit error = 0

Enabled Packages:
-- Setting Trilinos_ENABLE_TpetraCore = ON

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

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

--- Change directory to /scratch/trilinos/jenkins/tr-test-9/workspace/trilinos-folder/Trilinos_pullrequest_clang_10.0.0/TFW_testing_single_configure_prototype
--- OK

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

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

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

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

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

Enabled Packages:
-- Setting Trilinos_ENABLE_TrilinosFrameworkTests = ON

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

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

--- Change directory to /scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_python_3/TFW_testing_single_configure_prototype
--- OK

--- ctest command:
--- cmd = ctest
-S
simple_testing.cmake
-Dbuild_name=PR-8804-test-Trilinos_pullrequest_python_3-4735
-Dskip_by_parts_submit=OFF
-Dskip_update_step=ON
-Ddashboard_model=Experimental
-Ddashboard_track=Pull Request
-DPARALLEL_LEVEL=29
-DTEST_PARALLEL_LEVEL=4
-Dbuild_dir=/scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_python_3/pull_request_test
-Dconfigure_script=/scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_python_3/Trilinos/cmake/std/PullRequestLinuxPython3.cmake
-Dpackage_enables=../packageEnables.cmake
-Dsubprojects_file=../package_subproject_list.cmake

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


CDash Test Results for PR# 8804.


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_8.3.0

  • Build Num: 3849
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;pkg: Tpetra
PULLREQUESTNUM 8804
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetra_8794_new
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA e2900a9
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA ab5db94

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0_serial

  • Build Num: 1416
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;pkg: Tpetra
PULLREQUESTNUM 8804
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetra_8794_new
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA e2900a9
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA ab5db94

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0_debug

  • Build Num: 1905
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;pkg: Tpetra
PULLREQUESTNUM 8804
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetra_8794_new
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA e2900a9
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA ab5db94

Build Information

Test Name: Trilinos_pullrequest_intel_17.0.1

  • Build Num: 9252
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;pkg: Tpetra
PULLREQUESTNUM 8804
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetra_8794_new
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA e2900a9
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA ab5db94

Build Information

Test Name: Trilinos_pullrequest_cuda_10.1.105

  • Build Num: 705
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;pkg: Tpetra
PULLREQUESTNUM 8804
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetra_8794_new
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA e2900a9
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA ab5db94

Build Information

Test Name: Trilinos_pullrequest_clang_10.0.0

  • Build Num: 2067
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;pkg: Tpetra
PULLREQUESTNUM 8804
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetra_8794_new
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA e2900a9
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA ab5db94

Build Information

Test Name: Trilinos_pullrequest_python_3

  • Build Num: 4741
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;pkg: Tpetra
PULLREQUESTNUM 8804
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetra_8794_new
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA e2900a9
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA ab5db94

Using Repos:

Repo: TRILINOS (trilinos/Trilinos)
  • Branch: tpetra_8794_new
  • SHA: e2900a9
  • Mode: TEST_REPO

Pull Request Author: kddevin

@trilinos-autotester
Copy link
Contributor

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

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

Pull Request Auto Testing has FAILED (click to expand)

Build Information

Test Name: Trilinos_pullrequest_gcc_8.3.0

  • Build Num: 3849
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;pkg: Tpetra
PULLREQUESTNUM 8804
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetra_8794_new
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA e2900a9
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA ab5db94

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0_serial

  • Build Num: 1416
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;pkg: Tpetra
PULLREQUESTNUM 8804
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetra_8794_new
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA e2900a9
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA ab5db94

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0_debug

  • Build Num: 1905
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;pkg: Tpetra
PULLREQUESTNUM 8804
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetra_8794_new
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA e2900a9
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA ab5db94

Build Information

Test Name: Trilinos_pullrequest_intel_17.0.1

  • Build Num: 9252
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;pkg: Tpetra
PULLREQUESTNUM 8804
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetra_8794_new
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA e2900a9
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA ab5db94

Build Information

Test Name: Trilinos_pullrequest_cuda_10.1.105

  • Build Num: 705
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;pkg: Tpetra
PULLREQUESTNUM 8804
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetra_8794_new
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA e2900a9
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA ab5db94

Build Information

Test Name: Trilinos_pullrequest_clang_10.0.0

  • Build Num: 2067
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;pkg: Tpetra
PULLREQUESTNUM 8804
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetra_8794_new
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA e2900a9
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA ab5db94

Build Information

Test Name: Trilinos_pullrequest_python_3

  • Build Num: 4741
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;pkg: Tpetra
PULLREQUESTNUM 8804
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetra_8794_new
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA e2900a9
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA ab5db94
Console Output (last 100 lines) : Trilinos_pullrequest_gcc_8.3.0 # 3849 (click to expand)

/projects/sems/install/rhel7-x86_64/sems/utility/cmake/3.17.1/bin/cmake 
  -C "/scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/Trilinos/cmake/std/PullRequestLinuxGCC8.3.0TestingSettings.cmake"
  -C "/scratch/trilinos/jenkins/ascic141/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/ascic141/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=ascic141&field2=buildname&compare2=61&value2=PR-8804-test-Trilinos_pullrequest_gcc_8.3.0-3849&field3=buildstamp&compare3=61&value3=20210309-0933-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-8804-test-Trilinos_pullrequest_gcc_8.3.0-3849&field2=buildstamp&compare2=61&value2=20210309-0933-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-8804-test-Trilinos_pullrequest_gcc_8.3.0-3849&field2=buildstamp&compare2=61&value2=20210309-0933-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 of output: 334K
configure submit error = 0
Configure suceeded.
Starting build step.
   Each symbol represents 1024 bytes of output.
    ..................................................  Size: 49K
    ..................................................  Size: 99K
    ..................................................  Size: 149K
    ..................................................  Size: 199K
    ..................................................  Size: 249K
    ..................................................  Size: 299K
    ..................................................  Size: 349K
    ..................................................  Size: 399K
    ..................................................  Size: 449K
    ..................................................  Size: 499K
    ..................................................  Size: 549K
    ..................................................  Size: 599K
    ..................................................  Size: 649K
    ..................................................  Size: 699K
    ..................................................  Size: 749K
    ..................................................  Size: 799K
    ..................................................  Size: 849K
    ..................................................  Size: 899K
    ..................................................  Size: 949K
    ..................................................  Size: 999K
    ..................................................  Size: 1049K
    ..................................................  Size: 1099K
    ..................................................  Size: 1149K
    ..................................................  Size: 1199K
    ..................................................  Size: 1249K
    ..................................................  Size: 1299K
    ..................................................  Size: 1349K
    ..................................................  Size: 1399K
    ..................................................  Size: 1449K
    ..................................................  Size: 1499K
    ..................................................  Size: 1549K
    ..................................................  Size: 1599K
    ..................................................  Size: 1649K
    .................................. Size of output: 1684K
Build succeeded.
build submit error = 0
Starting testing step.
Tests succeeded.
test submit error = 0
File upload submit error = 0

Enabled Packages:
-- Setting Trilinos_ENABLE_TpetraCore = ON

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

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

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

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

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

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

Source dir               = /scratch/trilinos/jenkins/ascic144/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_serial/Trilinos
Binary dir               = /scratch/trilinos/jenkins/ascic144/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_serial/pull_request_test
Parallel level           = 20
Testing Parallel level   = 4
skip_by_parts_submit     = OFF
skip_single_submit       = ON
skip_update_step         = ON
skip_upload_config_files = OFF
skip_clean_build_dir     = ON
Subproject count         = 61
Dashboard model          = Experimental
Dashboard track          = Pull Request
Running configuration:
/projects/sems/install/rhel7-x86_64/sems/utility/cmake/3.17.1/bin/cmake 
  -C "/scratch/trilinos/jenkins/ascic144/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_serial/Trilinos/cmake/std/PullRequestLinuxGCC7.2.0SerialTestingSettings.cmake"
  -C "/scratch/trilinos/jenkins/ascic144/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_serial/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_7.2.0_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=ascic144&field2=buildname&compare2=61&value2=PR-8804-test-Trilinos_pullrequest_gcc_7.2.0_serial-1416&field3=buildstamp&compare3=61&value3=20210309-0933-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-8804-test-Trilinos_pullrequest_gcc_7.2.0_serial-1416&field2=buildstamp&compare2=61&value2=20210309-0933-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-8804-test-Trilinos_pullrequest_gcc_7.2.0_serial-1416&field2=buildstamp&compare2=61&value2=20210309-0933-Pull Request-Experimental
Starting configure step.
   Each . represents 1024 bytes of output
    ..................................................  Size: 50K
    ..................................................  Size: 100K
    ..................................................  Size: 150K
    ..................................................  Size: 200K
    ..................................................  Size: 250K
    ................................ Size of output: 281K
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: 350K
    ..................................................  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 of output: 1067K
Build succeeded.
build submit error = 0
Starting testing step.
Tests succeeded.
test submit error = 0
File upload submit error = 0

Enabled Packages:
-- Setting Trilinos_ENABLE_TpetraCore = ON

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

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

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

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

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

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

Running configuration:
/projects/sems/install/rhel7-x86_64/sems/utility/cmake/3.17.1/bin/cmake 
  -C "/scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_debug/Trilinos/cmake/std/PullRequestLinuxGCC7.2.0DebugTestingSettings.cmake"
  -C "/scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_debug/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_debug/Trilinos
CTEST_DROP_LOCATION = /cdash/submit.php?project=Trilinos
CDash URL1 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&display=project&filtercount=3&showfilters=1&filtercombine=and&field1=site&compare1=61&value1=ascic158&field2=buildname&compare2=61&value2=PR-8804-test-Trilinos_pullrequest_gcc_7.2.0_debug-1905&field3=buildstamp&compare3=61&value3=20210309-0934-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-8804-test-Trilinos_pullrequest_gcc_7.2.0_debug-1905&field2=buildstamp&compare2=61&value2=20210309-0934-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-8804-test-Trilinos_pullrequest_gcc_7.2.0_debug-1905&field2=buildstamp&compare2=61&value2=20210309-0934-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 of output: 330K
configure submit error = 0
Configure suceeded.
Starting build step.
   Each symbol represents 1024 bytes of output.
    ..................................................  Size: 49K
    ..................................................  Size: 99K
    ..................................................  Size: 149K
    ..................................................  Size: 199K
    ..................................................  Size: 250K
    ..................................................  Size: 299K
    ..................................................  Size: 349K
    ..................................................  Size: 399K
    ..................................................  Size: 449K
    ..................................................  Size: 499K
    ..................................................  Size: 549K
    ..................................................  Size: 599K
    ..................................................  Size: 649K
    ..................................................  Size: 699K
    ..................................................  Size: 749K
    ..................................................  Size: 799K
    ..................................................  Size: 849K
    ..................................................  Size: 899K
    ..................................................  Size: 949K
    ..................................................  Size: 999K
    ..................................................  Size: 1049K
    ..................................................  Size: 1099K
    ..................................................  Size: 1149K
    ..................................................  Size: 1199K
    ..................................................  Size: 1249K
    ..................................................  Size: 1299K
    ..................................................  Size: 1349K
    ..................................................  Size: 1399K
    .................... Size of output: 1420K
Build succeeded.
build submit error = 0
Starting testing step.
CMake Error at /scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_debug/TFW_testing_single_configure_prototype/simple_testing.cmake:218 (message):
  Test failed with error -1

test submit error = 0
File upload submit error = 0

Enabled Packages:
-- Setting Trilinos_ENABLE_TpetraCore = ON

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

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

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

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

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

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

    ..................................................  Size: 10700K
    ..................................................  Size: 10750K
    ..................................................  Size: 10800K
    ..................................................  Size: 10850K
    ..................................................  Size: 10900K
    ..................................................  Size: 10950K
    ..................................................  Size: 10999K
    ..................................................  Size: 11049K
    ..................................................  Size: 11099K
    ..................................................  Size: 11149K
    ..................................................  Size: 11199K
    ..................................................  Size: 11249K
    ..................................................  Size: 11300K
    ..................................................  Size: 11350K
    ..................................................  Size: 11399K
    ..................................................  Size: 11449K
    ..................................................  Size: 11499K
    ..................................................  Size: 11549K
    ..................................................  Size: 11599K
    ..................................................  Size: 11650K
    ..................................................  Size: 11700K
    ..................................................  Size: 11750K
    ..................................................  Size: 11800K
    ..................................................  Size: 11850K
    ..................................................  Size: 11900K
    ..................................................  Size: 11950K
    ..................................................  Size: 12000K
    ..................................................  Size: 12050K
    ..................................................  Size: 12100K
    ..................................................  Size: 12150K
    ..................................................  Size: 12200K
    ..................................................  Size: 12249K
    ..................................................  Size: 12299K
    ..................................................  Size: 12349K
    ..................................................  Size: 12399K
    ..................................................  Size: 12450K
    ..................................................  Size: 12500K
    ..................................................  Size: 12550K
    ..................................................  Size: 12600K
    ..................................................  Size: 12649K
    ..................................................  Size: 12699K
    ..................................................  Size: 12749K
    ..................................................  Size: 12799K
    ..................................................  Size: 12849K
    ..................................................  Size: 12899K
    ..................................................  Size: 12949K
    ..................................................  Size: 12999K
    ..................................................  Size: 13049K
    ..................................................  Size: 13099K
    ..................................................  Size: 13149K
    ..................................................  Size: 13200K
    ..................................................  Size: 13250K
    ..................................................  Size: 13299K
    ..................................................  Size: 13349K
    ..................................................  Size: 13399K
    ..................................................  Size: 13449K
    ..................................................  Size: 13499K
    ....................... Size of output: 13522K
Build succeeded.
build submit error = 0
Starting testing step.
Tests succeeded.
test submit error = 0
File upload submit error = 0

Enabled Packages:
-- Setting Trilinos_ENABLE_TpetraCore = ON

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

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

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

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

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

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

    ..................................................  Size: 11450K
    ..................................................  Size: 11500K
    ..................................................  Size: 11550K
    ..................................................  Size: 11600K
    ..................................................  Size: 11649K
    ..................................................  Size: 11699K
    ..................................................  Size: 11749K
    ..................................................  Size: 11800K
    ..................................................  Size: 11850K
    ..................................................  Size: 11900K
    ..................................................  Size: 11950K
    ..................................................  Size: 12000K
    ..................................................  Size: 12050K
    ..................................................  Size: 12100K
    ..................................................  Size: 12150K
    ..................................................  Size: 12200K
    ..................................................  Size: 12250K
    ..................................................  Size: 12300K
    ..................................................  Size: 12349K
    ..................................................  Size: 12399K
    ..................................................  Size: 12449K
    ..................................................  Size: 12499K
    ..................................................  Size: 12550K
    ..................................................  Size: 12600K
    ..................................................  Size: 12649K
    ..................................................  Size: 12699K
    ..................................................  Size: 12749K
    ..................................................  Size: 12800K
    ..................................................  Size: 12849K
    ..................................................  Size: 12899K
    ..................................................  Size: 12949K
    ..................................................  Size: 12999K
    ..................................................  Size: 13049K
    ..................................................  Size: 13099K
    ..................................................  Size: 13149K
    ..................................................  Size: 13199K
    ..................................................  Size: 13250K
    ..................................................  Size: 13300K
    ..................................................  Size: 13350K
    ..................................................  Size: 13400K
    ..................................................  Size: 13450K
    ..................................................  Size: 13500K
    ..................................................  Size: 13549K
    ..................................................  Size: 13599K
    ..................................................  Size: 13649K
    ..................................................  Size: 13700K
    ..................................................  Size: 13750K
    ..................................................  Size: 13800K
    ..................................................  Size: 13850K
    ..................................................  Size: 13900K
    ..................................................  Size: 13949K
    ..................................................  Size: 14000K
    ..................................................  Size: 14049K
    ..................................................  Size: 14099K
    ..................................................  Size: 14149K
    ..................................................  Size: 14199K
    ..................................................  Size: 14249K
    .................... Size of output: 14270K
Build succeeded.
build submit error = 0
Starting testing step.
Tests succeeded.
test submit error = 0
File upload submit error = 0

Enabled Packages:
-- Setting Trilinos_ENABLE_TpetraCore = ON

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

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

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

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

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

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

Cur dir                  = /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_clang_10.0.0/TFW_testing_single_configure_prototype
Source dir               = /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_clang_10.0.0/Trilinos
Binary dir               = /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_clang_10.0.0/pull_request_test
Parallel level           = 29
Testing Parallel level   = 4
skip_by_parts_submit     = OFF
skip_single_submit       = ON
skip_update_step         = ON
skip_upload_config_files = OFF
skip_clean_build_dir     = ON
Subproject count         = 61
Dashboard model          = Experimental
Dashboard track          = Pull Request
Running configuration:
/projects/sems/install/rhel7-x86_64/sems/utility/cmake/3.17.1/bin/cmake 
  -C "/scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_clang_10.0.0/Trilinos/cmake/std/PullRequestLinuxClang10.0.0TestingSettings.cmake"
  -C "/scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_clang_10.0.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_clang_10.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=ascic166&field2=buildname&compare2=61&value2=PR-8804-test-Trilinos_pullrequest_clang_10.0.0-2067&field3=buildstamp&compare3=61&value3=20210309-0934-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-8804-test-Trilinos_pullrequest_clang_10.0.0-2067&field2=buildstamp&compare2=61&value2=20210309-0934-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-8804-test-Trilinos_pullrequest_clang_10.0.0-2067&field2=buildstamp&compare2=61&value2=20210309-0934-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 of output: 327K
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 of output: 992K
Build succeeded.
build submit error = 0
Starting testing step.
Tests succeeded.
test submit error = 0
File upload submit error = 0

Enabled Packages:
-- Setting Trilinos_ENABLE_TpetraCore = ON

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

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

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

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

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

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

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

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

Enabled Packages:
-- Setting Trilinos_ENABLE_TrilinosFrameworkTests = ON

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

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

--- Change directory to /scratch/trilinos/jenkins/ascic142/workspace/trilinos-folder/Trilinos_pullrequest_python_3/TFW_testing_single_configure_prototype
--- OK

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

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


CDash Test Results for PR# 8804.


Wiki: How to Reproduce PR Testing Builds and Errors.

Lowering the upper bound of testing to fit run into PR testing time.
Threshold is close to 400, so lowering upper bound of testing should be OK.
@kddevin kddevin added the AT: RETEST Causes the PR autotester to run a new round of PR tests on the next iteration label Mar 9, 2021
@trilinos-autotester
Copy link
Contributor

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

@trilinos-autotester
Copy link
Contributor

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

@trilinos-autotester
Copy link
Contributor

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

Pull Request Auto Testing STARTING (click to expand)

Build Information

Test Name: Trilinos_pullrequest_gcc_8.3.0

  • Build Num: 3868
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;AT: RETEST;pkg: Tpetra
PULLREQUESTNUM 8804
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetra_8794_new
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA b0fcac5
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA ab5db94

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0_serial

  • Build Num: 1431
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;AT: RETEST;pkg: Tpetra
PULLREQUESTNUM 8804
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetra_8794_new
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA b0fcac5
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA ab5db94

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0_debug

  • Build Num: 1919
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;AT: RETEST;pkg: Tpetra
PULLREQUESTNUM 8804
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetra_8794_new
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA b0fcac5
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA ab5db94

Build Information

Test Name: Trilinos_pullrequest_intel_17.0.1

  • Build Num: 9266
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;AT: RETEST;pkg: Tpetra
PULLREQUESTNUM 8804
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetra_8794_new
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA b0fcac5
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA ab5db94

Build Information

Test Name: Trilinos_pullrequest_cuda_10.1.105

  • Build Num: 719
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;AT: RETEST;pkg: Tpetra
PULLREQUESTNUM 8804
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetra_8794_new
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA b0fcac5
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA ab5db94

Build Information

Test Name: Trilinos_pullrequest_clang_10.0.0

  • Build Num: 2081
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;AT: RETEST;pkg: Tpetra
PULLREQUESTNUM 8804
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetra_8794_new
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA b0fcac5
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA ab5db94

Build Information

Test Name: Trilinos_pullrequest_python_3

  • Build Num: 4753
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;AT: RETEST;pkg: Tpetra
PULLREQUESTNUM 8804
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetra_8794_new
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA b0fcac5
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA ab5db94

Using Repos:

Repo: TRILINOS (trilinos/Trilinos)
  • Branch: tpetra_8794_new
  • SHA: b0fcac5
  • Mode: TEST_REPO

Pull Request Author: kddevin

@trilinos-autotester
Copy link
Contributor

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

Pull Request Auto Testing has PASSED (click to expand)

Build Information

Test Name: Trilinos_pullrequest_gcc_8.3.0

  • Build Num: 3868
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;AT: RETEST;pkg: Tpetra
PULLREQUESTNUM 8804
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetra_8794_new
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA b0fcac5
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA ab5db94

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0_serial

  • Build Num: 1431
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;AT: RETEST;pkg: Tpetra
PULLREQUESTNUM 8804
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetra_8794_new
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA b0fcac5
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA ab5db94

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0_debug

  • Build Num: 1919
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;AT: RETEST;pkg: Tpetra
PULLREQUESTNUM 8804
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetra_8794_new
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA b0fcac5
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA ab5db94

Build Information

Test Name: Trilinos_pullrequest_intel_17.0.1

  • Build Num: 9266
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;AT: RETEST;pkg: Tpetra
PULLREQUESTNUM 8804
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetra_8794_new
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA b0fcac5
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA ab5db94

Build Information

Test Name: Trilinos_pullrequest_cuda_10.1.105

  • Build Num: 719
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;AT: RETEST;pkg: Tpetra
PULLREQUESTNUM 8804
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetra_8794_new
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA b0fcac5
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA ab5db94

Build Information

Test Name: Trilinos_pullrequest_clang_10.0.0

  • Build Num: 2081
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;AT: RETEST;pkg: Tpetra
PULLREQUESTNUM 8804
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetra_8794_new
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA b0fcac5
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA ab5db94

Build Information

Test Name: Trilinos_pullrequest_python_3

  • Build Num: 4753
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;AT: RETEST;pkg: Tpetra
PULLREQUESTNUM 8804
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH tpetra_8794_new
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA b0fcac5
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA ab5db94


CDash Test Results for PR# 8804.

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

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

@trilinos-autotester
Copy link
Contributor

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

@trilinos-autotester trilinos-autotester merged commit c946373 into develop Mar 10, 2021
@trilinos-autotester
Copy link
Contributor

Merge on Pull Request# 8804: 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 Mar 10, 2021
jmgate pushed a commit to tcad-charon/Trilinos that referenced this pull request Mar 11, 2021
…s:develop' (8d5b058).

* trilinos-develop:
  Intrepid2: UVM-free MonolothicExecutable Tests (trilinos#8852)
  Piro: add 'Optimizer Iteration Number' to Piro_ThyraProductME
  tpetra:  trilinos#8794 trilinos#8804  test to pick threshold timed out in PR testing. Lowering the upper bound of testing to fit run into PR testing time. Threshold is close to 400, so lowering upper bound of testing should be OK.
  Piro: move the Enable Explicit Matrix Transpose option to the app parameter list
  Piro: print response even for iteration 0
  std: -> std::
  Piro: print ROL headers
  Piro: Use observer to observe the response, the solution, and the parameters
  Piro: Add ThyraProductME_Constraint and Objective
  Tempus: Add Doxygen to SolutionHistory Functions.
  Piro: add the 'Enable Explicit Matrix Transpose' option to Piro_SteadyStateSolver_Def.hpp
  Tempus: Remove ParameterList from SolutionHistory
  tpetra:  better test for PR trilinos#8804 for trilinos#8794; insert indices in batches with duplicates
  tpetra:  bug fix in PR trilinos#8804 for trilinos#8794 next commit will have enhanced test
  tpetra:  increase size of problem so that new code is actually triggered trilinos#8794
  tpetra:  added hash lookup when searching indices of dense rows trilinos#8794 tpetra:  put test into Teuchos test harness trilinos#8794 tpetra:  removed untested, unused function tpetra:  added comments trilinos#8794 tpetra:  small test to determine appropriate threshold for trilinos#8794
  This will resolve trilinos#8756  by changing CXX_FLAGS
searhein added a commit to searhein/Trilinos that referenced this pull request Mar 11, 2021
…Manager

* 'develop' of ssh://github.com/trilinos/Trilinos: (31 commits)
  Remove older and more complex buildAgainstTrilinos example (trilinos#8498)
  Update to point to demos/simpleBuildAgainstTrilinos (trilinos#8498)
  Add explicit COMPONENTS (trilinos#8498)
  Simpler one-directory build example using Trilinos (trilinos#8498)
  Intrepid2: UVM-free MonolothicExecutable Tests (trilinos#8852)
  Link to local INSTALL.rst on same branch (trilinos#8489)
  Update INSTALL.rst with link to demos/buildAgainstTrilinos (trilinos#8498)
  Eliminate duplication in tests and set PROCESSORS property (trilinos#8498)
  Modernize for newer CMake and fix compile error (trilinos#8498)
  Piro: add 'Optimizer Iteration Number' to Piro_ThyraProductME
  Tpetra:  remove UVM dependence from test (trilinos#8830)
  tpetra:  trilinos#8794 trilinos#8804  test to pick threshold timed out in PR testing. Lowering the upper bound of testing to fit run into PR testing time. Threshold is close to 400, so lowering upper bound of testing should be OK.
  Correct gcc module loaded for tlcc2 builds
  MueLu: Add phase2a agg factor to param list for hybrid aggregation
  Piro: move the Enable Explicit Matrix Transpose option to the app parameter list
  Piro: print response even for iteration 0
  Rythmos: Null-Test-Failing on Astra.
  Piro: print ROL headers
  Piro: Use observer to observe the response, the solution, and the parameters
  Piro: Add ThyraProductME_Constraint and Objective
  ...
jmgate pushed a commit to tcad-charon/Trilinos that referenced this pull request Mar 12, 2021
…s:develop' (8d5b058).

* trilinos-develop: (27 commits)
  MiniEM: Enable reuse, test it
  Remove older and more complex buildAgainstTrilinos example (trilinos#8498)
  Update to point to demos/simpleBuildAgainstTrilinos (trilinos#8498)
  Add explicit COMPONENTS (trilinos#8498)
  Simpler one-directory build example using Trilinos (trilinos#8498)
  Intrepid2: UVM-free MonolothicExecutable Tests (trilinos#8852)
  Link to local INSTALL.rst on same branch (trilinos#8489)
  Update INSTALL.rst with link to demos/buildAgainstTrilinos (trilinos#8498)
  Eliminate duplication in tests and set PROCESSORS property (trilinos#8498)
  Modernize for newer CMake and fix compile error (trilinos#8498)
  Piro: add 'Optimizer Iteration Number' to Piro_ThyraProductME
  tpetra:  trilinos#8794 trilinos#8804  test to pick threshold timed out in PR testing. Lowering the upper bound of testing to fit run into PR testing time. Threshold is close to 400, so lowering upper bound of testing should be OK.
  Piro: move the Enable Explicit Matrix Transpose option to the app parameter list
  Piro: print response even for iteration 0
  std: -> std::
  Piro: print ROL headers
  Piro: Use observer to observe the response, the solution, and the parameters
  Piro: Add ThyraProductME_Constraint and Objective
  Tempus: Remove Doxygen dependence on algpseudocode.
  Tempus: Add Doxygen to SolutionHistory Functions.
  ...
jmgate pushed a commit to tcad-charon/Trilinos that referenced this pull request Mar 12, 2021
…s:develop' (8d5b058).

* trilinos-develop: (27 commits)
  MiniEM: Enable reuse, test it
  Remove older and more complex buildAgainstTrilinos example (trilinos#8498)
  Update to point to demos/simpleBuildAgainstTrilinos (trilinos#8498)
  Add explicit COMPONENTS (trilinos#8498)
  Simpler one-directory build example using Trilinos (trilinos#8498)
  Intrepid2: UVM-free MonolothicExecutable Tests (trilinos#8852)
  Link to local INSTALL.rst on same branch (trilinos#8489)
  Update INSTALL.rst with link to demos/buildAgainstTrilinos (trilinos#8498)
  Eliminate duplication in tests and set PROCESSORS property (trilinos#8498)
  Modernize for newer CMake and fix compile error (trilinos#8498)
  Piro: add 'Optimizer Iteration Number' to Piro_ThyraProductME
  tpetra:  trilinos#8794 trilinos#8804  test to pick threshold timed out in PR testing. Lowering the upper bound of testing to fit run into PR testing time. Threshold is close to 400, so lowering upper bound of testing should be OK.
  Piro: move the Enable Explicit Matrix Transpose option to the app parameter list
  Piro: print response even for iteration 0
  std: -> std::
  Piro: print ROL headers
  Piro: Use observer to observe the response, the solution, and the parameters
  Piro: Add ThyraProductME_Constraint and Objective
  Tempus: Remove Doxygen dependence on algpseudocode.
  Tempus: Add Doxygen to SolutionHistory Functions.
  ...
seamill pushed a commit to seamill/Trilinos that referenced this pull request Jul 28, 2021
…develop' (51336fe).

* potential-trilinos-develop: (57 commits)
  Geminga: Another attempt to get valgrind suppressions working
  STK: Snapshot 03-12-21 10:28
  MiniEM: Enable reuse, test it
  Remove older and more complex buildAgainstTrilinos example (trilinos#8498)
  Update to point to demos/simpleBuildAgainstTrilinos (trilinos#8498)
  Add explicit COMPONENTS (trilinos#8498)
  Simpler one-directory build example using Trilinos (trilinos#8498)
  Intrepid2: UVM-free MonolothicExecutable Tests (trilinos#8852)
  Link to local INSTALL.rst on same branch (trilinos#8489)
  Update INSTALL.rst with link to demos/buildAgainstTrilinos (trilinos#8498)
  Eliminate duplication in tests and set PROCESSORS property (trilinos#8498)
  Modernize for newer CMake and fix compile error (trilinos#8498)
  Piro: add 'Optimizer Iteration Number' to Piro_ThyraProductME
  Tpetra:  remove UVM dependence from test (trilinos#8830)
  tpetra:  trilinos#8794 trilinos#8804  test to pick threshold timed out in PR testing. Lowering the upper bound of testing to fit run into PR testing time. Threshold is close to 400, so lowering upper bound of testing should be OK.
  Correct gcc module loaded for tlcc2 builds
  MueLu: Add phase2a agg factor to param list for hybrid aggregation
  Piro: move the Enable Explicit Matrix Transpose option to the app parameter list
  Piro: print response even for iteration 0
  std: -> std::
  ...
@ccober6 ccober6 deleted the tpetra_8794_new branch March 6, 2024 17:20
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants