From aa7d9de45a25c8b8d5b6145e7f5c54da4e24e7df Mon Sep 17 00:00:00 2001 From: Niels de Vos Date: Fri, 23 Oct 2020 14:32:40 +0200 Subject: [PATCH] ci: copy run-k8s-external-storage-e2e.sh to bare-metal machine The ./run-k8s-external-storage-e2e.sh script that executes the Kubernetes e2e external-storage tests needs to be placed on the bare-metal machine. Currently, the k8s-e2e-external-storage job fails with: bash: ./run-k8s-external-storage-e2e.sh: No such file or directory Signed-off-by: Niels de Vos --- k8s-e2e-external-storage.groovy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/k8s-e2e-external-storage.groovy b/k8s-e2e-external-storage.groovy index 2190c31f0..18e81d647 100644 --- a/k8s-e2e-external-storage.groovy +++ b/k8s-e2e-external-storage.groovy @@ -92,7 +92,7 @@ node('cico-workspace') { if (params.ghprbPullId != null) { ref = "pull/${ghprbPullId}/head" } - sh 'scp -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no ./prepare.sh ./single-node-k8s.sh root@${CICO_NODE}:' + sh 'scp -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no ./prepare.sh ./single-node-k8s.sh ./run-k8s-external-storage-e2e.sh root@${CICO_NODE}:' ssh "./prepare.sh --workdir=/opt/build/go/src/github.com/ceph/ceph-csi --gitrepo=${git_repo} --ref=${ref}" } stage('build artifacts') {