ODCS: Use symlinks insted of hardlink-or-copy for raw_config composes.

This commit is contained in:
Jan Kaluza 2020-05-11 07:09:52 +02:00
parent ce6cd8844a
commit 442c3b3b8b

View file

@ -5,11 +5,12 @@ koji_profile = 'odcs_stg'
koji_profile = 'odcs_production'
{% endif %}
{% if env == 'staging' %}
# We cannot use hardlinks on stg, because it uses different volume and copy
# just takes lot of storage.
# We cannot use hardlinks, because ODCS uses different volume and copy
# just takes lot of storage and time.
link_type = 'symlink'
{% if env == 'staging' %}
# Staging is used only for testing, so allow only x86_64 composes
tree_arches = ['x86_64']
{% endif %}