Jenkinsfile update: do not process Aot on check and test

This commit is contained in:
JustFiesta 2024-07-04 15:56:10 +02:00
parent 5fa7bef654
commit fcc8eb6e1f

6
Jenkinsfile vendored
View file

@ -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)') {