1
0
Fork 0
mirror of https://github.com/arangodb/kube-arangodb.git synced 2024-12-14 11:57:37 +00:00
This commit is contained in:
Ewout Prangsma 2018-03-08 13:14:30 +01:00
parent 642f9bd3f3
commit 52731f5735
No known key found for this signature in database
GPG key ID: 4DBAD380D93D0698

View file

@ -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)