mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-07-21 07:15:49 +00:00
Jenkinsfile update: do not process Aot on check and test
This commit is contained in:
parent
5fa7bef654
commit
fcc8eb6e1f
1 changed files with 3 additions and 3 deletions
6
Jenkinsfile
vendored
6
Jenkinsfile
vendored
|
@ -23,7 +23,7 @@ pipeline {
|
||||||
}
|
}
|
||||||
steps{
|
steps{
|
||||||
echo 'Running gradle checkstyle'
|
echo 'Running gradle checkstyle'
|
||||||
sh './gradlew check --no-daemon'
|
sh './gradlew check -x processTestAot -x processAot --no-daemon'
|
||||||
}
|
}
|
||||||
post {
|
post {
|
||||||
always {
|
always {
|
||||||
|
@ -37,7 +37,7 @@ pipeline {
|
||||||
}
|
}
|
||||||
steps {
|
steps {
|
||||||
echo 'Running gradle test'
|
echo 'Running gradle test'
|
||||||
sh './gradlew test -x check --no-daemon'
|
sh './gradlew test -x check -x processTestAot -x processAot --no-daemon'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
stage('Build') {
|
stage('Build') {
|
||||||
|
@ -46,7 +46,7 @@ pipeline {
|
||||||
}
|
}
|
||||||
steps {
|
steps {
|
||||||
echo 'Running build automation'
|
echo 'Running build automation'
|
||||||
sh './gradlew build -x test -x check -x checkFormat -x processTestAot --no-daemon'
|
sh './gradlew build -x test -x check -x checkFormat -x processTestAot -x processAot --no-daemon'
|
||||||
archiveArtifacts artifacts: 'build/libs/*.jar', fingerprint: true }
|
archiveArtifacts artifacts: 'build/libs/*.jar', fingerprint: true }
|
||||||
}
|
}
|
||||||
stage('Docker Build (MR)') {
|
stage('Docker Build (MR)') {
|
||||||
|
|
Loading…
Reference in a new issue