diff --git a/deployment/feature-build-pipeline.groovy b/deployment/feature-build-pipeline.groovy index e69de29..7f3fbaa 100644 --- a/deployment/feature-build-pipeline.groovy +++ b/deployment/feature-build-pipeline.groovy @@ -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" + } +}