From 2dd3be9b513cd83319b97c0b41f50a4b3609b284 Mon Sep 17 00:00:00 2001 From: John Blum Date: Fri, 12 May 2023 10:32:43 -0700 Subject: [PATCH] Modify Jenkins CI build (Jenkinsfile) to use Gradle 'build' lifecycle task instead of 'check'. --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 77bc4676..140e34a3 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -42,7 +42,7 @@ pipeline { // Run the SBDG project Gradle build using JDK 8 inside Docker try { sh "echo 'Building SBDG...'" - sh "ci/check.sh" + sh "ci/build.sh" } catch (e) { currentBuild.result = "FAILED: build"