Browse Source

Hello World

master
teajay 5 years ago
parent
commit
14f36291d6
1 changed files with 10 additions and 1 deletions
  1. 11
      Pipeline/Jenkinsfile

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

Loading…
Cancel
Save