mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-07-22 15:25:49 +00:00
pull from jenkinsfile
This commit is contained in:
parent
847142e5c6
commit
6203805f62
1 changed files with 7 additions and 0 deletions
7
Jenkinsfile
vendored
7
Jenkinsfile
vendored
|
@ -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 ////////////////////"
|
||||||
|
|
Loading…
Reference in a new issue