llvm: Bump broken micro version for CI

16.0.4 didn't fix the LLVM breakage.
pull/11811/head
Nirbheek Chauhan 2 years ago committed by Eli Schwartz
parent 11a4cb7aad
commit aee1bb2081
  1. 4
      test cases/frameworks/15 llvm/meson.build

@ -18,7 +18,7 @@ if(method == 'combination')
) )
# Bump the version along till the LLVM bug is fixed # 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') message('Skipping modules with cmake, see https://github.com/mesonbuild/meson/issues/11642')
llvm_cm_dep = dependency( llvm_cm_dep = dependency(
'llvm', 'llvm',
@ -81,7 +81,7 @@ else
endif endif
# Bump the version along till the LLVM bug is fixed # 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') message('Skipping modules with cmake, see https://github.com/mesonbuild/meson/issues/11642')
llvm_dep = dependency( llvm_dep = dependency(
'llvm', 'llvm',

Loading…
Cancel
Save