ruby-ex/deployment/feature-build-pipeline.groovy
2017-01-04 01:00:24 +01:00

9 lines
208 B
Groovy

@Library('occd') _
node() {
stage("Checkout") {
deleteDir()
git(url: "https://github.com/omallo/ruby-ex.git", branch: "${FEATURE_BRANCH}", credentialsId: "github-omallo")
sh "git status"
}
}