Files
test_play/Jenkinsfile
2023-03-16 22:02:56 +01:00

17 lines
393 B
Groovy

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'
}
}
}
}