Files
test_play/Jenkinsfile
JonnyBravo a8e8bbee2c
Some checks failed
test_play/pipeline/head There was a failure building this commit
add
2023-03-16 21:52:56 +01:00

11 lines
191 B
Groovy

pipeline {
agent any
stages {
stage(" execute Ansible") {
steps {
ansiblePlaybook playbook: 'test_play.yml'
}
}
}
}