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