mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-07-19 14:05:50 +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 {
|
stages {
|
||||||
|
|
||||||
stage('Build') {
|
stage('Build') {
|
||||||
agent any
|
agent any
|
||||||
steps {
|
steps {
|
||||||
sh 'mvn clean install'
|
sh 'mvn clean install'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
stage('Build') {
|
stage('Package') {
|
||||||
agent any
|
agent any
|
||||||
steps {
|
steps {
|
||||||
script {
|
script {
|
||||||
|
@ -36,7 +35,7 @@ pipeline {
|
||||||
sh "docker run -d -p 9966:8080 --name petclinic-tomcat-temp ${env.IMAGE}:${TAG}"
|
sh "docker run -d -p 9966:8080 --name petclinic-tomcat-temp ${env.IMAGE}:${TAG}"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
stage('Smoke-Test') {
|
stage('Smoke-Test Dev') {
|
||||||
agent any
|
agent any
|
||||||
steps {
|
steps {
|
||||||
//sample dummy step
|
//sample dummy step
|
||||||
|
|
Loading…
Reference in a new issue