Dont stop building if one stage fails

This commit is contained in:
retropikzel 2024-09-06 07:20:33 +03:00
parent ea0c2a7d89
commit e5219d9125
1 changed files with 24 additions and 8 deletions

16
Jenkinsfile vendored
View File

@ -3,44 +3,60 @@ pipeline {
stages {
stage('Tier 1 - Chicken') {
steps {
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
sh 'make test-chicken'
}
}
}
stage('Tier 1 - Guile') {
steps {
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
sh 'make test-guile'
}
}
}
stage('Tier 1 - Kawa') {
steps {
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
sh 'make test-kawa'
}
}
}
stage('Tier 1 - Sagittarius') {
steps {
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
sh 'make test-sagittarius'
}
}
}
stage('Tier 1 - Racket') {
steps {
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
sh 'make test-racket'
}
}
}
stage('Tier 2 - Cyclone') {
steps {
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
sh 'make test-cyclone'
}
}
}
stage('Tier 2 - Gambit') {
steps {
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
sh 'make test-gambit'
}
}
}
stage('Tier 2 - STklos') {
steps {
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
sh 'make test-stklos'
}
}
}
}
}