mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-07-22 07:45:49 +00:00
fixed duplicated named stages
This commit is contained in:
parent
067be1874d
commit
ada99328d8
1 changed files with 2 additions and 3 deletions
|
@ -8,14 +8,13 @@ pipeline {
|
|||
}
|
||||
|
||||
stages {
|
||||
|
||||
stage('Build') {
|
||||
agent any
|
||||
steps {
|
||||
sh 'mvn clean install'
|
||||
}
|
||||
}
|
||||
stage('Build') {
|
||||
stage('Package') {
|
||||
agent any
|
||||
steps {
|
||||
script {
|
||||
|
@ -36,7 +35,7 @@ pipeline {
|
|||
sh "docker run -d -p 9966:8080 --name petclinic-tomcat-temp ${env.IMAGE}:${TAG}"
|
||||
}
|
||||
}
|
||||
stage('Smoke-Test') {
|
||||
stage('Smoke-Test Dev') {
|
||||
agent any
|
||||
steps {
|
||||
//sample dummy step
|
||||
|
|
Loading…
Reference in a new issue