Skip to content
Snippets Groups Projects
Unverified Commit 4432b6f5 authored by Oliver Smith's avatar Oliver Smith
Browse files

CI: build_changd_aports: fix systemd pkgs in print (MR 5684)

Fix that in the checksum / build messages for systemd packages it would
print the wrong package list.
parent a64120a3
No related branches found
No related tags found
1 merge request!5684ci: build_changed_aports: Don't exit prematurely if pkg list is empty, support verifying checksums of pkgs in systemd repo
Pipeline #210168 passed
......@@ -115,9 +115,9 @@ if __name__ == "__main__":
if verify_only:
# [ci:skip-build]: verify checksums
print("WARNING: not building changed packages for extra-repos/systemd: ([ci:skip-build])!")
print("verifying checksums: " + ", ".join(packages))
print("verifying checksums: " + ", ".join(systemd_pkgs))
verify_checksums(systemd_pkgs, arch)
else:
# Build packages
print(f"building in strict mode for {arch}, from extra-repos/systemd: {', '.join(packages)}")
print(f"building in strict mode for {arch}, from extra-repos/systemd: {', '.join(systemd_pkgs)}")
build_strict(systemd_pkgs, arch)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment