diff options
author | Hauke Mehrtens <hauke@hauke-m.de> | 2022-11-02 22:17:51 +0100 |
---|---|---|
committer | Christian Marangi <ansuelsmth@gmail.com> | 2022-12-04 17:36:59 +0100 |
commit | 8ac2cf6de998c93c5bb4e7f2471b32fbb97aea80 (patch) | |
tree | 0b49130660f11c17ce8f605296ebdc4087c97efc | |
parent | db347be0b3eab1625c553a47e0089b3f473b0ed7 (diff) | |
download | upstream-8ac2cf6de998c93c5bb4e7f2471b32fbb97aea80.tar.gz upstream-8ac2cf6de998c93c5bb4e7f2471b32fbb97aea80.tar.bz2 upstream-8ac2cf6de998c93c5bb4e7f2471b32fbb97aea80.zip |
CI: packages.yml: Fix usage of pre-build tools
Activate CONFIG_AUTOREMOVE to match the settings used to build the
pre-build tools. This has to match the pre-build tools to not rebuild
them.
This prevents the tools being rebuild in packages.yml.
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
(cherry picked from commit 6645a019f88e2e6930fe63d1a51046a8e72445a0)
-rw-r--r-- | .github/workflows/packages.yml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/.github/workflows/packages.yml b/.github/workflows/packages.yml index bf918fe562..49d795c122 100644 --- a/.github/workflows/packages.yml +++ b/.github/workflows/packages.yml @@ -112,6 +112,8 @@ jobs: echo CONFIG_ALL=y >> .config echo CONFIG_ALL_KMODS=y >> .config echo CONFIG_ALL_NONSHARED=y >> .config + echo CONFIG_DEVEL=y >> .config + echo CONFIG_AUTOREMOVE=y >> .config ./scripts/ext-toolchain.sh \ --toolchain ${{ env.TOOLCHAIN_FILE }}/toolchain-* \ |