From b17a26e634384e169fa6ee3c0f94b123075e3c4a Mon Sep 17 00:00:00 2001 From: Jamie Curnow Date: Wed, 8 Mar 2023 13:14:18 +1000 Subject: [PATCH] test --- Jenkinsfile | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index a9437ce0..f08ecdb7 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -65,16 +65,13 @@ pipeline { script { // Frontend and Backend def shStatusCode = sh(label: 'Checking and Building', returnStatus: true, script: ''' - # set +x set -e ./scripts/ci/frontend-build > ${WORKSPACE}/tmp-sh-build 2>&1 ./scripts/ci/test-and-build > ${WORKSPACE}/tmp-sh-build 2>&1 ''') shOutput = readFile "${env.WORKSPACE}/tmp-sh-build" - echo "-->${shOutput}<--" - echo "-->${shStatusCode}<--" if (shStatusCode != 0) { - error "Error: ${shOutput}" + error "${shOutput}" } } } @@ -89,7 +86,6 @@ pipeline { } stage('Integration Tests Sqlite') { steps { - error "exiting for debug" // Bring up a stack sh 'docker-compose up -d fullstack-sqlite' sh './scripts/wait-healthy $(docker-compose ps -q fullstack-sqlite) 120'