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" + } }