CI fix:specify libgpiod version
This commit updates the repo's meson.build file to specify the version
of libgpiod which is being used. This is required to explicitly specify
version of libgpiod as the codebase is using libgpiod v1.6.x APIs which
are not compatible with v2.0 APIs.
Test:
```
- run local CI and see that it passes
- run bitbake and see that openbmc image is successfully generated
```
Change-Id: I1e7610eaacefb7eaab0a8ecbd1007b106babd9b0
Signed-off-by: Souvik Roy <souvikroyofficial10@gmail.com>
diff --git a/meson.build b/meson.build
index e30cae8..90c9d23 100644
--- a/meson.build
+++ b/meson.build
@@ -85,7 +85,11 @@
)
endif
-libgpiodcxx = dependency('libgpiodcxx', default_options: ['bindings=cxx'])
+libgpiodcxx = dependency(
+ 'libgpiodcxx',
+ default_options: ['bindings=cxx'],
+ version: '<1.7.0',
+)
libvpdecc_src = files('vpdecc/vpdecc.c', 'vpdecc/vpdecc_support.c')