added
Some checks failed
test_play/pipeline/head There was a failure building this commit

This commit is contained in:
2023-03-16 21:57:52 +01:00
parent a8e8bbee2c
commit 3d5011135c

8
Jenkinsfile vendored
View File

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