CI: Add --autoremove, ignore removal errors
authorJeffery To <jeffery.to@gmail.com>
Tue, 21 Mar 2023 06:41:48 +0000 (14:41 +0800)
committerJosef Schlehofer <pepe.schlehofer@gmail.com>
Fri, 1 Sep 2023 19:56:15 +0000 (21:56 +0200)
commitac03feb20f007a2448e120ba6971577ed0e65aee
tree478bbe32b48b49b5190ee1ae8145a91c99f7c859
parent9fb0ed26c4a3eb6e1a0efaab800b430170d11aa2
CI: Add --autoremove, ignore removal errors

836b4e1c734f9705bfd8db0da0c04214c2647932 added
--force-removal-of-dependent-packages but it does not do what the commit
message says it does.

When package A depends on package B (package B is a dependency of
package A; package A is a dependent of package B), trying to remove
package B while package A is installed will result in an error. Adding
--force-removal-of-dependent-packages in this case will cause the
removal of package B and package A (package B's dependent).

But in the case of the CI testing step, it is package A that is being
installed and removed. Removing package A with
--force-removal-of-dependent-packages will not cause package B (package
A's dependency) to be removed.

This adds --autoremove to actually remove the package's dependencies.

This also ignores any errors returned by opkg remove as --autoremove can
sometimes falsely return an error[1].

[1]: https://github.com/openwrt/openwrt/issues/12241

Fixes: 836b4e1c734f ("github-ci: add --force-removal-of-dependent-packages")
Signed-off-by: Jeffery To <jeffery.to@gmail.com>
(cherry picked from commit 53a53b8ee38d79083ff59e656798948f9b0a7e68)
.github/workflows/entrypoint.sh