diff options
author | Christopher Baines <mail@cbaines.net> | 2019-08-31 12:11:58 +0100 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2019-09-01 13:12:10 +0100 |
commit | 6b9977f62eef54678c7a53844ad5d26d8efeecb0 (patch) | |
tree | d76ededb17ec03e0705258bb9565782c7e16af76 /sqitch/verify | |
parent | bf469504eb4df95a3349328dc10095d172630fcd (diff) | |
download | data-service-6b9977f62eef54678c7a53844ad5d26d8efeecb0.tar data-service-6b9977f62eef54678c7a53844ad5d26d8efeecb0.tar.gz |
Store lint warnings in the database
This commit adds the relevant tables and code to store lint warnings in the
database.
Currently, only lint checkers which don't require access to the network will
be run, as this allows the processing to happen without network access. Also,
this functionality won't work in older versions of Guix which don't expose the
lint warnings in a compatible way.
Diffstat (limited to 'sqitch/verify')
-rw-r--r-- | sqitch/verify/lint_warnings.sql | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/sqitch/verify/lint_warnings.sql b/sqitch/verify/lint_warnings.sql new file mode 100644 index 0000000..5af9a76 --- /dev/null +++ b/sqitch/verify/lint_warnings.sql @@ -0,0 +1,7 @@ +-- Verify guix-data-service:lint_warnings on pg + +BEGIN; + +-- XXX Add verifications here. + +ROLLBACK; |