From fcc8eb6e1f277c829a536d65b4714c1cc156c394 Mon Sep 17 00:00:00 2001 From: JustFiesta Date: Thu, 4 Jul 2024 15:56:10 +0200 Subject: [PATCH] Jenkinsfile update: do not process Aot on check and test --- Jenkinsfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index eab46b998..7e995afbb 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -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)') {