runbot/runbot/__manifest__.py
Christophe Monniez 6e7d8d57f8 [IMP] runbot: add a multibuild wizard
Creating multi builds configs can be tedious. One must create 2 build
configs and 2 build config steps in the right order.

With this commit, a simple wizard is added that creates those 4
configurations by simply filling 4 fields.

Also, a new field, group, is added in order to be able to gather
config's and config steps into  groups. The group is a Many2one on a
config.

While at it, the runbot menu has been a bit rearranged with everything
about config's in a parent menu named Configs.

Config's and config's steps tree views have been enhanced to show the
config group and add some filters in the search views.
2019-10-28 15:26:15 +01:00

38 lines
1.1 KiB
Python

# -*- coding: utf-8 -*-
{
'name': "runbot",
'summary': "Runbot",
'description': "Runbot for Odoo 11.0",
'author': "Odoo SA",
'website': "http://runbot.odoo.com",
'category': 'Website',
'version': '4.6',
'depends': ['website', 'base'],
'data': [
'security/runbot_security.xml',
'security/ir.model.access.csv',
'security/ir.rule.csv',
'views/assets.xml',
'views/repo_views.xml',
'views/branch_views.xml',
'views/build_views.xml',
'views/host_views.xml',
'views/build_error_views.xml',
'views/error_log_views.xml',
'views/config_views.xml',
'views/res_config_settings_views.xml',
'wizards/mutli_build_wizard_views.xml',
'templates/frontend.xml',
'templates/build.xml',
'templates/assets.xml',
'templates/dashboard.xml',
'templates/nginx.xml',
'templates/badge.xml',
'templates/branch.xml',
'data/runbot_build_config_data.xml',
'data/build_parse.xml',
'data/runbot_error_regex_data.xml',
'data/error_link.xml',
],
}