Define a skeletton for the feature build pipeline
This commit is contained in:
parent
8d52c35ed9
commit
d22d7420af
1 changed files with 9 additions and 0 deletions
|
@ -0,0 +1,9 @@
|
|||
@Library('occd') _
|
||||
|
||||
node() {
|
||||
stage("Checkout") {
|
||||
deleteDir()
|
||||
git(url: "https://github.com/omallo/ruby-ex.git", branch: "${FEATURE_BRANCH}", credentialsId: "github-omallo")
|
||||
sh "git status"
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue