mcmillian.dev/Jenkinsfile
Morgan McMillian bd5233b93c
All checks were successful
dreamfall/mcmillian.dev/pipeline/head This commit looks good
limit to specific agents
2022-11-19 17:34:15 -08:00

13 lines
290 B
Groovy

pipeline {
agent { label "ansible" }
stages {
stage('Execute playbook') {
steps {
ansiblePlaybook(
playbook: 'main.yaml',
credentialsId: 'onedrop-vetinari'
)
}
}
}
}