mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-07-25 08:35:49 +00:00
triggers
This commit is contained in:
parent
ef3b9e882c
commit
4f8d49bbf2
1 changed files with 16 additions and 13 deletions
29
Jenkinsfile
vendored
29
Jenkinsfile
vendored
|
@ -1,15 +1,18 @@
|
||||||
pipeline {
|
pipeline {
|
||||||
agent {label 'MASTER'}
|
agent {label 'MASTER'}
|
||||||
stages {
|
triggers {
|
||||||
stage('scm'){
|
upstream(upstreamProjects: 'dummy', threshold: hudson.model.Result.SUCCESS)
|
||||||
steps {
|
}
|
||||||
git 'https://github.com/seshi7/spring-petclinic.git'
|
stages {
|
||||||
}
|
stage('source') {
|
||||||
}
|
steps {
|
||||||
stage('Package'){
|
git 'https://github.com/seshi7/spring-petclinic.git'
|
||||||
steps {
|
}
|
||||||
sh 'mvn package'
|
}
|
||||||
}
|
stage('Package') {
|
||||||
}
|
steps {
|
||||||
}
|
sh 'mvn package'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue