Dont stop building if one stage fails
This commit is contained in:
parent
ea0c2a7d89
commit
e5219d9125
|
|
@ -3,42 +3,58 @@ pipeline {
|
||||||
stages {
|
stages {
|
||||||
stage('Tier 1 - Chicken') {
|
stage('Tier 1 - Chicken') {
|
||||||
steps {
|
steps {
|
||||||
sh 'make test-chicken'
|
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
|
||||||
|
sh 'make test-chicken'
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
stage('Tier 1 - Guile') {
|
stage('Tier 1 - Guile') {
|
||||||
steps {
|
steps {
|
||||||
sh 'make test-guile'
|
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
|
||||||
|
sh 'make test-guile'
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
stage('Tier 1 - Kawa') {
|
stage('Tier 1 - Kawa') {
|
||||||
steps {
|
steps {
|
||||||
sh 'make test-kawa'
|
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
|
||||||
|
sh 'make test-kawa'
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
stage('Tier 1 - Sagittarius') {
|
stage('Tier 1 - Sagittarius') {
|
||||||
steps {
|
steps {
|
||||||
sh 'make test-sagittarius'
|
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
|
||||||
|
sh 'make test-sagittarius'
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
stage('Tier 1 - Racket') {
|
stage('Tier 1 - Racket') {
|
||||||
steps {
|
steps {
|
||||||
sh 'make test-racket'
|
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
|
||||||
|
sh 'make test-racket'
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
stage('Tier 2 - Cyclone') {
|
stage('Tier 2 - Cyclone') {
|
||||||
steps {
|
steps {
|
||||||
sh 'make test-cyclone'
|
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
|
||||||
|
sh 'make test-cyclone'
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
stage('Tier 2 - Gambit') {
|
stage('Tier 2 - Gambit') {
|
||||||
steps {
|
steps {
|
||||||
sh 'make test-gambit'
|
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
|
||||||
|
sh 'make test-gambit'
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
stage('Tier 2 - STklos') {
|
stage('Tier 2 - STklos') {
|
||||||
steps {
|
steps {
|
||||||
sh 'make test-stklos'
|
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
|
||||||
|
sh 'make test-stklos'
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue