I have a jenkins installation with a bunch of pipelines. I wrote a new pipeline that can immediately start all conveyors. I would like to build other stages, even if one of them does not work.
Currently the script looks like
stage 'CentOS6' build 'centos6.testing' stage 'CentOS7' build 'centos7.testing' stage 'Debian7' build 'debian7-x64.testing' stage 'Debian8' build 'debian8-x64.testing'
Assembly scripts themselves contain the node that they must run.
How can the script continue the following steps, even if one of them does not work.
Greetings
source share