From bad5420f367cfc656df92f81a956504230bb1ec6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pablo=20Correa=20G=C3=B3mez?= Date: Thu, 29 Jan 2026 15:28:46 +0100 Subject: [PATCH] ci: fix typo and more printing in generate_build_jobs MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit There is usually a benefit of having CI jobs print properly what is going on. Signed-off-by: Pablo Correa Gómez Part-of: --- .ci/lib/generate_build_jobs.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.ci/lib/generate_build_jobs.py b/.ci/lib/generate_build_jobs.py index 4e6e361b3..a5446dfec 100755 --- a/.ci/lib/generate_build_jobs.py +++ b/.ci/lib/generate_build_jobs.py @@ -73,7 +73,7 @@ class Device: @property def testing_dependencies(self) -> set[str]: - # TODO: Source this from the APKGBUILD + # TODO: Source this from the APKBUILD return {"postmarketos-mkinitfs-hook-ci"} @cached_property @@ -168,6 +168,7 @@ if __name__ == "__main__": # Get the list of supported devices supported_devices = Device.supported_devices() + print(f"Supported devices: {[d for d in supported_devices.values()]}") archs = ArchTagSet() devices_under_test = set()