pull from jenkinsfile

This commit is contained in:
Maharshi Patel 2021-01-11 07:58:42 -08:00
parent 847142e5c6
commit 6203805f62

7
Jenkinsfile vendored
View file

@ -24,6 +24,13 @@ pipeline {
// START : Stages // START : Stages
///////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////
stages { stages {
stage ('clone git repository') {
steps{
script {
checkout([$class: 'GitSCM', branches: [[name: '*/master']], doGenerateSubmoduleConfigurations: false, extensions: [], submoduleCfg: [], userRemoteConfigs: [[url: 'https://github.com/mnpatel0611/spring-petclinic']]])
}
}
}
stage('build started') { stage('build started') {
steps { steps {
echo "//////////////// build <<< ${env.BUILD_ID} >>> started ////////////////////" echo "//////////////// build <<< ${env.BUILD_ID} >>> started ////////////////////"