summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorErich Eckner <git@eckner.net>2018-06-13 10:11:43 +0200
committerErich Eckner <git@eckner.net>2018-06-13 10:11:43 +0200
commit6dd11c1112a2ca2740c18dff7cf5db36860328cc (patch)
tree48afb92d4e0b14f3eb5c9cd10c194a702e30fb3c
parent3359e6f1e145781a6fcc1956bd5afa5df5bd2002 (diff)
downloadbuilder-6dd11c1112a2ca2740c18dff7cf5db36860328cc.tar.xz
misc/database-layout.dump: `fail_reasons` extended
-rw-r--r--misc/database-layout.dump10
1 files changed, 6 insertions, 4 deletions
diff --git a/misc/database-layout.dump b/misc/database-layout.dump
index aa43e3c..d84af0d 100644
--- a/misc/database-layout.dump
+++ b/misc/database-layout.dump
@@ -519,7 +519,7 @@ email_log CREATE TABLE `email_log` (
fail_reasons CREATE TABLE `fail_reasons` (
`id` smallint(6) NOT NULL AUTO_INCREMENT,
`name` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL,
- `identifier` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL,
+ `identifier` varchar(128) COLLATE utf8mb4_unicode_ci NOT NULL,
`severity` smallint(6) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `name` (`name`)
@@ -722,13 +722,15 @@ INSERT INTO `email_actions` VALUES
INSERT INTO `fail_reasons` VALUES
(1,'build()','==> ERROR: A failure occurred in build()\\.',0),
(2,'source','==> ERROR: Could not download sources\\.',1),
- (3,'package-cache','.*error: failed to commit transaction (invalid or corrupted pack',2),
+ (3,'package-cache','.*error: failed to commit transaction (invalid or corrupted package (PGP signature))',2),
(4,'prepare()','==> ERROR: A failure occurred in prepare()\\.',2),
(5,'package()','==> ERROR: A failure occurred in package\\(_\\S\\+\\)\\?()\\.',3),
(6,'check()','==> ERROR: A failure occurred in check()\\.',4),
(7,'dependencies','==> ERROR: \'pacman\' failed to install missing dependencies\\.',1),
- (8,'run-as-root','==> ERROR: Running makepkg as root is not allowed as it can caus',1),
- (9,'unknown','.*',100);
+ (8,'run-as-root','==> ERROR: Running makepkg as root is not allowed as it can cause permanent,',1),
+ (9,'unknown','.*',100),
+ (10,'pacman','==> ERROR: Failed to install all packages',5),
+ (11,'unclean-chroot','==> ERROR: \'.*\' does not appear to be an Arch chroot.',5);
INSERT INTO `repositories` VALUES
(1,'core',1,'1',2),
(2,'extra',1,'1',2),