From 4f4513fa0a725cfc0398866bbfcb8f9da13b0807 Mon Sep 17 00:00:00 2001 From: Yug Date: Tue, 4 Aug 2020 09:17:57 +0530 Subject: [PATCH] ci: Correct the stage name Curently the stage name directly prints the name of the variable in place of substituting it. This is a fix for that issue. Signed-off-by: Yug --- mini-e2e.groovy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mini-e2e.groovy b/mini-e2e.groovy index bd1e48c5d..f25f98854 100644 --- a/mini-e2e.groovy +++ b/mini-e2e.groovy @@ -46,7 +46,7 @@ node('cico-workspace') { // build e2e.test executable ssh 'cd /opt/build/go/src/github.com/ceph/ceph-csi && make containerized-build CONTAINER_CMD=podman TARGET=e2e.test' } - stage("deploy k8s v{k8s_version} and rook") { + stage("deploy k8s v${k8s_version} and rook") { timeout(time: 30, unit: 'MINUTES') { ssh "./single-node-k8s.sh --k8s-version=v${k8s_version}" }