diff options
author | Mathieu Othacehe <othacehe@gnu.org> | 2021-04-19 13:22:41 +0200 |
---|---|---|
committer | Mathieu Othacehe <othacehe@gnu.org> | 2021-04-20 10:15:04 +0200 |
commit | 935ede4f0687c4a2a4ba1523111c8aa8d81120e9 (patch) | |
tree | 662823436cf8c8aa3eb9c60f988f261f993f62d7 | |
parent | 53ed3e4bbda8ccc7f4d8c20564c6ff3ac2e0a726 (diff) | |
download | 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.
-rw-r--r-- | guix/ci.scm | 4 |
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 |