aboutsummaryrefslogtreecommitdiff
path: root/guix-build-coordinator/datastore.scm
diff options
context:
space:
mode:
authorChristopher Baines <mail@cbaines.net>2021-01-16 17:53:32 +0000
committerChristopher Baines <mail@cbaines.net>2021-01-16 17:53:32 +0000
commitef3b1a35ba68fbe7134d5dc5abb4f8441c4b4e3d (patch)
tree5d32e3179fc2ae059d881b8139b6c1eb4f53e6a5 /guix-build-coordinator/datastore.scm
parent9051478c09c79ac8b91cb844b4f24352cb8d81fc (diff)
downloadbuild-coordinator-ef3b1a35ba68fbe7134d5dc5abb4f8441c4b4e3d.tar
build-coordinator-ef3b1a35ba68fbe7134d5dc5abb4f8441c4b4e3d.tar.gz
Move the build result storing logic in to the coordinator module
And out of the datastore. This means that datastore code doesn't have too much logic in it.
Diffstat (limited to 'guix-build-coordinator/datastore.scm')
-rw-r--r--guix-build-coordinator/datastore.scm6
1 files changed, 5 insertions, 1 deletions
diff --git a/guix-build-coordinator/datastore.scm b/guix-build-coordinator/datastore.scm
index 14eed3e..a521911 100644
--- a/guix-build-coordinator/datastore.scm
+++ b/guix-build-coordinator/datastore.scm
@@ -20,7 +20,11 @@
(re-export datastore-list-agents)
(re-export datastore-find-agent)
(re-export datastore-count-build-results)
-(re-export datastore-store-build-result)
+(re-export datastore-insert-build-result)
+(re-export datastore-remove-build-allocation)
+(re-export datastore-mark-build-as-processed)
+(re-export datastore-delete-relevant-outputs-from-unbuilt-outputs)
+(re-export datastore-store-output-metadata)
(re-export datastore-store-build-start)
(re-export datastore-find-build-starts)
(re-export datastore-count-setup-failures)