diff options
author | Mathieu Othacehe <othacehe@gnu.org> | 2020-12-07 15:11:11 +0100 |
---|---|---|
committer | Mathieu Othacehe <othacehe@gnu.org> | 2020-12-07 16:15:55 +0100 |
commit | 9087af0323fb88d6269016fb93f3a3d206b0f42f (patch) | |
tree | 4e75e010c221b795a04957fee2651b071ed264b3 | |
parent | d8ae7852057d5c1818c9c8bb77e8c41407a0d985 (diff) | |
download | guix-9087af0323fb88d6269016fb93f3a3d206b0f42f.tar.gz guix-9087af0323fb88d6269016fb93f3a3d206b0f42f.zip |
ci: Add evaluation field to build record.
* guix/ci.scm (<build>): Add "evaluation" field.
-rw-r--r-- | guix/ci.scm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/guix/ci.scm b/guix/ci.scm index 7a03befc7c..44b7673a91 100644 --- a/guix/ci.scm +++ b/guix/ci.scm @@ -31,6 +31,7 @@ build? build-id build-derivation + build-evaluation build-system build-status build-timestamp @@ -71,6 +72,7 @@ json->build (id build-id "id") ;integer (derivation build-derivation) ;string | #f + (evaluation build-evaluation) ;integer (system build-system) ;string (status build-status "buildstatus" ) ;integer (timestamp build-timestamp) ;integer |