From 11fa3e24dd09cf4bc7cf3ad76be7df0bc8a3c3a1 Mon Sep 17 00:00:00 2001 From: zhuwenxing Date: Wed, 8 Jun 2022 10:16:06 +0800 Subject: [PATCH] [skip e2e]Fix log path for deploy test (#17391) Signed-off-by: zhuwenxing --- build/ci/jenkins/DeployTest.groovy | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build/ci/jenkins/DeployTest.groovy b/build/ci/jenkins/DeployTest.groovy index 359dcf363e..8a5d1e1d0a 100644 --- a/build/ci/jenkins/DeployTest.groovy +++ b/build/ci/jenkins/DeployTest.groovy @@ -318,7 +318,7 @@ pipeline { always { echo 'upload logs' container('main') { - dir ('tests/python_client/chaos') { + dir ('tests/python_client/deploy') { script { echo "get pod status" sh "kubectl get pods -o wide|grep ${env.RELEASE_NAME} || true" @@ -328,7 +328,7 @@ pipeline { sh "tar -zcvf artifacts-${env.RELEASE_NAME}-logs.tar.gz k8s_log/ --remove-files || true" archiveArtifacts artifacts: "artifacts-${env.RELEASE_NAME}-logs.tar.gz", allowEmptyArchive: true if ("${params.keep_env}" == "false"){ - sh "bash scripts/uninstall_milvus.sh ${env.RELEASE_NAME}" + sh "bash ../chaos/scripts/uninstall_milvus.sh ${env.RELEASE_NAME}" } } }