diff --git a/Jenkinsfile b/Jenkinsfile index abd435e..998756a 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,9 +1,15 @@ pipeline { agent any stages { + stage ("SCM checkout") { + steps { + git "https://gitea.schlaubistechtalk.de/JonnyBravo/test_play.git" + + } + } stage(" execute Ansible") { steps { - ansiblePlaybook playbook: 'test_play.yml' + ansiblePlaybook installation: 'Ansible', playbook: 'test_play.yml' } } }