Details
-
Bug
-
Status: Closed (View Workflow)
-
Major
-
Resolution: Fixed
-
None
-
-
Declarative - 1.2
Description
given the following pipeline, I would expect the java version "1.8" to be printed, but this is not the case - instead I get "1.7"; the default version of the underlying system.
pipeline { agent none tools { jdk "Oracle JDK 1.8 (latest)" } stages { stage ('prepare') { agent any steps { sh "java -version" } } } }
but this one works as:
pipeline { agent any tools { jdk "Oracle JDK 1.8 (latest)" } stages { stage ('prepare') { steps { sh "java -version" } } } }
...my expectation is, that the tools on top scope are installed on all agents.
Attachments
Issue Links
- links to
Activity
Field | Original Value | New Value |
---|---|---|
Status | Open [ 1 ] | In Progress [ 3 ] |
Status | In Progress [ 3 ] | In Review [ 10005 ] |
Remote Link | This issue links to "PR #168 (Web Link)" [ 17218 ] |
Epic Link |
|
Sprint | Declarative - 1.2 [ 366 ] |
Rank | Ranked higher |
Rank | Ranked higher |
Resolution | Fixed [ 1 ] | |
Status | In Review [ 10005 ] | Resolved [ 5 ] |
Status | Resolved [ 5 ] | Closed [ 6 ] |