Skip to content

Commit

Permalink
[FIX] Move enable_checklog_odoo check outside of nested conditional +…
Browse files Browse the repository at this point in the history
… refactor environment variables for clarity
  • Loading branch information
PabloEForgeFlow committed Oct 1, 2024
1 parent 56970b4 commit ae7fe76
Showing 1 changed file with 20 additions and 9 deletions.
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

0 comments on commit ae7fe76

Please sign in to comment.