From 3d5011135ce9f253fd1091d5377c069a56e30d5d Mon Sep 17 00:00:00 2001 From: JonnyBravo Date: Thu, 16 Mar 2023 21:57:52 +0100 Subject: [PATCH] added --- Jenkinsfile | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) 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' } } }