bugbug/infra/taskcluster-hook-classify-p...

90 строки
2.3 KiB
JSON

{
"metadata": {
"description": "",
"name": "BugBug classify patch",
"owner": "mcastelluccio@mozilla.com"
},
"task": {
"created": {
"$fromNow": "0 seconds"
},
"deadline": {
"$fromNow": "2 hours"
},
"expires": {
"$fromNow": "1 month"
},
"extra": {},
"metadata": {
"description": "",
"name": "BugBug classify patch",
"owner": "mcastelluccio@mozilla.com",
"source": "https://github.com/mozilla/bugbug"
},
"payload": {
"artifacts": {
"public/results.json": {
"path": "/results.json",
"type": "file"
},
"public/importances.json": {
"path": "/importances.json",
"type": "file"
},
"public/method_level.json": {
"path": "/method_level.json",
"type": "file"
}
},
"cache": {
"bugbug-mercurial-repository": "/cache"
},
"capabilities": {},
"env": {
"TC_SECRET_ID": "project/bugbug/production"
},
"features": {
"taskclusterProxy": true
},
"command": [
"bugbug-classify-commit",
"regressor",
"/cache/mozilla-central",
"--phabricator-deployment=${payload['PHABRICATOR_DEPLOYMENT']}",
"--diff-id=${payload['DIFF_ID']}",
"--git_repo_dir=/gecko-dev",
"--method_defect_predictor_dir=/MethodDefectPredictor"
],
"image": "mozilla/bugbug-commit-retrieval",
"maxRunTime": 7200
},
"priority": "normal",
"provisionerId": "proj-bugbug",
"retries": 5,
"routes": [
"notify.email.mcastelluccio@mozilla.com.on-failed",
"notify.irc-channel.#bugbug.on-failed",
"index.project.bugbug.classify_patch.latest",
"index.project.bugbug.classify_patch.diff.${payload['DIFF_ID']}"
],
"schedulerId": "-",
"scopes": ["assume:hook-id:project-bugbug/bugbug-classify-patch"],
"tags": {},
"workerType": "compute-small"
},
"triggerSchema": {
"additionalProperties": false,
"properties": {
"PHABRICATOR_DEPLOYMENT": {
"type": "string",
"enum": ["prod", "dev"]
},
"DIFF_ID": {
"type": "number"
}
},
"required": ["PHABRICATOR_DEPLOYMENT", "DIFF_ID"],
"type": "object"
}
}