Added mal-sync and test jobs for editors

This commit is contained in:
Eduard Urbach 2018-06-30 14:03:07 +09:00
parent 1b06171718
commit fe9f0407d7
2 changed files with 7 additions and 4 deletions

View File

@ -60,7 +60,7 @@ func testPackage(pkg string) {
Title: pkg, Title: pkg,
Message: "Test failed", Message: "Test failed",
Link: "https://" + pkg, Link: "https://" + pkg,
Icon: "https://notify.moe/images/brand/220.png", Icon: "https://media.notify.moe/images/brand/220.png",
Type: arn.NotificationTypePackageTest, Type: arn.NotificationTypePackageTest,
}) })
return return

View File

@ -27,9 +27,12 @@ var jobInfo = map[string]*utils.JobInfo{
"mal-parse": &utils.JobInfo{ "mal-parse": &utils.JobInfo{
Name: "mal-parse", Name: "mal-parse",
}, },
// "mal-sync": &utils.JobInfo{ "mal-sync": &utils.JobInfo{
// Name: "mal-sync", Name: "mal-sync",
// }, },
"test": &utils.JobInfo{
Name: "test",
},
} }
var jobLogs = []string{} var jobLogs = []string{}