From 87502f982e90cc09892442c40025c8f64ea66547 Mon Sep 17 00:00:00 2001 From: Oliver Smith Date: Fri, 5 Jun 2026 19:09:09 +0200 Subject: [PATCH] CI: apkbuild-lint: make output more readable Add empty lines around the apkbuild-lint output, so it is easy to spot. Also note when it is starting and if it was successful (vs. not having any output on success). Signed-off-by: Oliver Smith Part-of: --- .ci/lib/apkbuild_linting.py | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.ci/lib/apkbuild_linting.py b/.ci/lib/apkbuild_linting.py index f4b60acd5..9aa49ab5a 100755 --- a/.ci/lib/apkbuild_linting.py +++ b/.ci/lib/apkbuild_linting.py @@ -57,6 +57,10 @@ if __name__ == "__main__": if len(apkbuilds_filtered) < 1: print("No APKBUILDs to lint") sys.exit(0) + + print("Running apkbuild-lint...") + print("") + ret = 0 for apkbuild in apkbuilds_filtered: try: @@ -64,4 +68,9 @@ if __name__ == "__main__": subprocess.run(cmd, text=True, check=True) except subprocess.CalledProcessError as exception: ret = exception.returncode + + print("") + if ret == 0: + print("Success") + sys.exit(ret)