linux-purism-librem5: add pmb:kconfigcheck-librem5
- Oct 23, 2024
-
-
Follow up to MR 5562, which introduced category:librem5. Add the related option, so CI actually enforces this category for the Librem 5. [ci:skip-vercheck]: no need to rebuild for this
-
Use check=True instead of running check_returncode() afterwards, it has the same effect and is shorter.
-
pmbootstrap used to exit with 0 if "pmbootstrap lint" failed. This was the case in 2.3.x too, but I assumed this was a regression and fixed it recently in pmbootstrap MR 2398. It turns out that the CI code relied on this assumption, it captured the output of "pmbootstrap lint", and only after it is done it checks if the output wasn't empty and prints it in that case followed by exit 1. Now that pmbootstrap actually exits with 1, CI already fails at "common.run_pmbootstrap" and doesn't get to the part where it would be printed. I think "exit 1" on error is actually the right thing to do in pmbootstrap, so I'll leave that in. Adjust CI to just run "pmbootstrap lint", removing the additional output capture logic that isn't used anywhere besides here. This also has the advantage that we get the output "live", without buffering it completely first.
-