diff --git a/ci/docker_images/ubuntu/bionic_cuda/Dockerfile b/ci/docker_images/ubuntu/bionic_cuda/Dockerfile
index ed8e82c8dcdefa3d1b71685b14ab9b09251fb9ac..f8b8ee8ad63abf0c927c9f9e73f4947ba2602f98 100644
--- a/ci/docker_images/ubuntu/bionic_cuda/Dockerfile
+++ b/ci/docker_images/ubuntu/bionic_cuda/Dockerfile
@@ -115,7 +115,6 @@ RUN cd /tmp
 && wget http://registrationcenter-download.intel.com/akdlm/irc_nas/12556/opencl_runtime_16.1.2_x64_rh_6.4.0.37.tgz \
 && tar -xvzf opencl_runtime_16.1.2_x64_rh_6.4.0.37.tgz                                      \
 && cd opencl_runtime_16.1.2_x64_rh_6.4.0.37                                                 \
-&& ls -la                                                                                   \
 && sed -i "s/ACCEPT_EULA=decline/ACCEPT_EULA=accept/g" "silent.cfg"                         \
 && ./install.sh --silent ./silent.cfg                                                       \
 && cd /tmp                                                                                  \
diff --git a/ci/scripts/test.sh b/ci/scripts/test.sh
index dab2668f5421740c735cdc2eff22d056ee83051a..d4094e0daf92f1ab71bc3bd874ae778fe019e85c 100755
--- a/ci/scripts/test.sh
+++ b/ci/scripts/test.sh
@@ -45,7 +45,7 @@ if [ "${HAS_CACHE_DIR}" = true ]; then
     mkdir -p "${HYSOP_CACHE_DIR}"
     if [ -d "${CACHE_DIR}" ]; then
         echo "Cache directory '$CACHE_DIR' was found."
-        rsync -rtvu "${CACHE_DIR}/" "${HYSOP_CACHE_DIR}/"
+        rsync -rtu "${CACHE_DIR}/" "${HYSOP_CACHE_DIR}/"
     else
         # Untill gitlab allows cache on failure we need
         # to provide initial cache so that CI succeeds (< 1h tests)
@@ -55,7 +55,7 @@ if [ "${HAS_CACHE_DIR}" = true ]; then
         if [[ "${HAS_BACKUP_CACHE_DIR}" = true ]]; then
             if [[ -d "${BACKUP_CACHE_DIR}" ]]; then
                 echo "Backup cache directory '${BACKUP_CACHE_DIR}' was found."
-                rsync -rtvu "${BACKUP_CACHE_DIR}/" "${HYSOP_CACHE_DIR}/"
+                rsync -rtu "${BACKUP_CACHE_DIR}/" "${HYSOP_CACHE_DIR}/"
             else
                 echo "Backup directory '${BACKUP_CACHE_DIR}' does not exist."
             fi