Details
-
Bug
-
Status: Resolved (View Workflow)
-
Blocker
-
Resolution: Duplicate
-
Jenkins 2.46.3
Plugin Pipeline: Groovy (workflow-cps) version 2.33
Description
After updating the plugin "Pipeline: Groovy" (ID:workflow-cps) from version 2.32 to 2.33 the jobs using declarative pipeline fail.
A pipeline job configured with the following script (not from SCM):
pipeline{ agent any stages{ stage('Step A'){ steps{ echo 'This is step A' } } } }
fails and gives the following error:
java.lang.StackOverflowError
Complete output attached in this file: jenkinsOutput.txt
Attachments
Issue Links
- duplicates
-
JENKINS-44578 StackOverflowError in CpsTransformer running Declarative on JVMs with small -Xss in workflow-cps 2.33
-
- Resolved
-
Activity
Field | Original Value | New Value |
---|---|---|
Summary | StackOverflowError with Delcratative Pipeline | StackOverflowError with Declarative Pipeline |
Environment |
Jenkins 2.46.3 Plugin Pipeline: Groovy (workflow-cps) |
Jenkins 2.46.3 Plugin Pipeline: Groovy (workflow-cps) version 2.33 |
Description |
After updating the plugin "Pipeline: Groovy" (ID:workflow-cps) from version 2.32 to 2.33 the jobs using declarative pipeline fail. A pipeline job configured with the following script (not from SCM): {code:java} pipeline{ agent any stages{ stage('Step A'){ steps{ echo 'This is step A' } } } }{code} fails and gives the following error: {code:java} java.lang.StackOverflowError {code} Complete output attached in this file: [^jenkinsOutput.txt] |
After updating the plugin "Pipeline: Groovy" (ID:workflow-cps) from version 2.32 to 2.33 the jobs using declarative pipeline fail. A pipeline job configured with the following script (not from SCM): {code:java} pipeline{ agent any stages{ stage('Step A'){ steps{ echo 'This is step A' } } } }{code} fails and gives the following error: {code:java} java.lang.StackOverflowError {code} Complete output attached in this file: [^jenkinsOutput.txt] |
Link |
This issue duplicates |
Resolution | Duplicate [ 3 ] | |
Status | Open [ 1 ] | Resolved [ 5 ] |
I think it's the same issue as
JENKINS-44578