Browse Source

Hello World

master
teajay 5 years ago
parent
commit
1cf89bfef8
1 changed files with 7 additions and 1 deletions
  1. 8
      Pipeline/Jenkinsfile

8
Pipeline/Jenkinsfile

@ -23,11 +23,17 @@ pipeline {
git "${REPO_SCRIPTS}" git "${REPO_SCRIPTS}"
} }
dir("${DIR_GLUON}"){ dir("${DIR_GLUON}"){
git url: "${REPO_GLUON}", branch: "${VERSION}"
sh "git clone https://github.com/freifunk-gluon/gluon.git gluon -b ${VERSION}"
} }
sh "ls -l" sh "ls -l"
} }
} }
stage('clean'){
steps{
sh "rm *"
}
}
} }
} }
Loading…
Cancel
Save