Some checks failed
test_play/pipeline/head There was a failure building this commit
12 lines
183 B
Groovy
12 lines
183 B
Groovy
pipeline {
|
|
agent any
|
|
stages {
|
|
stage('Hello') {
|
|
steps {
|
|
echo 'Hello World'
|
|
ansible-playbook test_play.yml
|
|
}
|
|
}
|
|
}
|
|
}
|