Browse Source

Polishing.

Extract docker credentials into properties file.
Use tabs for indentation instead of spaces.

See #3949
pull/4007/head
Mark Paluch 4 years ago
parent
commit
90b8ba7246
No known key found for this signature in database
GPG Key ID: 4406B84C1661DCD1
  1. 6
      Jenkinsfile

6
Jenkinsfile vendored

@ -74,7 +74,7 @@ pipeline {
} }
options { timeout(time: 30, unit: 'MINUTES') } options { timeout(time: 30, unit: 'MINUTES') }
environment { environment {
ARTIFACTORY = credentials('02bd1690-b54f-4c9f-819d-a77cb7a9822c') ARTIFACTORY = credentials("${p['artifactory.credentials']}")
} }
steps { steps {
script { script {
@ -108,7 +108,7 @@ pipeline {
} }
options { timeout(time: 30, unit: 'MINUTES') } options { timeout(time: 30, unit: 'MINUTES') }
environment { environment {
ARTIFACTORY = credentials('02bd1690-b54f-4c9f-819d-a77cb7a9822c') ARTIFACTORY = credentials("${p['artifactory.credentials']}")
} }
steps { steps {
script { script {
@ -142,7 +142,7 @@ pipeline {
options { timeout(time: 20, unit: 'MINUTES') } options { timeout(time: 20, unit: 'MINUTES') }
environment { environment {
ARTIFACTORY = credentials('02bd1690-b54f-4c9f-819d-a77cb7a9822c') ARTIFACTORY = credentials("${p['artifactory.credentials']}")
} }
steps { steps {

Loading…
Cancel
Save