diff options
author | Christopher Baines <mail@cbaines.net> | 2022-10-10 14:06:10 +0100 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2022-10-10 14:06:10 +0100 |
commit | 55d4528c9284dd360891c9703f74d346fe0a2a83 (patch) | |
tree | e1b5816ad729ecb2edabbcb74595407247cb54e0 /scripts | |
parent | 7d0ce41fff0a976034328f9742ed5ea460eb5e50 (diff) | |
download | build-coordinator-55d4528c9284dd360891c9703f74d346fe0a2a83.tar build-coordinator-55d4528c9284dd360891c9703f74d346fe0a2a83.tar.gz |
Add system information in to listing the build allocation plan
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/guix-build-coordinator.in | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/scripts/guix-build-coordinator.in b/scripts/guix-build-coordinator.in index f36dc00..5e02daf 100644 --- a/scripts/guix-build-coordinator.in +++ b/scripts/guix-build-coordinator.in @@ -866,6 +866,8 @@ tags: (simple-format #t "~A: ~A\n" index (assoc-ref build "uuid")) (simple-format #t " derivation name: ~A\n" (assoc-ref build "derivation_name")) + (simple-format #t " system: ~A\n" + (assoc-ref build "system")) (simple-format #t " priority: ~A\n" (assoc-ref build "priority")) (simple-format #t " derived priority: ~A\n" |