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