default tools not installed on agent

This issue is archived. You can view it, but you can't modify it. Learn more

XMLWordPrintable

      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.

            Assignee:
            Andrew Bayer
            Reporter:
            Dominik Bartholdi
            Archiver:
            Jenkins Service Account

              Created:
              Updated:
              Resolved:
              Archived: