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

Blue Ocean mark failed job as success and failed on tests without error messages

XMLWordPrintable

       I have next pipeline:

      pipelines {
        validations {
          steps {
            '0' {
              name = 'Download Project Repository'
              groovySource = 'scripts/Stages.groovy'
              function = 'cloneProjectRepo'
            }
            '1' {
              parallel {
                '1' {
                  name = 'Title'
                  groovySource = 'scripts/Validation.groovy'
                  function = 'title'
                }
                '2' {
                  name = 'Jira'
                  groovySource = 'scripts/Validation.groovy'
                  function = 'jira'
                }
                '3' {
                  name = 'Sonar'
                  groovySource = 'scripts/Validation.groovy'
                  function = 'sonar'
                }
              }
            }
            '2' {
              name = 'Tests'
              groovySource = 'scripts/Validation.groovy'
              function = 'test'
            }
          }
          always {
            '1' {
              name = 'Cleanup Workspace'
              groovySource = 'scripts/Stages.groovy'
              function = 'getWsCleanupClosure'
            }
          }
        }
      }
      
      
      

      Blue Ocean mark failed job as success and failed on tests without error messages

       

       

        1. Screenshot BlueOcean.png
          708 kB
          Igor Solovko
        2. Screenshot BlueOcean.png
          708 kB
          Igor Solovko

            Unassigned Unassigned
            igor_solovko Igor Solovko
            Votes:
            0 Vote for this issue
            Watchers:
            1 Start watching this issue

              Created:
              Updated: