diff options
author | Daniel Mensinger <daniel@mensinger-ka.de> | 2022-01-30 16:29:34 +0100 |
---|---|---|
committer | Eli Schwartz <eschwartz93@gmail.com> | 2022-02-03 11:25:59 -0500 |
commit | 2e2ca5a877ce8569e9daf78c3a5b32a423531d97 (patch) | |
tree | 058b897228fe73fa1f0786b0c514aafed3dbf410 /run_project_tests.py | |
parent | 63870da44960e39d4e1c7d986f0e408bd1e14c74 (diff) | |
download | meson-2e2ca5a877ce8569e9daf78c3a5b32a423531d97.zip meson-2e2ca5a877ce8569e9daf78c3a5b32a423531d97.tar.gz meson-2e2ca5a877ce8569e9daf78c3a5b32a423531d97.tar.bz2 |
cmake: ci: Skip tests on Ubuntu Bionic where CMake is stuck on 3.10
Diffstat (limited to 'run_project_tests.py')
-rwxr-xr-x | run_project_tests.py | 2 |
1 files changed, 1 insertions, 1 deletions
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), |