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') {
|
stage('Test') {
|
||||||
steps {
|
steps {
|
||||||
script {
|
script {
|
||||||
def configs = "{params.KUBECONFIGS}".split(",")
|
def configs = "${params.KUBECONFIGS}".split(",")
|
||||||
def testTasks = [:]
|
def testTasks = [:]
|
||||||
for (kubeconfig in configs) {
|
for (kubeconfig in configs) {
|
||||||
testTasks["${kubeconfig}"] = buildTestSteps(kubeconfig)
|
testTasks["${kubeconfig}"] = buildTestSteps(kubeconfig)
|
||||||
|
@ -96,7 +96,7 @@ pipeline {
|
||||||
post {
|
post {
|
||||||
always {
|
always {
|
||||||
script {
|
script {
|
||||||
def configs = "{params.KUBECONFIGS}".split(",")
|
def configs = "${params.KUBECONFIGS}".split(",")
|
||||||
def cleanupTasks = [:]
|
def cleanupTasks = [:]
|
||||||
for (kubeconfig in configs) {
|
for (kubeconfig in configs) {
|
||||||
cleanupTasks["${kubeconfig}"] = buildCleanupSteps(kubeconfig)
|
cleanupTasks["${kubeconfig}"] = buildCleanupSteps(kubeconfig)
|
||||||
|
|
Loading…
Reference in a new issue