Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Data table #7

Open
wants to merge 4 commits into
base: master
Choose a base branch
from

Conversation

karthikjayaraman80
Copy link

Creating a rich table using data-table plugin

karthikjayaraman80 and others added 4 commits September 10, 2020 21:38
Consider a job that deploys to multiple environments. The View only shows the details of the first environment. The change enables all the environment deployments for a single build.

Sample Jenkins pipeline that deploys to multiple environments:
pipeline {
    agent any
    stages {
        stage('Deploy to DEV') {
            steps {
                input message: 'Deploy to DEV'
            addDeployToDashboard(env: 'DEV', buildNumber: "$BUILD_NUMBER")
            }

        }

        stage('Deploy to QA') {
            steps {
                input message: 'Deploy to QA'
            addDeployToDashboard(env: 'QA', buildNumber: "$BUILD_NUMBER")
            }

        }

        stage('Deploy to PROD') {
            steps {
                input message: 'Deploy to PROD'
            addDeployToDashboard(env: 'PROD', buildNumber: "$BUILD_NUMBER")
            }

        }
    }
}

Signed-off-by: Karthik Jayaraman <kjayaraman@gmail.com>
Signed-off-by: Karthik Jayaraman <kjayaraman@gmail.com>
Signed-off-by: Karthik Jayaraman <kjayaraman@gmail.com>
Signed-off-by: Karthik Jayaraman <kjayaraman@gmail.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant