mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-01-22 21:53:39 +08:00
ci/b2c: fix the cmdline_extra
variable name
The variable name should have been named `kernel_cmdline_extra`, so
let's rename it to match the expectations of the rest of Mesa.
Fixes: 4362d5913f
("ci/b2c: import all variables starting with `B2C_`")
Signed-off-by: Martin Roukala (né Peres) <martin.roukala@mupuf.org>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/26686>
This commit is contained in:
parent
1ef5feac5e
commit
a0f350429b
@ -54,8 +54,8 @@ deployment:
|
||||
b2c.volume={{ volume }}
|
||||
{% endfor %}
|
||||
b2c.container="-v {{ '{{' }} job_bucket }}-results:{{ working_dir }} -w {{ working_dir }} {% for mount_volume in mount_volumes %} -v {{ mount_volume }}{% endfor %} --tls-verify=false docker://{{ local_container }} {{ container_cmd }}"
|
||||
{% if cmdline_extras is defined %}
|
||||
{{ cmdline_extras }}
|
||||
{% if kernel_cmdline_extras is defined %}
|
||||
{{ kernel_cmdline_extras }}
|
||||
{% endif %}
|
||||
|
||||
initramfs:
|
||||
|
@ -48,8 +48,8 @@ values['local_container'] = values['local_container'].replace(
|
||||
'{{ fdo_proxy_registry }}'
|
||||
)
|
||||
|
||||
if 'cmdline_extras' not in values:
|
||||
values['cmdline_extras'] = ''
|
||||
if 'kernel_cmdline_extras' not in values:
|
||||
values['kernel_cmdline_extras'] = ''
|
||||
|
||||
with open(path.splitext(path.basename(values['job_template']))[0], "w") as f:
|
||||
f.write(template.render(values))
|
||||
|
Loading…
Reference in New Issue
Block a user