You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Many Maestro Jobs definitions are Jinja2 templates that are rendered before being submitted to a relevant Runtime. They can be adjusted by setting arguments in e.g.
Many Maestro Jobs definitions are Jinja2 templates that are rendered before being submitted to a relevant Runtime. They can be adjusted by setting arguments in e.g.
pipeline.yaml
configuration file, section:jobs: $JOB: params: $PARAM: $ARG
{%- set $PARAM = '$ARG' %}
One of the recent PRs dropped the template approach if the only parameter changed was the
test_method
. After merging #705 there might be a need to reuse this approach for Tast/Fluster jobs as well.There was an attempt to do so in one of the revisions of #705 but it was eventually reverted (templates can have only a single
{% extends %}
, other common sections could use e.g.{% includes %}
).The text was updated successfully, but these errors were encountered: