From bb9d5f96d886a613b5ce9c7877f765e112d19c54 Mon Sep 17 00:00:00 2001 From: Jean-Baptiste Keck <Jean-Baptiste.Keck@imag.fr> Date: Wed, 29 Jul 2020 18:01:45 +0200 Subject: [PATCH] test ci --- ci/docker_images/ubuntu/bionic_cuda/Dockerfile | 1 - ci/scripts/test.sh | 4 ++-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/ci/docker_images/ubuntu/bionic_cuda/Dockerfile b/ci/docker_images/ubuntu/bionic_cuda/Dockerfile index ed8e82c8d..f8b8ee8ad 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 dab2668f5..d4094e0da 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 -- GitLab