Skip to content

Commit

Permalink
Add Jenkinsfile (#3993)
Browse files Browse the repository at this point in the history
  • Loading branch information
akladiev authored Jan 8, 2025
1 parent 1be1a30 commit 5182cb4
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions Jenkinsfile
Original file line number Diff line number Diff line change
@@ -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)
}

0 comments on commit 5182cb4

Please sign in to comment.