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