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 <lpetrut@cloudbasesolutions.com>
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
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
#