* [Jenkinsfile] Get rid of dldtPipelineEntrypoint * [Jenkinsfile] Add library_version parameter Co-authored-by: akladiev <akladiev@nncv-akladieva.inn.intel.com>
16 lines
490 B
Groovy
Executable File
16 lines
490 B
Groovy
Executable File
#!groovy
|
|
|
|
properties([
|
|
parameters([
|
|
booleanParam(defaultValue: true,
|
|
description: 'Cancel the rest of parallel stages if one of them fails and return status immediately',
|
|
name: 'failFast'),
|
|
string(defaultValue: '',
|
|
description: 'Pipeline shared library version (branch/tag/commit). Determined automatically if empty',
|
|
name: 'library_version')
|
|
])
|
|
])
|
|
loadOpenVinoLibrary {
|
|
entrypoint(this)
|
|
}
|