Run summary page breaks if table used in action

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

XMLWordPrintable

      https://github.com/jenkinsci/workflow-job-plugin/blob/8041a722e4400ffeafd978fc4b6757014fa19bdb/src/main/resources/org/jenkinsci/plugins/workflow/job/WorkflowRun/index.jelly#L52

      https://github.com/jenkinsci/jenkins/blob/master/core/src/main/resources/hudson/model/AbstractBuild/index.jelly#L59

      The screenshot can be reproduced with sauce-ondemand and junit plugins and the below pipeline (although it requires a sauce labs account):

      node {
          stage('Checkout') {
              git 'https://github.com/timja/demo-java.git'
          }
          
          stage('Build') {
              dir('on-boarding-modules/testng') {
                  sh 'mvn compile'
              }
          }
          
          stage('Test') {
              dir('on-boarding-modules/testng') {
                  sauce('reform_tunnel') {
                      sauceconnect(useGeneratedTunnelIdentifier: true, verboseLogging: true) {
                          sh 'mvn test -Dmaven.test.failure.ignore=true'
                      }
                  }
                  junit 'target/**/TEST-*.xml'
                  saucePublisher()
              }
          }
      }
      

      The table layout needs switching to div or something more appropriate in both core and pipeline

            Assignee:
            Tim Jacomb
            Reporter:
            Tim Jacomb
            Archiver:
            Jenkins Service Account

              Created:
              Updated:
              Resolved:
              Archived: