Details
-
Improvement
-
Status: Closed (View Workflow)
-
Major
-
Resolution: Fixed
-
None
-
1.1.1
Description
On Declarative 1.1.1, with this Pipeline, I get an error:
repo: https://github.com/bitwiseman/hermann/
branch: issue/blue-ocean-editor/env-order
pipeline { agent any environment { test2 = "value2" test3 = "${test2}" test = "${test2 + test3}" } stages { stage('Install') { steps { sh 'echo "${test}"' } } } }
"groovy.lang.MissingPropertyException: No such property: test2 for class: groovy.lang.Binding"
This also errors the same way:
pipeline { agent any environment { test = "${test2 + test3}" test2 = "value2" test3 = "${test2}" } stages { stage('Install') { steps { sh 'echo "${test}"' } } } }
I'd expect the second example to error, due to out-of-order assignment. If this too can be fixed, that'd be fine, too. But the simple sequential evaluation of show in the first example should always work.
Attachments
Issue Links
- relates to
-
JENKINS-43008 Reorder environment variables
-
- Open
-
- links to
Activity
Field | Original Value | New Value |
---|---|---|
Link | This issue relates to JENKINS-43008 [ JENKINS-43008 ] |
Description |
On Declarative 1.1.1, with this Pipeline, I get an error: repo: https://github.com/bitwiseman/hermann/ branch: issue/blue-ocean-editor/env-order {code} pipeline { agent any environment { test2 = "value2" test3 = "${test2}" test = "${test2 + test3}" } stages { stage('Install') { steps { sh 'echo "${test}"' } } } } {code} "groovy.lang.MissingPropertyException: No such property: test2 for class: groovy.lang.Binding" This also errors the same way: {code} pipeline { agent any environment { test = "${test2 + test3}" test2 = "value2" test3 = "${test2}" } stages { stage('Install') { steps { sh 'echo "${test}"' } } } } {code} I'd expect the second example to error, due to out-of-order assignment. If this too can be fixed, that'd be fine, too. But the simple sequential evaluation of show in the first example should always work. |
Status | Open [ 1 ] | In Progress [ 3 ] |
Status | In Progress [ 3 ] | In Review [ 10005 ] |
Remote Link | This issue links to "PR #147 (Web Link)" [ 15826 ] |
Resolution | Fixed [ 1 ] | |
Status | In Review [ 10005 ] | Resolved [ 5 ] |
Status | Resolved [ 5 ] | Closed [ 6 ] |
This ends up getting pulled along as part of https://github.com/jenkinsci/pipeline-model-definition-plugin/pull/147