aboutsummaryrefslogtreecommitdiff
path: root/sqitch/sqlite
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/sqlite
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/sqlite')
-rw-r--r--sqitch/sqlite/deploy/add_builds_deferred_until.sql7
-rw-r--r--sqitch/sqlite/revert/add_builds_deferred_until.sql7
-rw-r--r--sqitch/sqlite/verify/add_builds_deferred_until.sql7
3 files changed, 21 insertions, 0 deletions
diff --git a/sqitch/sqlite/deploy/add_builds_deferred_until.sql b/sqitch/sqlite/deploy/add_builds_deferred_until.sql
new file mode 100644
index 0000000..db57b53
--- /dev/null
+++ b/sqitch/sqlite/deploy/add_builds_deferred_until.sql
@@ -0,0 +1,7 @@
+-- Deploy guix-build-coordinator:add_builds_deferred_until to sqlite
+
+BEGIN;
+
+ALTER TABLE builds ADD COLUMN deferred_until TEXT;
+
+COMMIT;
diff --git a/sqitch/sqlite/revert/add_builds_deferred_until.sql b/sqitch/sqlite/revert/add_builds_deferred_until.sql
new file mode 100644
index 0000000..ef41b03
--- /dev/null
+++ b/sqitch/sqlite/revert/add_builds_deferred_until.sql
@@ -0,0 +1,7 @@
+-- Revert guix-build-coordinator:add_builds_deferred_until from sqlite
+
+BEGIN;
+
+-- XXX Add DDLs here.
+
+COMMIT;
diff --git a/sqitch/sqlite/verify/add_builds_deferred_until.sql b/sqitch/sqlite/verify/add_builds_deferred_until.sql
new file mode 100644
index 0000000..7e367da
--- /dev/null
+++ b/sqitch/sqlite/verify/add_builds_deferred_until.sql
@@ -0,0 +1,7 @@
+-- Verify guix-build-coordinator:add_builds_deferred_until on sqlite
+
+BEGIN;
+
+-- XXX Add verifications here.
+
+ROLLBACK;