Define a skeletton for the feature build pipeline

This commit is contained in:
Ovidio Mallo 2017-01-04 01:00:24 +01:00
parent 8d52c35ed9
commit d22d7420af
1 changed files with 9 additions and 0 deletions

View File

@ -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"
}
}