aboutsummaryrefslogtreecommitdiff
path: root/sqitch/pg/verify
diff options
context:
space:
mode:
authorChristopher Baines <mail@cbaines.net>2020-12-27 09:11:03 +0000
committerChristopher Baines <mail@cbaines.net>2020-12-27 09:12:46 +0000
commitc76821f570cfb8702e345859f827b06b28fc9b43 (patch)
tree0f4941ae4d1643e00b124e9caa1b603415594737 /sqitch/pg/verify
parent0535368864fa0d8e17ce9ee97ebb98dc67517af2 (diff)
downloadbuild-coordinator-c76821f570cfb8702e345859f827b06b28fc9b43.tar
build-coordinator-c76821f570cfb8702e345859f827b06b28fc9b43.tar.gz
Implement deferring builds
This isn't intended as some time based scheduling, but more as a way to slow down builds by deferring processing them until some point in the future. I'm intending to use this to test fixed output derivations. I can look up all the derivations I want to test, then defer the builds to run spread out across some period. This feature saves having to submit the builds gradually.
Diffstat (limited to 'sqitch/pg/verify')
-rw-r--r--sqitch/pg/verify/add_builds_deferred_until.sql7
1 files changed, 7 insertions, 0 deletions
diff --git a/sqitch/pg/verify/add_builds_deferred_until.sql b/sqitch/pg/verify/add_builds_deferred_until.sql
new file mode 100644
index 0000000..b6cce04
--- /dev/null
+++ b/sqitch/pg/verify/add_builds_deferred_until.sql
@@ -0,0 +1,7 @@
+-- Verify guix-build-coordinator:add_builds_deferred_until on pg
+
+BEGIN;
+
+-- XXX Add verifications here.
+
+ROLLBACK;