From 29a2ef63e23312af0c13ee1c562b0aeec198c1fd Mon Sep 17 00:00:00 2001 From: eldritch horrors Date: Mon, 11 Mar 2024 09:05:28 +0100 Subject: [PATCH] show hydra job count in trigger step previously we immediately triggered all jobs, now we no longer do. showing the total count at least somewhere is nice to have a rough indication of how much longer a build may still need to run. --- buildbot_nix/__init__.py | 1 + 1 file changed, 1 insertion(+) diff --git a/buildbot_nix/__init__.py b/buildbot_nix/__init__.py index 5552b91..456bf65 100644 --- a/buildbot_nix/__init__.py +++ b/buildbot_nix/__init__.py @@ -71,6 +71,7 @@ class BuildTrigger(steps.BuildStep): self._result_list = [] self.ended = False self.waitForFinishDeferred = None + self.description = f"building {len(jobs)} hydra jobs" super().__init__(**kwargs) def interrupt(self, reason):