guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[no subject]


From: Mathieu Othacehe
Date: Fri, 17 Dec 2021 09:59:43 -0500 (EST)

branch: master
commit 5314c5dc4b0d7adf404ec16f90fdddcbbefb7b5c
Author: Mathieu Othacehe <othacehe@gnu.org>
AuthorDate: Fri Dec 17 15:54:23 2021 +0100

    templates: Factorize completed? procedures.
    
    Also distinguish between a build that is completed from a build that is
    completed with some available logs.
    
    * src/cuirass/templates.scm (completed?, completed-with-logs?): New
    procedures.
---
 src/cuirass/templates.scm | 36 +++++++++++++++---------------------
 1 file changed, 15 insertions(+), 21 deletions(-)

diff --git a/src/cuirass/templates.scm b/src/cuirass/templates.scm
index e70d42b..c9f3ccb 100644
--- a/src/cuirass/templates.scm
+++ b/src/cuirass/templates.scm
@@ -57,6 +57,15 @@
             badge-svg
             javascript-licenses))
 
+(define (completed? status)
+    (or (= (build-status succeeded) status)
+        (= (build-status failed) status)
+        (= (build-status failed-dependency) status)))
+
+(define (completed-with-logs? status)
+    (or (= (build-status succeeded) status)
+        (= (build-status failed) status)))
+
 (define (navigation-items navigation)
   (match navigation
     (() '())
@@ -666,9 +675,6 @@ the existing SPEC otherwise."
   "Return HTML showing details for the BUILD."
   (define status (assq-ref build #:status))
   (define weather (assq-ref build #:weather))
-  (define completed?
-    (or (= (build-status succeeded) status)
-        (= (build-status failed) status)))
 
   (define evaluation
     (assq-ref build #:eval-id))
@@ -682,10 +688,6 @@ the existing SPEC otherwise."
     (define status
       (assq-ref build #:status))
 
-    (define completed?
-      (or (= (build-status succeeded) status)
-          (= (build-status failed) status)))
-
     `(tr
       (td (span (@ (class ,(status-class status))
                    (title ,(status-title status))
@@ -695,7 +697,7 @@ the existing SPEC otherwise."
           (a (@ (href "/build/" ,(assq-ref build #:id) "/details"))
              ,(assq-ref build #:id)))
       (td ,(assq-ref build #:nix-name))
-      (td ,(if completed?
+      (td ,(if (completed? status)
                (time->string (assq-ref build #:stoptime))
                "—"))))
 
@@ -747,7 +749,7 @@ the existing SPEC otherwise."
                                   " seconds"))
                   (else "—")))))
       (tr (th "Finished")
-          (td ,(if completed?
+          (td ,(if (completed? status)
                    (time->string (assq-ref build #:stoptime))
                    "—")))
       (tr (th "Weather")
@@ -1134,10 +1136,6 @@ and BUILD-MAX are global minimal and maximal (stoptime, 
rowid) pairs."
     (define weather
       (assq-ref build #:weather))
 
-    (define completed?
-      (or (= (build-status succeeded) status)
-          (= (build-status failed) status)))
-
     `(tr
       (td (span (@ (class ,(status-class status))
                    (title ,(status-title status))
@@ -1151,13 +1149,13 @@ and BUILD-MAX are global minimal and maximal (stoptime, 
rowid) pairs."
           (a (@ (href "/build/" ,(assq-ref build #:id) "/details"))
              ,(assq-ref build #:id)))
       (td ,(assq-ref build #:jobset))
-      (td ,(if completed?
+      (td ,(if (completed? status)
                (time->string (assq-ref build #:stoptime))
                "—"))
       (td ,(assq-ref build #:job))
       (td ,(assq-ref build #:nixname))
       (td ,(assq-ref build #:system))
-      (td ,(if completed?
+      (td ,(if (completed-with-logs? status)
                `(a (@ (href "/build/" ,(assq-ref build #:id) "/log/raw"))
                    "raw")
                "—"))))
@@ -1393,10 +1391,6 @@ and BUILD-MAX are global minimal and maximal row 
identifiers."
     (define status
       (assq-ref build #:buildstatus))
 
-    (define completed?
-      (or (= (build-status succeeded) status)
-          (= (build-status failed) status)))
-
     `(tr
       (td (span (@ (class ,(status-class status))
                    (title ,(status-title status))
@@ -1406,13 +1400,13 @@ and BUILD-MAX are global minimal and maximal row 
identifiers."
           (a (@ (href "/build/" ,(assq-ref build #:id) "/details"))
              ,(assq-ref build #:id)))
       (td ,(assq-ref build #:jobset))
-      (td ,(if completed?
+      (td ,(if (completed? status)
                (time->string (assq-ref build #:stoptime))
                "—"))
       (td ,(assq-ref build #:job))
       (td ,(assq-ref build #:nixname))
       (td ,(assq-ref build #:system))
-      (td ,(if completed?
+      (td ,(if (completed-with-logs? status)
                `(a (@ (href "/build/" ,(assq-ref build #:id) "/log/raw"))
                    "raw")
                "—"))))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]