Files
test_play/Jenkinsfile
JonnyBravo e8d3141bf0
Some checks failed
test_play/pipeline/head There was a failure building this commit
added
2023-03-16 21:45:59 +01:00

12 lines
183 B
Groovy

pipeline {
agent any
stages {
stage('Hello') {
steps {
echo 'Hello World'
ansible-playbook test_play.yml
}
}
}
}