diff --git a/Jenkinsfile b/Jenkinsfile new file mode 100644 index 0000000000..a67ebd0d0c --- /dev/null +++ b/Jenkinsfile @@ -0,0 +1,22 @@ +#!groovy + +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'), + string(defaultValue: '', + description: 'Docker tag to take images with. Determined automatically if empty', + name: 'docker_tag') + ]) +]) + +loadOpenVinoLibrary { + entrypoint(this) +}