2020-04-15 11:01:57 -05:00
|
|
|
#!groovy
|
2020-10-27 07:12:33 -05:00
|
|
|
|
2020-06-02 12:22:25 -05:00
|
|
|
properties([
|
|
|
|
parameters([
|
|
|
|
booleanParam(defaultValue: true,
|
|
|
|
description: 'Cancel the rest of parallel stages if one of them fails and return status immediately',
|
2020-11-09 10:17:19 -06:00
|
|
|
name: 'failFast'),
|
|
|
|
string(defaultValue: '',
|
|
|
|
description: 'Pipeline shared library version (branch/tag/commit). Determined automatically if empty',
|
|
|
|
name: 'library_version')
|
2020-06-02 12:22:25 -05:00
|
|
|
])
|
|
|
|
])
|
2020-11-09 10:17:19 -06:00
|
|
|
loadOpenVinoLibrary {
|
|
|
|
entrypoint(this)
|
|
|
|
}
|