Skip to content

Example Pipeline scirpt

Somkiat Puisungnoen edited this page Jan 5, 2021 · 1 revision
node {
    stage('Pull code') {     
    }
    stage('Compile') {   
    }
    stage('SonarQube') {  
    }
    stage('Test') {  
    }
    stage('Package') {   
    }
    stage('Upload') {  
    }
    stage('Deploy') {   
    }
    stage('final testing') {
        parallel Chrome: {
            stage ('Chrome'){
            }
        }, Firefox: {
            stage ('Firefox'){
            }
        }, IE: {
            stage ('IE'){
            }
        }
    }
    stage('Notify') {
    }
}
Clone this wiki locally