From f44fff68306526a23f745d97c1d5803b96b434cb Mon Sep 17 00:00:00 2001 From: John Doe Date: Mon, 25 Oct 2021 14:20:02 +0800 Subject: [PATCH] Build: use UPX --- .github/workflows/lo-test.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/lo-test.yml b/.github/workflows/lo-test.yml index 86c49d7..2606c32 100644 --- a/.github/workflows/lo-test.yml +++ b/.github/workflows/lo-test.yml @@ -88,7 +88,8 @@ jobs: find package/ -type d -name luci-app-* | rev | cut -d'/' -f1 | rev | xargs -n1 -i echo CONFIG_PACKAGE_{}=m >> .config cat $GITHUB_WORKSPACE/extra_packages.seed >> .config cat more_luci.txt >> .config - make defconfig && cat .config + make defconfig && sed -i -E 's/# (CONFIG_.*_COMPRESS_UPX) is not set/\1=y/' .config && make defconfig + cat .config - name: Clean build cache if: ${{ github.event.client_payload.package_clean == 'true' || github.event.inputs.device != '' }}