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

this is a test to check what is happening for CI caching, do not merge on success

parent 36665bed
No related branches found
No related tags found
1 merge request!16MPI operators
Pipeline #42004 failed
...@@ -12,7 +12,7 @@ RUN apt-get update ...@@ -12,7 +12,7 @@ RUN apt-get update
RUN apt-get full-upgrade -y RUN apt-get full-upgrade -y
# get build tools and required libraries # get build tools and required libraries
RUN apt-get install -y expat unzip xz-utils automake libtool pkg-config cmake git vim ssh clang gcc gfortran cython swig lsb-core cpio libnuma1 libpciaccess0 libreadline-dev libboost-all-dev libblas-dev liblapack-dev libcgal-dev libatlas-base-dev libopenblas-dev libgfortran3 libgcc1 libopenmpi-dev libhdf5-openmpi-dev libfftw3-dev libfftw3-mpi-dev libgmp-dev libmpfr-dev libmpc-dev libsparsehash-dev libcairo-dev libcairomm-1.0-dev libflint-dev python python-dev python-pip python-tk opencl-headers RUN apt-get install -y expat unzip xz-utils automake libtool pkg-config cmake rsync git vim ssh clang gcc gfortran cython swig lsb-core cpio libnuma1 libpciaccess0 libreadline-dev libboost-all-dev libblas-dev liblapack-dev libcgal-dev libatlas-base-dev libopenblas-dev libgfortran3 libgcc1 libopenmpi-dev libhdf5-openmpi-dev libfftw3-dev libfftw3-mpi-dev libgmp-dev libmpfr-dev libmpc-dev libsparsehash-dev libcairo-dev libcairomm-1.0-dev libflint-dev python python-dev python-pip python-tk opencl-headers
# python packages using pip # python packages using pip
RUN pip install --upgrade pip RUN pip install --upgrade pip
......
#!/bin/bash #!/bin/bash
set -feu -o pipefail set -feux -o pipefail
if [ $# -ne 4 ]; then if [ $# -ne 4 ]; then
echo "Usage ./build build_folder CC CXX FC" echo "Usage ./build build_folder CC CXX FC"
......
#!/usr/bin/env bash #!/usr/bin/env bash
set -euf -o pipefail set -feux -o pipefail
# /hysop should be mounted as read only by run_tests_in_docker.sh # /hysop should be mounted as read only by run_tests_in_docker.sh
if [[ ! -d '/hysop' ]]; then if [[ ! -d '/hysop' ]]; then
......
#!/usr/bin/env bash #!/usr/bin/env bash
set -euf -o pipefail set -feux -o pipefail
# /hysop should be mounted as read only by run_tests_in_docker.sh # /hysop should be mounted as read only by run_tests_in_docker.sh
if [[ ! -d '/hysop' ]]; then if [[ ! -d '/hysop' ]]; then
......
#!/bin/bash #!/bin/bash
set -feu -o pipefail set -feux -o pipefail
if [ $# -ne 5 ]; then if [ $# -ne 5 ]; then
echo "Usage ./config build_folder install_folder CC CXX FC" echo "Usage ./config build_folder install_folder CC CXX FC"
......
#!/bin/bash #!/bin/bash
set -feu -o pipefail set -feux -o pipefail
if [ $# -ne 2 ]; then if [ $# -ne 2 ]; then
echo "Usage ./install build_folder install_folder" echo "Usage ./install build_folder install_folder"
......
#!/bin/bash #!/bin/bash
set -fe -o pipefail set -feux -o pipefail
PYTHON_EXECUTABLE=${PYTHON_EXECUTABLE:-python2.7} PYTHON_EXECUTABLE=${PYTHON_EXECUTABLE:-python2.7}
...@@ -25,6 +25,7 @@ fi ...@@ -25,6 +25,7 @@ fi
INSTALL_DIR="$1" INSTALL_DIR="$1"
HYSOP_DIR="$2" HYSOP_DIR="$2"
HYSOP_CACHE_DIR="${HOME}/.cache"
if [ $# -gt 2 ]; then if [ $# -gt 2 ]; then
CACHE_DIR="$3" CACHE_DIR="$3"
...@@ -35,33 +36,37 @@ fi ...@@ -35,33 +36,37 @@ fi
if [ $# -gt 3 ]; then if [ $# -gt 3 ]; then
BACKUP_CACHE_DIR="$4" BACKUP_CACHE_DIR="$4"
HAS_BACKUP_CACHE_DIR=true
else
HAS_BACKUP_CACHE_DIR=false
fi fi
if [ "${HAS_CACHE_DIR}" = true ]; then if [ "${HAS_CACHE_DIR}" = true ]; then
mkdir -p "${HOME}/cache"
if [ -d "${CACHE_DIR}" ]; then if [ -d "${CACHE_DIR}" ]; then
echo "Cache directory '$CACHE_DIR' was found." echo "Cache directory '$CACHE_DIR' was found."
cp -r $CACHE_DIR/* "${HOME}/.cache" rsync -rtvu "${CACHE_DIR}/" "${HYSOP_CACHE_DIR}/"
else else
# Untill gitlab allows cache on failure we need # Untill gitlab allows cache on failure we need
# to provide initial cache so that CI succeeds (< 1h tests) # to provide initial cache so that CI succeeds (< 1h tests)
# see https://gitlab.com/gitlab-org/gitlab/-/issues/18969 # See https://gitlab.com/gitlab-org/gitlab/-/issues/18969
# Initial cache will be builtin in the docker image. # Initial cache can be injected in the docker image, see hysop/ci/utils/run_ci.sh.
echo "Cache directory '$CACHE_DIR' was not found." echo "Cache directory '$CACHE_DIR' does not exist, trying to use backup cache directory."
if [[ -d "${BACKUP_CACHE_DIR}" ]]; then if [[ "${HAS_BACKUP_CACHE_DIR}" = true ]]; then
echo "Backup cache directory '${BACKUP_CACHE_DIR}' was found." if [[ -d "${BACKUP_CACHE_DIR}" ]]; then
cp -r ${BACKUP_CACHE_DIR}/* "${HOME}/.cache" echo "Backup cache directory '${BACKUP_CACHE_DIR}' was found."
elif [[ -z "${BACKUP_CACHE_DIR}" ]]; then rsync -rtvu "${BACKUP_CACHE_DIR}/" "${HYSOP_CACHE_DIR}/"
echo "No backup cache directory has been specified." else
echo "Backup directory '${BACKUP_CACHE_DIR}' does not exist."
fi
else else
echo "Backup directory '${BACKUP_CACHE_DIR}' was not found." echo "No backup cache directory has been specified."
fi fi
fi fi
mkdir -p "${HYSOP_CACHE_DIR}"
mkdir -p "${CACHE_DIR}"
fi fi
mkdir -p "${HOME}/.cache"
mkdir -p "${CACHE_DIR}"
export PYTHONPATH="$INSTALL_DIR/lib/python2.7/site-packages:$INSTALL_DIR:$PYTHONPATH" export PYTHONPATH="${INSTALL_DIR}/lib/python2.7/site-packages:${INSTALL_DIR}"
export MPLBACKEND='cairo' export MPLBACKEND='cairo'
export HYSOP_VERBOSE=0 export HYSOP_VERBOSE=0
export HYSOP_DEBUG=0 export HYSOP_DEBUG=0
...@@ -81,7 +86,7 @@ echo ...@@ -81,7 +86,7 @@ echo
echo "Default testing OpenCL platform is:" echo "Default testing OpenCL platform is:"
${PYTHON_EXECUTABLE} -c 'import hysop; from hysop.testsenv import iter_clenv; print next(iter(iter_clenv()));' ${PYTHON_EXECUTABLE} -c 'import hysop; from hysop.testsenv import iter_clenv; print next(iter(iter_clenv()));'
RUN_TESTS=${RUN_TESTS:-true} RUN_TESTS=${RUN_TESTS:-false}
RUN_EXAMPLES=${RUN_EXAMPLES:-false} RUN_EXAMPLES=${RUN_EXAMPLES:-false}
RUN_LONG_TESTS=${RUN_LONG_TESTS:-false} RUN_LONG_TESTS=${RUN_LONG_TESTS:-false}
...@@ -129,15 +134,15 @@ if [ "$RUN_TESTS" = true ]; then ...@@ -129,15 +134,15 @@ if [ "$RUN_TESTS" = true ]; then
hysop_test "operator/tests/test_poisson.py" hysop_test "operator/tests/test_poisson.py"
hysop_test "operator/tests/test_solenoidal_projection.py" hysop_test "operator/tests/test_solenoidal_projection.py"
hysop_test "operator/tests/test_poisson_curl.py" hysop_test "operator/tests/test_poisson_curl.py"
$HYSOP_DIR/fields/tests/test_cartesian.sh ${HYSOP_DIR}/fields/tests/test_cartesian.sh
fi fi
if [ "$RUN_LONG_TESTS" = true ]; then if [ "${RUN_LONG_TESTS}" = true ]; then
hysop_test "backend/device/codegen/kernels/tests/test_directional_advection.py" hysop_test "backend/device/codegen/kernels/tests/test_directional_advection.py"
hysop_test "backend/device/codegen/kernels/tests/test_directional_remesh.py" hysop_test "backend/device/codegen/kernels/tests/test_directional_remesh.py"
fi fi
if [ "$RUN_EXAMPLES" = true ]; then if [ "${RUN_EXAMPLES}" = true ]; then
example_test "analytic/analytic.py" example_test "analytic/analytic.py"
example_test "scalar_diffusion/scalar_diffusion.py" example_test "scalar_diffusion/scalar_diffusion.py"
example_test "scalar_advection/scalar_advection.py" example_test "scalar_advection/scalar_advection.py"
...@@ -154,8 +159,14 @@ if [ "$RUN_EXAMPLES" = true ]; then ...@@ -154,8 +159,14 @@ if [ "$RUN_EXAMPLES" = true ]; then
example_test "particles_above_salt/particles_above_salt_symmetrized.py" example_test "particles_above_salt/particles_above_salt_symmetrized.py"
fi fi
if [ "$HAS_CACHE_DIR" = true ]; then if [ "${HAS_CACHE_DIR}" = true ]; then
cp -r ${HOME}/.cache/* $CACHE_DIR echo
echo
ls "${HYSOP_CACHE_DIR}"
echo
ls "${CACHE_DIR}"
echo
rsync -rtvu "${HYSOP_CACHE_DIR}/" "${CACHE_DIR}/"
find "${CACHE_DIR}" -name '*.lock' -delete find "${CACHE_DIR}" -name '*.lock' -delete
fi fi
......
#!/bin/bash #!/bin/bash
set -e set -feux -o pipefail
echo "HOST" echo "HOST"
uname -a uname -a
echo echo
......
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