diff options
author | Christian Poessinger <christian@poessinger.com> | 2021-04-03 16:22:16 +0200 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2021-04-03 16:22:16 +0200 |
commit | a5ee43596d7d69b9b04b1ff99e135ea7e2af98ad (patch) | |
tree | 6404defc672c2a6f549559363d34ca127fed686c /Jenkinsfile | |
parent | 772c546380c779fbf9815541dfba3c307b256667 (diff) | |
download | vyos-build-a5ee43596d7d69b9b04b1ff99e135ea7e2af98ad.tar.gz vyos-build-a5ee43596d7d69b9b04b1ff99e135ea7e2af98ad.zip |
Jenkins: do not fail fast on parallel build errors
Diffstat (limited to 'Jenkinsfile')
-rw-r--r-- | Jenkinsfile | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Jenkinsfile b/Jenkinsfile index 073f04e4..8e4df860 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -53,9 +53,8 @@ pipeline { options { disableConcurrentBuilds() timeout(time: 120, unit: 'MINUTES') - parallelsAlwaysFailFast() timestamps() - buildDiscarder(logRotator(numToKeepStr: '200')) + buildDiscarder(logRotator(numToKeepStr: '20')) } parameters { string(name: 'BUILD_BY', defaultValue: 'autobuild@vyos.net', description: 'Builder identifier (e.g. jrandomhacker@example.net)') |