Browse Source

Hello World

master
teajay 5 years ago
parent
commit
7e551e3319
1 changed files with 17 additions and 2 deletions
  1. 19
      Pipeline/Jenkinsfile

19
Pipeline/Jenkinsfile

@ -1,10 +1,25 @@
pipeline {
agent { label 'master' }
environment{
REPO_SCRIPTS = "https://git.teajay.cc/teajay/FFKW-Jenkins-Scripte"
}
stages {
stage('build') {
stage('clone') {
steps {
echo "Hello World!"
echo ""
echo "###################"
echo "# Cloning Repos #"
echo "###################"
echo ""
echo "checking out build scripts"
dir("scripts"){
git "${REPO_SCRIPTS}"
}
}
}
}
}
Loading…
Cancel
Save