Two jenkins jobs are connected as: Upstream job is a pipeline and triggers a freestyle job.
Is it possible in Jenkins to get the following scenario:
If downstream job is aborted the upstream job gets aborted. But if the upstream job is aborted the downstream job should not abort, but continue running.
Upstream job :
node('upstream_node'){
build job: 'downstream_job', wait:true, propagate:false
}
I have tried all possible combinations with 'wait' and 'propagate' options, but non of them will work.