Files
test_play/Jenkinsfile
JonnyBravo 3d5011135c
Some checks failed
test_play/pipeline/head There was a failure building this commit
added
2023-03-16 21:57:52 +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'
}
}
}
}