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 /unittests/allplatformstests.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 'unittests/allplatformstests.py')
-rw-r--r-- | unittests/allplatformstests.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/unittests/allplatformstests.py b/unittests/allplatformstests.py index 0b86690..60ff123 100644 --- a/unittests/allplatformstests.py +++ b/unittests/allplatformstests.py @@ -3669,6 +3669,8 @@ class AllPlatformTests(BasePlatformTests): # This checks a bug where if a non-meson project is used as a third # level (or deeper) subproject it doesn't cause a rebuild if the build # files for that project are changed + if os.environ.get('MESON_CI_JOBNAME') == 'linux-bionic-gcc': + raise SkipTest('Unsupported CMake version') testdir = os.path.join(self.unit_test_dir, '85 nested subproject regenerate depends') cmakefile = Path(testdir) / 'subprojects' / 'sub2' / 'CMakeLists.txt' self.init(testdir) |