Modify Jenkins CI build (Jenkinsfile) to use Gradle 'build' lifecycle task instead of 'check'.

This commit is contained in:
John Blum
2023-05-12 10:32:43 -07:00
parent 6efb07b36b
commit 2dd3be9b51

2
Jenkinsfile vendored
View File

@@ -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"