mirror of
https://github.com/arangodb/kube-arangodb.git
synced 2024-12-14 11:57:37 +00:00
Fixed syntax
This commit is contained in:
parent
857c0753e2
commit
cfa7bc760c
1 changed files with 2 additions and 2 deletions
|
@ -82,7 +82,7 @@ pipeline {
|
|||
stage('Test') {
|
||||
steps {
|
||||
def configs = "{params.KUBECONFIGS}".split(",")
|
||||
def testTasks[:]
|
||||
def testTasks = [:]
|
||||
for (kubeconfig in configs) {
|
||||
testTasks["${kubeconfig}"] = buildTestSteps(kubeconfig)
|
||||
}
|
||||
|
@ -94,7 +94,7 @@ pipeline {
|
|||
post {
|
||||
always {
|
||||
def configs = "{params.KUBECONFIGS}".split(",")
|
||||
def cleanupTasks[:]
|
||||
def cleanupTasks = [:]
|
||||
for (kubeconfig in configs) {
|
||||
cleanupTasks["${kubeconfig}"] = buildCleanupSteps(kubeconfig)
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue