From 9ab02ada2ce231c535576f0123f3cab4be295410 Mon Sep 17 00:00:00 2001 From: Oliver Smith Date: Mon, 12 Aug 2024 19:35:17 +0200 Subject: [PATCH] CI: kconfig check: use --keep-going (MR 5491) Use the new --keep-going parameter so the check doesn't stop on first error. This was recently added in pmbootstrap MR 2384 to make the default behavior more userfriendly. [ci:skip-build]: already built successfully in CI --- .ci/lib/check_changed_kernels.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.ci/lib/check_changed_kernels.py b/.ci/lib/check_changed_kernels.py index 1592b17a2..27cdd93b1 100755 --- a/.ci/lib/check_changed_kernels.py +++ b/.ci/lib/check_changed_kernels.py @@ -17,7 +17,7 @@ def check_kconfig(pkgnames): pkgname = pkgnames[i] print(f" ({i+1}/{len(pkgnames)}) {pkgname}") - p = subprocess.run(["pmbootstrap", "kconfig", "check", pkgname], + p = subprocess.run(["pmbootstrap", "kconfig", "check", "--keep-going", pkgname], check=False) if p.returncode: @@ -27,7 +27,7 @@ def check_kconfig(pkgnames): def check_kconfig_all(): - p = subprocess.run(["pmbootstrap", "kconfig", "check"], check=False) + p = subprocess.run(["pmbootstrap", "kconfig", "check", "--keep-going"], check=False) return p.returncode == 0