diff --git a/Pipeline/Jenkinsfile b/Pipeline/Jenkinsfile index c8e02f6..d57d624 100644 --- a/Pipeline/Jenkinsfile +++ b/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}" + } } } + } } \ No newline at end of file