Skip to content

Commit 5182cb4

Browse files
authored
Add Jenkinsfile (#3993)
1 parent 1be1a30 commit 5182cb4

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

Jenkinsfile

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
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+
string(defaultValue: '',
15+
description: 'Docker tag to take images with. Determined automatically if empty',
16+
name: 'docker_tag')
17+
])
18+
])
19+
20+
loadOpenVinoLibrary {
21+
entrypoint(this)
22+
}

0 commit comments

Comments
 (0)