[Jenkinsfile] Disable failFast & enable propagateStatus (#3503)

Co-authored-by: akladiev <akladiev@nncv-akladieva.inn.intel.com>
This commit is contained in:
Alina Kladieva
2020-12-10 12:05:03 +03:00
committed by GitHub
parent 9ea24c5b33
commit 0a84b230bd

4
Jenkinsfile vendored
View File

@@ -2,10 +2,10 @@
properties([
parameters([
booleanParam(defaultValue: true,
booleanParam(defaultValue: false,
description: 'Cancel the rest of parallel stages if one of them fails and return status immediately',
name: 'failFast'),
booleanParam(defaultValue: false,
booleanParam(defaultValue: true,
description: 'Whether to propagate commit status to GitHub',
name: 'propagateStatus'),
string(defaultValue: '',