pipeline { agent any stages { stage ("SCM checkout") { steps { git "https://gitea.schlaubistechtalk.de/JonnyBravo/test_play.git" } } stage(" execute Ansible") { steps { ansiblePlaybook installation: 'ansible', playbook: 'test_play.yml' } } stage("run bash"){ steps { bash '''#!/bin/bash echo "hello world" ''' } } } }