From 2e2ca5a877ce8569e9daf78c3a5b32a423531d97 Mon Sep 17 00:00:00 2001 From: Daniel Mensinger Date: Sun, 30 Jan 2022 16:29:34 +0100 Subject: cmake: ci: Skip tests on Ubuntu Bionic where CMake is stuck on 3.10 --- run_project_tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'run_project_tests.py') diff --git a/run_project_tests.py b/run_project_tests.py index 5fea660..f48dd0e 100755 --- a/run_project_tests.py +++ b/run_project_tests.py @@ -1059,7 +1059,7 @@ def detect_tests_to_run(only: T.Dict[str, T.List[str]], use_tmp: bool) -> T.List self.stdout_mandatory = stdout_mandatory # expected stdout is mandatory for tests in this category all_tests = [ - TestCategory('cmake', 'cmake', not shutil.which('cmake') or (os.environ.get('compiler') == 'msvc2015' and under_ci)), + TestCategory('cmake', 'cmake', not shutil.which('cmake') or (os.environ.get('compiler') == 'msvc2015' and under_ci) or (os.environ.get('MESON_CI_JOBNAME') == 'linux-bionic-gcc')), TestCategory('common', 'common'), TestCategory('native', 'native'), TestCategory('warning-meson', 'warning', stdout_mandatory=True), -- cgit v1.1