Browse Source

Hello World

master
teajay 5 years ago
parent
commit
f7abbf354a
1 changed files with 12 additions and 4 deletions
  1. 16
      Pipeline/Jenkinsfile

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

Loading…
Cancel
Save