Add build_from parameter to osbs.conf on koji builders
Signed-off-by: Clement Verna <cverna@tutanota.com>
This commit is contained in:
parent
922088d494
commit
2364d11684
2 changed files with 10 additions and 1 deletions
|
@ -120,7 +120,8 @@
|
|||
builder_pdc_url: "https://pdc.stg.fedoraproject.org/api/1",
|
||||
flatpak_base_image: "registry.fedoraproject.org/fedora:28",
|
||||
reactor_config_map: "reactor-config-map",
|
||||
reactor_config_map_scratch: "reactor-config-map-scratch"
|
||||
reactor_config_map_scratch: "reactor-config-map-scratch",
|
||||
build_from: "image:buildroot:latest"
|
||||
}
|
||||
}
|
||||
- {
|
||||
|
|
|
@ -98,6 +98,10 @@ flatpak_base_image = {{ default.flatpak_base_image }}
|
|||
reactor_config_map = {{ default.reactor_config_map }}
|
||||
{% endif %}
|
||||
|
||||
{% if default.build_from is defined %}
|
||||
build_from = {{ default.build_from }}
|
||||
{% endif %}
|
||||
|
||||
[scratch]
|
||||
scratch = true
|
||||
{% if default.username is defined %}
|
||||
|
@ -187,4 +191,8 @@ flatpak_base_image = {{ default.flatpak_base_image }}
|
|||
|
||||
{% if default.reactor_config_map_scratch is defined %}
|
||||
reactor_config_map = {{ default.reactor_config_map_scratch }}
|
||||
{% endif %}
|
||||
|
||||
{% if default.build_from is defined %}
|
||||
build_from = {{ default.build_from }}
|
||||
{% endif %}
|
Loading…
Add table
Add a link
Reference in a new issue