[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:
Alina Kladieva 2020-11-09 19:17:19 +03:00 committed by GitHub
parent 1220fb2fe8
commit b8c7731600
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 2 deletions

9
Jenkinsfile vendored
View File

@ -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)
}