You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
550 B

pipeline {
agent { label 'master' }
environment{
REPO_SCRIPTS = "https://git.teajay.cc/teajay/FFKW-Jenkins-Scripte"
}
stages {
stage('clone') {
steps {
echo ""
echo "###################"
echo "# Cloning Repos #"
echo "###################"
echo ""
echo "checking out build scripts"
dir("scripts"){
git "${REPO_SCRIPTS}"
}
}
}
}
}