From 984c0d8c80f72ffbb183ed39ce256b70d464682b Mon Sep 17 00:00:00 2001 From: Christopher Baines Date: Sun, 17 Jan 2021 16:01:30 +0000 Subject: Add tags for agents This will allow doing things like restricting builds by matching up there tags to the tags of the agents. --- sqitch/pg/deploy/add_agent_tags.sql | 7 +++++++ sqitch/pg/revert/add_agent_tags.sql | 7 +++++++ sqitch/pg/verify/add_agent_tags.sql | 7 +++++++ 3 files changed, 21 insertions(+) create mode 100644 sqitch/pg/deploy/add_agent_tags.sql create mode 100644 sqitch/pg/revert/add_agent_tags.sql create mode 100644 sqitch/pg/verify/add_agent_tags.sql (limited to 'sqitch/pg') diff --git a/sqitch/pg/deploy/add_agent_tags.sql b/sqitch/pg/deploy/add_agent_tags.sql new file mode 100644 index 0000000..ad061a3 --- /dev/null +++ b/sqitch/pg/deploy/add_agent_tags.sql @@ -0,0 +1,7 @@ +-- Deploy guix-build-coordinator:add_agent_tags to pg + +BEGIN; + +-- XXX Add DDLs here. + +COMMIT; diff --git a/sqitch/pg/revert/add_agent_tags.sql b/sqitch/pg/revert/add_agent_tags.sql new file mode 100644 index 0000000..1d6e34c --- /dev/null +++ b/sqitch/pg/revert/add_agent_tags.sql @@ -0,0 +1,7 @@ +-- Revert guix-build-coordinator:add_agent_tags from pg + +BEGIN; + +-- XXX Add DDLs here. + +COMMIT; diff --git a/sqitch/pg/verify/add_agent_tags.sql b/sqitch/pg/verify/add_agent_tags.sql new file mode 100644 index 0000000..b374187 --- /dev/null +++ b/sqitch/pg/verify/add_agent_tags.sql @@ -0,0 +1,7 @@ +-- Verify guix-build-coordinator:add_agent_tags on pg + +BEGIN; + +-- XXX Add verifications here. + +ROLLBACK; -- cgit v1.2.3