We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 35bdbe3 commit b354c96Copy full SHA for b354c96
Jenkinsfile
@@ -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