Uploaded image for project: 'Jenkins'
  1. Jenkins
  2. JENKINS-65033

Run summary page breaks if table used in action

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

            timja Tim Jacomb
            timja Tim Jacomb
            Votes:
            0 Vote for this issue
            Watchers:
            2 Start watching this issue

              Created:
              Updated:
              Resolved: