15 lines
291 B
Groovy
15 lines
291 B
Groovy
#!groovy
|
|
|
|
|
|
properties([
|
|
parameters([
|
|
string(defaultValue: '',
|
|
description: 'Pipeline shared library version (branch/tag/commit). Determined automatically if empty',
|
|
name: 'library_version')
|
|
])
|
|
])
|
|
|
|
loadOpenVinoLibrary {
|
|
potEntrypoint(this)
|
|
}
|