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