From cd3a15a4807e6011f63504f36706c730961618b2 Mon Sep 17 00:00:00 2001 From: Aster Boese Date: Sat, 27 Jun 2026 21:42:19 +0200 Subject: [PATCH] gitlab-ci: check kconfig when APKBUILD of kernel package is modified Previously, kconfigcheck would only run if the kernel configs of a kernel package where changed. This means that, if a kernel package is not directly upgraded, the kernel config will most likely never be touched, leading to extremely out-of-date kernel configs. Checking when the APKBUILD is modified instead would force the check at every modification of a kernel package, forcing more up-to-date configs. Signed-off-by: Aster Boese Part-of: --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index ca2704768..5ff64cb65 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -149,7 +149,7 @@ kernel-kconfig: allow_failure: true - if: *mr_rule changes: - - device/*/linux-*/config-* + - device/*/linux-*/APKBUILD script: - .ci/lib/gitlab_prepare_ci.sh - .ci/kconfig.sh