diff --git a/Jenkinsfile b/Jenkinsfile index ff844a9..b99d5aa 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -3,42 +3,58 @@ pipeline { stages { stage('Tier 1 - Chicken') { steps { - sh 'make test-chicken' + catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') { + sh 'make test-chicken' + } } } stage('Tier 1 - Guile') { steps { - sh 'make test-guile' + catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') { + sh 'make test-guile' + } } } stage('Tier 1 - Kawa') { steps { - sh 'make test-kawa' + catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') { + sh 'make test-kawa' + } } } stage('Tier 1 - Sagittarius') { steps { - sh 'make test-sagittarius' + catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') { + sh 'make test-sagittarius' + } } } stage('Tier 1 - Racket') { steps { - sh 'make test-racket' + catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') { + sh 'make test-racket' + } } } stage('Tier 2 - Cyclone') { steps { - sh 'make test-cyclone' + catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') { + sh 'make test-cyclone' + } } } stage('Tier 2 - Gambit') { steps { - sh 'make test-gambit' + catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') { + sh 'make test-gambit' + } } } stage('Tier 2 - STklos') { steps { - sh 'make test-stklos' + catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') { + sh 'make test-stklos' + } } } }