Skip to content
Snippets Groups Projects
Commit bb9d5f96 authored by Jean-Baptiste Keck's avatar Jean-Baptiste Keck
Browse files

test ci

parent f9219389
No related branches found
No related tags found
2 merge requests!24Resolve "Add python3.x support",!15WIP: Resolve "HySoP with tasks"
Pipeline #47644 failed
......@@ -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 \
......
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment