-
Notifications
You must be signed in to change notification settings - Fork 25
Description
Hi,
While looking at C/CD results in packages feed (openwrt/packages#26335), I see that packages are not tested inside the container. Checking for any packages were built is false positive, because:
Run if [ -n "$(find . -maxdepth [1](https://github.com/openwrt/packages/actions/runs/14457032138/job/40542388169#step:13:1) -type f -name '*.ipk' -print -quit)" ]; then
No *.ipk files found
It is indeed looking for .ipk packages, while in the master branch, there are .apk packages now looking at https://downloads.openwrt.org/snapshots/targets/mvebu/cortexa9/packages/
I see there is already: #28 , but it does more changes than it should. In branches, we do use the latest version of this repository. If we force it to use only .apk files, then we need to pin the version there. So, supporting both could make sense.
@ynezz , @aparcar - Can you please take a look? I did not want to ping more people, but this is really necessary for contributions in feeds to have it working inside feeds, thanks. 🙌