Skip to content

Commit b354c96

Browse files
author
Alexey Suhov
authored
Add Jenkinsfile (#21)
* Add Jenkinsfile
1 parent 35bdbe3 commit b354c96

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

Jenkinsfile

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
#!groovy
2+
3+
properties([
4+
parameters([
5+
booleanParam(defaultValue: false,
6+
description: 'Cancel the rest of parallel stages if one of them fails and return status immediately',
7+
name: 'failFast'),
8+
booleanParam(defaultValue: true,
9+
description: 'Whether to propagate commit status to GitHub',
10+
name: 'propagateStatus'),
11+
string(defaultValue: '',
12+
description: 'Pipeline shared library version (branch/tag/commit). Determined automatically if empty',
13+
name: 'library_version')
14+
])
15+
])
16+
loadOpenVinoLibrary {
17+
entrypoint(this)
18+
}

0 commit comments

Comments
 (0)