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

12 lines
176 B
Groovy

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