From f7abbf354a7ecfa554c89dddf77fea7f5bacf8ce Mon Sep 17 00:00:00 2001 From: teajay Date: Thu, 28 May 2020 21:59:00 +0200 Subject: [PATCH] Hello World --- Pipeline/Jenkinsfile | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/Pipeline/Jenkinsfile b/Pipeline/Jenkinsfile index b6181c6..2cd6cef 100644 --- a/Pipeline/Jenkinsfile +++ b/Pipeline/Jenkinsfile @@ -25,15 +25,23 @@ pipeline { echo "###################" - echo "checking out build scripts" + echo "Checking out build scripts" dir("${DIR_SCRIPTS}"){ git "${REPO_SCRIPTS}" } + echo "Checking out gluon version ${VERSION}" sh "git clone https://github.com/freifunk-gluon/gluon.git gluon -b ${VERSION}" - //dir(gluon){ - - //} + + echo "Checking out site config" + dir("gluon/site"){ + sh "git clone https://github.com/Netzwerk-Koenigswinter/site-ffkw-multidomain.git -b wireguard" + } + echo "Checking out custom Packages" + dir("gluon/package"){ + sh "git clone https://github.com/Netzwerk-Koenigswinter/gluon-mesh-vpn-wireguard.git" + sh "git clone https://github.com/Netzwerk-Koenigswinter/gluon-ffkw-files.git" + } }