ci: Skip gir test on cygwin

This commit is contained in:
Xavier Claessens 2023-08-30 13:41:53 -04:00 committed by Xavier Claessens
parent 08d83a4a97
commit 8758e1353e
2 changed files with 7 additions and 1 deletions

View File

@ -5,6 +5,12 @@ if not gi.found()
error('MESON_SKIP_TEST gobject-introspection not found.')
endif
if host_machine.system() == 'cygwin'
# FIXME: g-ir-scanner seems broken on cygwin:
# ERROR: can't resolve libraries to shared libraries: foo++
error('MESON_SKIP_TEST g-ir-scanner is broken on cygwin.')
endif
gnome = import('gnome')
lib = library('foo++', 'foo.cpp')

View File

@ -1,3 +1,3 @@
{
"skip_on_jobname": ["azure", "macos", "msys2"]
"skip_on_jobname": ["azure", "macos", "msys2", "cygwin"]
}