From dba4e51d2b770ee810fdedbc901d7adbcee0835b Mon Sep 17 00:00:00 2001 From: John Blum Date: Sat, 24 Jun 2023 09:55:51 -0700 Subject: [PATCH] Edit comments in Jenkinsfile. --- Jenkinsfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index e574a68..93ee00e 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -31,16 +31,16 @@ pipeline { sh "echo 'Setup build environment...'" sh "ci/setup.sh" - // Cleanup any prior build system resources + // Cleanup any prior, temporary build system artifacts try { sh "ci/cleanupArtifacts.sh" sh "ci/cleanupGemFiles.sh" } catch (ignore) { } - // Run the SBDG project Gradle build using JDK 8 inside Docker + // Run the STDG project Gradle build using JDK 8 inside Docker try { - sh "echo 'Building SSDG...'" + sh "echo 'Building STDG...'" sh "ci/check.sh" } catch (e) {