Test again with hopefully the correct syntax
Some checks failed
dreamfall/mcmillian.dev/pipeline/head There was a failure building this commit

This commit is contained in:
Morgan McMillian 2022-11-19 17:16:38 -08:00
parent 59cc305c07
commit 41b67d5d8b

15
Jenkinsfile vendored
View file

@ -1,10 +1,13 @@
pipeline {
agent {
node {
ansiblePlaybook(
playbook: 'main.yaml',
credentialsId: 'onedrop-vetinari'
)
agent any
stages {
stage('Execute playbook') {
steps {
ansiblePlaybook(
playbook: 'main.yaml',
credentialsId: 'onedrop-vetinari'
)
}
}
}
}