runbot/runbot/__manifest__.py
lse-odoo a364997043 [IMP] runbot: add kanban view and stages to build error page
Introduce a kanban view to the runbot build error records.
Kanban cards show the most valuable field with relevant icons.

The concept of "state" was also introduced for the build error
model.
Currently there is 4 states:
 1. New: default state for any new error build
 2. Solved: when the issue should be solved
 3. Ignored: build error currently ignored (test-tags)
 4. Done: When the issue stop happening
Certain states change automatically based as handled in a cron
Generally, any not-ignored on-going task end up in done after some
period of time if it is not seen for some time
( see full details in function `_update_stage`).
The other state are expected to be used by the user. For instance
after fixing an underteministic error the user can change the
state from new -> solved so that it is moved to done if the build
error is not seen for 7 days (instead of 15 if it was in new).
2025-03-18 14:24:59 +01:00

86 lines
2.7 KiB
Python

# -*- coding: utf-8 -*-
{
'name': "runbot",
'summary': "Runbot",
'description': "Runbot for Odoo 17.0",
'author': "Odoo SA",
'website': "http://runbot.odoo.com",
'category': 'Website',
'version': '5.10',
'application': True,
'depends': ['base', 'base_automation', 'website'],
'data': [
'templates/dockerfile.xml',
'data/dockerfile_data.xml',
'data/build_parse.xml',
'data/error_link.xml',
'data/runbot_build_config_data.xml',
'data/runbot_data.xml',
'data/runbot_error_regex_data.xml',
'data/website_data.xml',
'data/ir_cron_data.xml',
'security/runbot_security.xml',
'security/ir.model.access.csv',
'security/ir.rule.csv',
'templates/utils.xml',
'templates/badge.xml',
'templates/batch.xml',
'templates/branch.xml',
'templates/build.xml',
'templates/build_stats.xml',
'templates/bundle.xml',
'templates/commit.xml',
'templates/dashboard.xml',
'templates/frontend.xml',
'templates/git.xml',
'templates/nginx.xml',
'templates/build_error.xml',
'views/branch_views.xml',
'views/build_error_link_views.xml',
'views/build_error_views.xml',
'views/build_views.xml',
'views/bundle_views.xml',
'views/codeowner_views.xml',
'views/commit_views.xml',
'views/config_views.xml',
'views/dashboard_views.xml',
'views/dockerfile_views.xml',
'views/error_log_views.xml',
'views/host_views.xml',
'views/repo_views.xml',
'views/res_config_settings_views.xml',
'views/stat_views.xml',
'views/upgrade.xml',
'views/warning_views.xml',
'views/custom_trigger_wizard_views.xml',
'wizards/stat_regex_wizard_views.xml',
'views/menus.xml',
'views/user.xml',
],
'license': 'LGPL-3',
'assets': {
'web.assets_backend': [
'runbot/static/src/libs/diff_match_patch/diff_match_patch.js',
'runbot/static/src/js/views/**/*',
'runbot/static/src/js/fields/*',
],
'runbot.assets_frontend': [
'/web/static/lib/bootstrap/dist/css/bootstrap.css',
'/web/static/src/libs/fontawesome/css/font-awesome.css',
'/runbot/static/src/css/runbot.css',
'/web/static/lib/jquery/jquery.js',
'/web/static/lib/popper/popper.js',
#'/web/static/lib/bootstrap/js/dist/util.js',
'/web/static/lib/bootstrap/js/dist/dropdown.js',
'/web/static/lib/bootstrap/js/dist/collapse.js',
'/runbot/static/src/js/runbot.js',
],
},
'post_load': 'runbot_post_load',
}