From: Lucian Petrut Date: Tue, 7 Feb 2023 14:58:58 +0000 (+0200) Subject: windows: fix running "ceph status" X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=c13a5b872094ac61957b8f0e8eb02bc5f1e52b0e;p=ceph-build.git windows: fix running "ceph status" One of the Windows scripts tries to do "ceph status" before and after executing the ceph tests. The issue is that it's using a wrong path. The ceph dir is actually located in the home dir. We'll update the script accordingly. Signed-off-by: Lucian Petrut --- diff --git a/scripts/ceph-windows/run_tests b/scripts/ceph-windows/run_tests index c6def137..56f16a9d 100644 --- a/scripts/ceph-windows/run_tests +++ b/scripts/ceph-windows/run_tests @@ -50,7 +50,7 @@ function collect_artifacts() { rm -rf $WORKSPACE/artifacts mkdir -p $WORKSPACE/artifacts - SSH_USER=$UBUNTU_SSH_USER SSH_ADDRESS=$UBUNTU_VM_IP ssh_exec $WORKSPACE/ceph/build/bin/ceph status + SSH_USER=$UBUNTU_SSH_USER SSH_ADDRESS=$UBUNTU_VM_IP ssh_exec ./ceph/build/bin/ceph status scp_download /workspace/test_results $WORKSPACE/artifacts/test_results if [[ "$INCLUDE_USERSPACE_CRASH_DUMPS" = true ]]; then @@ -72,7 +72,7 @@ function collect_artifacts() { trap collect_artifacts EXIT # View cluster status before test run -SSH_USER=$UBUNTU_SSH_USER SSH_ADDRESS=$UBUNTU_VM_IP ssh_exec $WORKSPACE/ceph/build/bin/ceph status +SSH_USER=$UBUNTU_SSH_USER SSH_ADDRESS=$UBUNTU_VM_IP ssh_exec ./ceph/build/bin/ceph status # # Run the Windows tests #