From d22d7420afbf430064d9ba55ba6722c84d793868 Mon Sep 17 00:00:00 2001 From: Ovidio Mallo Date: Wed, 4 Jan 2017 01:00:24 +0100 Subject: [PATCH] Define a skeletton for the feature build pipeline --- deployment/feature-build-pipeline.groovy | 9 +++++++++ 1 file changed, 9 insertions(+) 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" + } +}