aboutsummaryrefslogtreecommitdiff
path: root/run_project_tests.py
diff options
context:
space:
mode:
authorDaniel Mensinger <daniel@mensinger-ka.de>2020-01-31 22:13:59 +0100
committerJussi Pakkanen <jpakkane@gmail.com>2020-02-11 19:02:25 +0200
commit038e0293c67f1013940020a750e42ef71d1721ce (patch)
tree36e1d85ba2eb6d48ded6fa1bf703de33744ea25e /run_project_tests.py
parent1e4eeccb0f23f245ff8b65a51de03cda38632df4 (diff)
downloadmeson-038e0293c67f1013940020a750e42ef71d1721ce.zip
meson-038e0293c67f1013940020a750e42ef71d1721ce.tar.gz
meson-038e0293c67f1013940020a750e42ef71d1721ce.tar.bz2
ci: Add Fedora and OpenSUSE images
Diffstat (limited to 'run_project_tests.py')
-rwxr-xr-xrun_project_tests.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/run_project_tests.py b/run_project_tests.py
index aac9f9d..9965bc3 100755
--- a/run_project_tests.py
+++ b/run_project_tests.py
@@ -118,6 +118,7 @@ failing_logs = []
print_debug = 'MESON_PRINT_TEST_OUTPUT' in os.environ
under_ci = 'CI' in os.environ
under_xenial_ci = under_ci and ('XENIAL' in os.environ)
+skip_scientific = under_ci and ('SKIP_SCIENTIFIC' in os.environ)
do_debug = under_ci or print_debug
no_meson_log_msg = 'No meson-log.txt found.'
@@ -633,6 +634,11 @@ def skippable(suite, test):
if test.endswith('29 blocks'):
return True
+ # Scientific libraries are skippable on certain systems
+ # See the discussion here: https://github.com/mesonbuild/meson/pull/6562
+ if any([test.endswith(x) for x in ['17 mpi', '25 hdf5', '30 scalapack']]) and skip_scientific:
+ return True
+
# No frameworks test should be skipped on linux CI, as we expect all
# prerequisites to be installed
if mesonlib.is_linux():