aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNirbheek Chauhan <nirbheek@centricular.com>2023-05-22 17:35:54 +0530
committerNirbheek Chauhan <nirbheek@centricular.com>2023-05-24 02:24:36 +0530
commit6a7cd1350787c0f547050f6e1acdba768c327705 (patch)
treec85b6c440c3a1541fcfbcd049dd71da6fb3320f2
parent3dbeac0463778296cc21a447ee687b46853d1922 (diff)
downloadmeson-6a7cd1350787c0f547050f6e1acdba768c327705.zip
meson-6a7cd1350787c0f547050f6e1acdba768c327705.tar.gz
meson-6a7cd1350787c0f547050f6e1acdba768c327705.tar.bz2
llvm: Bump broken micro version for CI
16.0.4 didn't fix the LLVM breakage.
-rw-r--r--test cases/frameworks/15 llvm/meson.build4
1 files changed, 2 insertions, 2 deletions
diff --git a/test cases/frameworks/15 llvm/meson.build b/test cases/frameworks/15 llvm/meson.build
index 411d6db..3b5f4ae 100644
--- a/test cases/frameworks/15 llvm/meson.build
+++ b/test cases/frameworks/15 llvm/meson.build
@@ -18,7 +18,7 @@ if(method == 'combination')
)
# Bump the version along till the LLVM bug is fixed
- if static and d.version().startswith('16.0') and d.version()[5].to_int() <= 2
+ if static and d.version().startswith('16.0') and d.version()[5].to_int() <= 4
message('Skipping modules with cmake, see https://github.com/mesonbuild/meson/issues/11642')
llvm_cm_dep = dependency(
'llvm',
@@ -81,7 +81,7 @@ else
endif
# Bump the version along till the LLVM bug is fixed
- if static and method == 'cmake' and d.version().startswith('16.0') and d.version()[5].to_int() <= 2
+ if static and method == 'cmake' and d.version().startswith('16.0') and d.version()[5].to_int() <= 4
message('Skipping modules with cmake, see https://github.com/mesonbuild/meson/issues/11642')
llvm_dep = dependency(
'llvm',