aboutsummaryrefslogtreecommitdiff
path: root/sqitch/sqlite/verify/add_fixed_output_to_derivations.sql
diff options
context:
space:
mode:
authorChristopher Baines <mail@cbaines.net>2020-07-18 18:17:20 +0100
committerChristopher Baines <mail@cbaines.net>2020-08-26 18:40:14 +0100
commit15f27e9d4310242e34729b03dd4227a2b2d193a3 (patch)
tree91464e0d2c6a83b7423eb146cca3b585e4c6529b /sqitch/sqlite/verify/add_fixed_output_to_derivations.sql
parentcdbcd13773ef525ca463609e21a596cb7922894d (diff)
downloadbuild-coordinator-15f27e9d4310242e34729b03dd4227a2b2d193a3.tar
build-coordinator-15f27e9d4310242e34729b03dd4227a2b2d193a3.tar.gz
Store if the derivation is a fixed output derivation
As this information will come in useful when working out how to handle builds for fixed output derivations. Specifically, I want to make it configurable whether to add builds for fixed output derivations if a build already exists for the output, but the derivation is different. Currently, different fixed output derivations can be ignored but it's not possible to just avoid adding more builds for non fixed output derivations while adding builds when fixed output derivations change. This new information will help enable that.
Diffstat (limited to 'sqitch/sqlite/verify/add_fixed_output_to_derivations.sql')
-rw-r--r--sqitch/sqlite/verify/add_fixed_output_to_derivations.sql7
1 files changed, 7 insertions, 0 deletions
diff --git a/sqitch/sqlite/verify/add_fixed_output_to_derivations.sql b/sqitch/sqlite/verify/add_fixed_output_to_derivations.sql
new file mode 100644
index 0000000..b4aacf1
--- /dev/null
+++ b/sqitch/sqlite/verify/add_fixed_output_to_derivations.sql
@@ -0,0 +1,7 @@
+-- Verify guix-build-coordinator:add_fixed_output_to_derivations on sqlite
+
+BEGIN;
+
+-- XXX Add verifications here.
+
+ROLLBACK;