From 1cf89bfef869beb275cd17f05613a23b9142ee01 Mon Sep 17 00:00:00 2001 From: teajay Date: Thu, 28 May 2020 21:24:06 +0200 Subject: [PATCH] Hello World --- Pipeline/Jenkinsfile | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/Pipeline/Jenkinsfile b/Pipeline/Jenkinsfile index b7c6422..6773e58 100644 --- a/Pipeline/Jenkinsfile +++ b/Pipeline/Jenkinsfile @@ -23,11 +23,17 @@ pipeline { git "${REPO_SCRIPTS}" } dir("${DIR_GLUON}"){ - git url: "${REPO_GLUON}", branch: "${VERSION}" + sh "git clone https://github.com/freifunk-gluon/gluon.git gluon -b ${VERSION}" } sh "ls -l" } } + stage('clean'){ + steps{ + sh "rm *" + } + } + } } \ No newline at end of file