pipeline { agent { label 'master' } 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 { stage('clone') { steps { echo "" echo "###################" echo "# Cloning Repos #" echo "###################" echo "" echo "checking out build scripts" dir("${DIR_SCRIPTS}"){ git "${REPO_SCRIPTS}" } dir("${DIR_GLUON}"){ git url: "${REPO_GLUON}", branch: "${VERSION}" } sh "ls -l" } } } }