use node definition
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 15:17:44 -08:00
parent 8013eef0e1
commit 12aa3caa22

9
Jenkinsfile vendored
View file

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