Some checks failed
test_play/pipeline/head There was a failure building this commit
11 lines
191 B
Groovy
11 lines
191 B
Groovy
pipeline {
|
|
agent any
|
|
stages {
|
|
stage(" execute Ansible") {
|
|
steps {
|
|
ansiblePlaybook playbook: 'test_play.yml'
|
|
}
|
|
}
|
|
}
|
|
}
|