jhnc-oss / yocto-build

Yocto Build Container Environment using podman(1)
MIT License
1 stars 1 forks source link

Parse recipes as part of CI builds #31

Closed offa closed 2 years ago

offa commented 2 years ago

Parsing of relevant recipes in the CI build. At the moment only one tree is verified.

h5b commented 2 years ago

@offa

While being a cheap shot we might just call

bitbake -n world

This seems to spot at least issues on recipe/packagegroup level (missing providers due to typo and the likes).

h5b commented 2 years ago

Well, after some more thought bitbake -n world seems better placed in a nightly regression run as it is pretty time-consuming.

offa commented 2 years ago

Sounds good, even if it's only on a cron build it might catch some mistakes. PR follows ...