Pipeline bat stuck on Windows Server when mixed agents used

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

XMLWordPrintable

      Hi,

      We have our Jenkins master in Kubernetes cluster on Linux.

      We created windows agent and connected it to master.

      Declarative pipeline is used and problems occurs with definition below:

       pipeline {
          agent {
              kubernetes {
                  label 'worker'
                  defaultContainer 'jnlp'
                  inheritFrom 'jnlp-custom'
              }
          }
          options { 
              timestamps()
              skipStagesAfterUnstable()
              }
          triggers {
              pollSCM('')
          }
          stages {
              stage("build windows"){
                  agent {
                      label "windows"
                  }
                  when {
                      branch 'windows'
                  }
                  steps{
                      bat "ping 127.0.0.1"
                  }
              }
          }
      
      } 
      

      Code is correctly checkout to workspace on windows agent, but then job hangs indefinitely on:

      Running batch script
      

      Problem does not occur when we change agent to none:

      pipeline {
          agent none
          options { 
              timestamps()
              skipStagesAfterUnstable()
              }
          triggers {
              pollSCM('')
          }
          stages {
              stage("build windows"){
                  agent {
                      label "windows"
                  }
                  when {
                      branch 'windows'
                  }
                  steps{
                      bat "ping 127.0.0.1"
                  }
              }
          }
      
      } 
      

       

            Assignee:
            Unassigned
            Reporter:
            Adrian Wawrzak
            Archiver:
            Jenkins Service Account

              Created:
              Updated:
              Archived: