Individual Build Step Status

25 views
Skip to first unread message

TheGrovesy

unread,
Oct 25, 2017, 2:44:24 AM10/25/17
to Jenkins Users
I have a single Jenkins item which gets checked out and then has 6 different build steps for different build variants. On the main Jenkins page this is shown as a single item status. It would be much more useful if this view showed each build step with its own status so we can more easily see which steps were successful, unstable and failed. Is there a plugin for this? Or should I just create seperate items for each stage (i.e. Checkout, Step1, Step2, Step3, etc)?

Robert Hales

unread,
Oct 25, 2017, 11:02:25 AM10/25/17
to Jenkins Users
It is called Pipeline

itchymuzzle

unread,
Oct 26, 2017, 10:10:42 AM10/26/17
to Jenkins Users

Maybe something like this?

 

#! /usr/bin/env groovy
pipeline {
    agent any
    stages {
        stage ('Checkout') {
            steps {
                }
        }
        stage('Step1') {
            steps {
            }
        }
        stage('Step2') {
            steps {
            }
        }

Reply all
Reply to author
Forward
0 new messages