aboutsummaryrefslogtreecommitdiff
path: root/guix-qa-frontpage/view/patches.scm
diff options
context:
space:
mode:
authorChristopher Baines <mail@cbaines.net>2023-11-02 19:46:44 +0000
committerChristopher Baines <mail@cbaines.net>2023-11-02 20:09:25 +0000
commitfd830d61717c8811bf2491e2fd34df8f7884a6ef (patch)
tree35cf8e21ec83e5616e9ac68633b37ce7d323c8cf /guix-qa-frontpage/view/patches.scm
parentbd3c0fe269b8aa39b36b09562fbc955bcc67c8a4 (diff)
downloadqa-frontpage-fd830d61717c8811bf2491e2fd34df8f7884a6ef.tar
qa-frontpage-fd830d61717c8811bf2491e2fd34df8f7884a6ef.tar.gz
Start to better describe when builds are waiting to happen
Don't use the same styling as failed builds on the issue page, and also separate out the systems which don't count towards the issue status.
Diffstat (limited to 'guix-qa-frontpage/view/patches.scm')
-rw-r--r--guix-qa-frontpage/view/patches.scm8
1 files changed, 8 insertions, 0 deletions
diff --git a/guix-qa-frontpage/view/patches.scm b/guix-qa-frontpage/view/patches.scm
index 5eecbd0..3fffa3b 100644
--- a/guix-qa-frontpage/view/patches.scm
+++ b/guix-qa-frontpage/view/patches.scm
@@ -35,6 +35,10 @@
'(span (@ (aria-label "status: purple")
(class "purple-dot"))
(*ENTITY* "#10005")))
+ ((eq? status 'waiting-for-build-results)
+ '(span (@ (aria-label "status: lightblue")
+ (class "lightblue-dot"))
+ "?"))
((eq? status 'patches-missing)
'(span (@ (aria-label "status: pink")
(class "pink-dot"))
@@ -144,6 +148,10 @@ will appear first.")
`((span (@ (aria-label "status: purple")
(class "purple-dot"))
(*ENTITY* "#10005"))))
+ ((eq? status 'waiting-for-build-results)
+ `((span (@ (aria-label "status: lightblue")
+ (class "lightblue-dot"))
+ "?")))
((eq? status 'patches-missing)
`((span (@ (aria-label "status: pink")
(class "pink-dot"))