From 14f36291d6cff60787d3b9c686834b70f077888b Mon Sep 17 00:00:00 2001 From: teajay Date: Thu, 28 May 2020 21:10:05 +0200 Subject: [PATCH] Hello World --- Pipeline/Jenkinsfile | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/Pipeline/Jenkinsfile b/Pipeline/Jenkinsfile index d57d624..12d6ade 100644 --- a/Pipeline/Jenkinsfile +++ b/Pipeline/Jenkinsfile @@ -3,6 +3,10 @@ pipeline { environment{ REPO_SCRIPTS = "https://git.teajay.cc/teajay/FFKW-Jenkins-Scripte" + REPO_GLUON = "https://github.com/freifunk-gluon/gluon.git" + + DIR_SCRIPTS = "scrpt" + DIR_GLUON = "gluon" } stages { @@ -15,9 +19,14 @@ pipeline { echo "" echo "checking out build scripts" - dir("scripts"){ + dir(${DIR_SCRIPTS}){ git "${REPO_SCRIPTS}" } + dir(${DIR_GLUON}){ + git url: ${REPO_GLUON} + branch: ${VERSION} + } + sh "ls -l" } }