aboutsummaryrefslogtreecommitdiff
path: root/guix/ci.scm
diff options
context:
space:
mode:
authorMathieu Othacehe <othacehe@gnu.org>2021-05-26 14:54:43 +0200
committerMathieu Othacehe <othacehe@gnu.org>2021-05-26 15:29:32 +0200
commit316d9e08172e6f665c6a30ed9044f0404d8ad60d (patch)
tree17f7264b2ab1da81d99220a11e362f12d9c5f06e /guix/ci.scm
parenta2155f41f53eeb5000857e7160c5ad0916dc9bfa (diff)
downloadguix-316d9e08172e6f665c6a30ed9044f0404d8ad60d.tar
guix-316d9e08172e6f665c6a30ed9044f0404d8ad60d.tar.gz
guix: ci: Add spec support to latest-evaluations.
* guix/ci.scm (latest-evaluations): Add spec parameter support.
Diffstat (limited to 'guix/ci.scm')
-rw-r--r--guix/ci.scm23
1 files changed, 15 insertions, 8 deletions
diff --git a/guix/ci.scm b/guix/ci.scm
index 44cf0c5074..0af04ff97d 100644
--- a/guix/ci.scm
+++ b/guix/ci.scm
@@ -154,14 +154,21 @@ string such as \"x86_64-linux\"), restrict to builds for SYSTEM."
(number->string evaluation)))))
(json->evaluation evaluation)))
-(define* (latest-evaluations url #:optional (limit %query-limit))
- "Return the latest evaluations performed by the CI server at URL."
- (map json->evaluation
- (vector->list
- (json->scm
- (http-fetch (string-append url "/api/evaluations?nr="
- (number->string limit)))))))
-
+(define* (latest-evaluations url
+ #:optional (limit %query-limit)
+ #:key spec)
+ "Return the latest evaluations performed by the CI server at URL. If SPEC
+is passed, only consider the evaluations for the given SPEC specification."
+ (let ((spec (if spec
+ (format #f "&spec=~a" spec)
+ "")))
+ (map json->evaluation
+ (vector->list
+ (json->scm
+ (http-fetch
+ (string-append url "/api/evaluations?nr="
+ (number->string limit)
+ spec)))))))
(define* (evaluations-for-commit url commit #:optional (limit %query-limit))
"Return the evaluations among the latest LIMIT evaluations that have COMMIT