Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[FIX] Move enable_checklog_odoo check outside of nested conditional #275

Merged
merged 1 commit into from
Oct 2, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,24 @@ set IMAGES = {
}
}
-%}
{%- set env = dict() -%}

{%- if rebel_module_groups -%}
{%- set _ = env.update({
"INCLUDE": "${{ matrix.include }}",
"EXCLUDE": "${{ matrix.exclude }}"
})
-%}
{%- endif -%}

{%- if enable_checklog_odoo -%}
{% set _ = env.update({"OCA_ENABLE_CHECKLOG_ODOO": "1"}) -%}
{%- endif -%}

{%- if github_ci_extra_env -%}
{% set _ = env.update(github_ci_extra_env) -%}
{%- endif -%}

jobs:
unreleased-deps:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -116,16 +134,9 @@ jobs:
POSTGRES_DB: odoo
ports:
- 5432:5432
{%- if rebel_module_groups or github_ci_extra_env %}
{%- if env %}
env:
{%- if rebel_module_groups %}
INCLUDE: "{% raw %}${{ matrix.include }}{% endraw %}"
EXCLUDE: "{% raw %}${{ matrix.exclude }}{% endraw %}"
{%- endif %}
{%- if enable_checklog_odoo %}
OCA_ENABLE_CHECKLOG_ODOO: "1"
{%- endif %}
{%- for key, value in github_ci_extra_env.items() %}
{%- for key, value in env.items() %}
{{ key }}: {{ value|to_json }}
{%- endfor %}
{%- endif %}
Expand Down
Loading