test cases/15 llvm: Skip cmake when llvm == 17.0

There's a bug in the zstd find_package module:
e7fc7540da (r130257253)
1.2
Nirbheek Chauhan 1 year ago
parent 63b5a02353
commit 49d98cf487
  1. 5
      test cases/frameworks/15 llvm/meson.build
  2. 6
      test cases/frameworks/15 llvm/test.json

@ -8,6 +8,11 @@ if not d.found()
error('MESON_SKIP_TEST llvm not found.')
endif
if method != 'config-tool' and d.version().startswith('17.0') and host_machine.system() == 'windows'
# https://github.com/llvm/llvm-project/commit/e7fc7540daa9333f0be4f380fc9c619236d17f57#r130257253
error('MESON_SKIP_TEST broken llvm cmake files on MSYS2')
endif
modules_to_find = [
'bitwriter', 'asmprinter', 'executionengine', 'mcjit', 'target',
'nativecodegen', 'amdgpu', 'engine'

@ -2,9 +2,9 @@
"matrix": {
"options": {
"method": [
{ "val": "config-tool", "skip_on_jobname": ["msys2-gcc"]},
{ "val": "cmake", "skip_on_jobname": ["msys2-gcc"] },
{ "val": "combination", "skip_on_jobname": ["msys2-gcc"]}
{ "val": "config-tool", "skip_on_jobname": ["msys2-gcc"] },
{ "val": "cmake", "skip_on_jobname": ["msys2"] },
{ "val": "combination", "skip_on_jobname": ["msys2"] }
],
"link-static": [
{ "val": true, "skip_on_jobname": ["opensuse"] },

Loading…
Cancel
Save