Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[jakartaee-tck-dev] Git clone

Hi,

I started the TCK build job on Jenkins 3 times today and see the same failure [1] each time.  The [1] console shows failure:

"
hudson.plugins.git.GitException: Command "git checkout -f 5b126670c92e6ab800d35100ad1dfa2a4488daa7" returned status code 137
"

According to [2], this error may mean that we need more memory.  I am thinking that we could try increasing the "jnlp" memory [3], which uses up to -Xmx2048m of memory but doesn't define its memory or cpu limits (so will be using the kubernetes defaults).

Perhaps we could try setting memory for jnlp, to 2gb (or a little higher):

    resources: 
     limits:
       memory: "2Gi"
       cpu: "0.5"

Scott

[1] https://ci.eclipse.org/jakartaee-tck/job/jakartaee-tck/job/master/570/console
[2] https://stackoverflow.com/questions/53251117/jenkins-error-error-cloning-remote-repo-origin
[3] https://github.com/eclipse-ee4j/jakartaee-tck/blob/master/Jenkinsfile#L127


Back to the top