Skip to content

Commit

Permalink
Merge pull request #10 from mryzhov/jenkins
Browse files Browse the repository at this point in the history
[CI] Enable Jenkins private CI
  • Loading branch information
mryzhov authored Feb 8, 2024
2 parents 8cd0c0c + 22ecfc4 commit 62a3f98
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions Jenkinsfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
#!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')
])
])
loadOpenVinoLibrary {
entrypoint(this)
}

0 comments on commit 62a3f98

Please sign in to comment.