openvino/Jenkinsfile

20 lines
662 B
Plaintext
Raw Permalink Normal View History

#!groovy
2020-10-27 07:12:33 -05:00
properties([
parameters([
booleanParam(defaultValue: false,
description: 'Cancel the rest of parallel stages if one of them fails and return status immediately',
name: 'failFast'),
booleanParam(defaultValue: true,
description: 'Whether to propagate commit status to GitHub',
name: 'propagateStatus'),
string(defaultValue: '',
description: 'Pipeline shared library version (branch/tag/commit). Determined automatically if empty',
name: 'library_version')
])
])
2021-05-31 07:24:56 -05:00
loadOpenVinoLibrary {
entrypoint(this)
}