aboutsummaryrefslogtreecommitdiff
path: root/guix/ci.scm
diff options
context:
space:
mode:
authorMathieu Othacehe <othacehe@gnu.org>2021-04-19 13:22:41 +0200
committerMathieu Othacehe <othacehe@gnu.org>2021-04-20 10:15:04 +0200
commit935ede4f0687c4a2a4ba1523111c8aa8d81120e9 (patch)
tree662823436cf8c8aa3eb9c60f988f261f993f62d7 /guix/ci.scm
parent53ed3e4bbda8ccc7f4d8c20564c6ff3ac2e0a726 (diff)
downloadguix-935ede4f0687c4a2a4ba1523111c8aa8d81120e9.tar
guix-935ede4f0687c4a2a4ba1523111c8aa8d81120e9.tar.gz
guix: ci: Rename the checkout 'input' field.
The checkout "input" field has been renamed "channel" in Cuirass 1.0 release. * guix/ci.scm (<checkout>)[input]: Rename it into ... [channel]: ... this new field.
Diffstat (limited to 'guix/ci.scm')
-rw-r--r--guix/ci.scm4
1 files changed, 2 insertions, 2 deletions
diff --git a/guix/ci.scm b/guix/ci.scm
index f04109112c..c70e5bb9e6 100644
--- a/guix/ci.scm
+++ b/guix/ci.scm
@@ -43,7 +43,7 @@
checkout?
checkout-commit
- checkout-input
+ checkout-channel
evaluation?
evaluation-id
@@ -94,7 +94,7 @@
(define-json-mapping <checkout> make-checkout checkout?
json->checkout
(commit checkout-commit) ;string (SHA1)
- (input checkout-input)) ;string (name)
+ (channel checkout-channel)) ;string (name)
(define-json-mapping <evaluation> make-evaluation evaluation?
json->evaluation