[Jenkinsfile] Get rid of dldtPipelineEntrypoint (#3012)
* [Jenkinsfile] Get rid of dldtPipelineEntrypoint * [Jenkinsfile] Add library_version parameter Co-authored-by: akladiev <akladiev@nncv-akladieva.inn.intel.com>
This commit is contained in:
parent
1220fb2fe8
commit
b8c7731600
|
|
@ -4,7 +4,12 @@ properties([
|
|||
parameters([
|
||||
booleanParam(defaultValue: true,
|
||||
description: 'Cancel the rest of parallel stages if one of them fails and return status immediately',
|
||||
name: 'failFast')
|
||||
name: 'failFast'),
|
||||
string(defaultValue: '',
|
||||
description: 'Pipeline shared library version (branch/tag/commit). Determined automatically if empty',
|
||||
name: 'library_version')
|
||||
])
|
||||
])
|
||||
dldtPipelineEntrypoint(this)
|
||||
loadOpenVinoLibrary {
|
||||
entrypoint(this)
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue