aboutsummaryrefslogtreecommitdiff
path: root/sqitch/pg/verify/build_starts.sql
diff options
context:
space:
mode:
authorChristopher Baines <mail@cbaines.net>2020-06-27 21:33:24 +0100
committerChristopher Baines <mail@cbaines.net>2020-07-01 17:43:38 +0100
commitb5c4e8a4528e2c819176cbe070f6fd8e3e34facd (patch)
tree9d026e882411fc79b0736cdc9c97352d64ca7ef1 /sqitch/pg/verify/build_starts.sql
parentab51128ee62b22971ea8b52d550e09d1c38f8ecd (diff)
downloadbuild-coordinator-b5c4e8a4528e2c819176cbe070f6fd8e3e34facd.tar
build-coordinator-b5c4e8a4528e2c819176cbe070f6fd8e3e34facd.tar.gz
Support storing when builds start
This isn't particularly accurate, what's actually being stored is the current time when the record is inserted in to the coordinator database, but that should happen just before the agent starts the build, so hopefully that's good enough.
Diffstat (limited to 'sqitch/pg/verify/build_starts.sql')
-rw-r--r--sqitch/pg/verify/build_starts.sql7
1 files changed, 7 insertions, 0 deletions
diff --git a/sqitch/pg/verify/build_starts.sql b/sqitch/pg/verify/build_starts.sql
new file mode 100644
index 0000000..248f602
--- /dev/null
+++ b/sqitch/pg/verify/build_starts.sql
@@ -0,0 +1,7 @@
+-- Verify guix-build-coordinator:build_starts on pg
+
+BEGIN;
+
+-- XXX Add verifications here.
+
+ROLLBACK;