Skip to content

Latest commit

 

History

History
22 lines (21 loc) · 399 Bytes

README.md

File metadata and controls

22 lines (21 loc) · 399 Bytes

Jenkinsfile (Declarative Pipeline) pipeline { agent any

stages {
    stage('Build') {
        steps {
            echo 'Building..'
        }
    }
    stage('Test') {
        steps {
            echo 'Testing..'
        }
    }
    stage('Deploy') {
        steps {
            echo 'Deploying. KADER...'
        }
    }
}

}