ruby-ex/deployment/feature-build-pipeline.groovy

10 lines
208 B
Groovy
Raw Normal View History

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