mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-07-20 23:05: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{
|
||||
echo 'Running gradle checkstyle'
|
||||
sh './gradlew check --no-daemon'
|
||||
sh './gradlew check -x processTestAot -x processAot --no-daemon'
|
||||
}
|
||||
post {
|
||||
always {
|
||||
|
@ -37,7 +37,7 @@ pipeline {
|
|||
}
|
||||
steps {
|
||||
echo 'Running gradle test'
|
||||
sh './gradlew test -x check --no-daemon'
|
||||
sh './gradlew test -x check -x processTestAot -x processAot --no-daemon'
|
||||
}
|
||||
}
|
||||
stage('Build') {
|
||||
|
@ -46,7 +46,7 @@ pipeline {
|
|||
}
|
||||
steps {
|
||||
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 }
|
||||
}
|
||||
stage('Docker Build (MR)') {
|
||||
|
|
Loading…
Reference in a new issue