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

reenable examples for ci

parent 27fe537f
No related branches found
No related tags found
1 merge request!16MPI operators
Pipeline #42017 failed
#!/bin/bash #!/bin/bash
set -feux -o pipefail set -feu -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 -feux -o pipefail set -feu -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 -feux -o pipefail set -feu -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 -feux -o pipefail set -feu -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 -feux -o pipefail set -feu -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 -feux -o pipefail set -feu -o pipefail
PYTHON_EXECUTABLE=${PYTHON_EXECUTABLE:-python2.7} PYTHON_EXECUTABLE=${PYTHON_EXECUTABLE:-python2.7}
...@@ -87,7 +87,7 @@ echo "Default testing OpenCL platform is:" ...@@ -87,7 +87,7 @@ 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:-true}
RUN_EXAMPLES=${RUN_EXAMPLES:-false} RUN_EXAMPLES=${RUN_EXAMPLES:-true}
RUN_LONG_TESTS=${RUN_LONG_TESTS:-false} RUN_LONG_TESTS=${RUN_LONG_TESTS:-false}
COMMON_TEST_OPTIONS='' COMMON_TEST_OPTIONS=''
......
#!/bin/bash #!/bin/bash
set -feux -o pipefail set -feu -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