mcmillian.dev/Jenkinsfile

17 lines
379 B
Groovy

pipeline {
agent none
environment {
SNAPCRAFT_STORE_CREDENTIALS = credentials('snapcraft-store-credentials')
}
stages {
stage('Execute playbook') {
steps {
ansiblePlaybook(
playbook: 'main.yaml'
credentialsId: 'onedrop-vetinari'
)
}
}
}
}