mirror of
https://github.com/odoo/runbot.git
synced 2025-03-20 18:05:46 +07:00

Currently, runbot is using a single Dockerfile maintained in a data file in the source code. This situation is not convenient for testing Odoo in different environments. With this commit, a Dockerfile Odoo model is used to allow usage of multiple Docker containers. This model comes with a pre-defined Dockerfile that can be used to build the current Odoo supported versions (12.0 up to 14.0).
58 lines
1.7 KiB
Python
58 lines
1.7 KiB
Python
# -*- coding: utf-8 -*-
|
|
{
|
|
'name': "runbot",
|
|
'summary': "Runbot",
|
|
'description': "Runbot for Odoo 13.0",
|
|
'author': "Odoo SA",
|
|
'website': "http://runbot.odoo.com",
|
|
'category': 'Website',
|
|
'version': '5.0',
|
|
'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',
|
|
|
|
'security/runbot_security.xml',
|
|
'security/ir.model.access.csv',
|
|
'security/ir.rule.csv',
|
|
|
|
'templates/assets.xml',
|
|
'templates/badge.xml',
|
|
'templates/batch.xml',
|
|
'templates/branch.xml',
|
|
'templates/build.xml',
|
|
'templates/bundle.xml',
|
|
'templates/commit.xml',
|
|
'templates/dashboard.xml',
|
|
'templates/frontend.xml',
|
|
'templates/git.xml',
|
|
'templates/nginx.xml',
|
|
'templates/utils.xml',
|
|
'templates/build_error.xml',
|
|
|
|
'views/branch_views.xml',
|
|
'views/build_error_views.xml',
|
|
'views/build_views.xml',
|
|
'views/bundle_views.xml',
|
|
'views/commit_views.xml',
|
|
'views/config_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',
|
|
|
|
'wizards/mutli_build_wizard_views.xml',
|
|
'wizards/stat_regex_wizard_views.xml',
|
|
],
|
|
}
|