Browse Source

Hello World

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

11
Pipeline/Jenkinsfile

@ -9,6 +9,15 @@ pipeline {
}
stages {
stage('tmpclean'){
steps{
echo "########################"
echo "# Cleaning Workspace #"
echo "########################"
sh "rm -r -f ./*"
}
}
stage('clone') {
steps {
echo "###################"
@ -23,7 +32,7 @@ pipeline {
sh "rm -r gluon"
sh "git clone https://github.com/freifunk-gluon/gluon.git gluon -b ${VERSION}"
dir(gluon){
}

Loading…
Cancel
Save