LocalBuildConfiguration: Set ALLOW_ONLY_COMPATIBLE_BASE_MODULES = False

The default LocalBuildConfiguration builds against Fedora - which has
ALLOW_ONLY_COMPATIBLE_BASE_MODULES = False on the server side. Match that
to avoid warnings that f33 isn't in <stream>x.y.z form.
This commit is contained in:
Owen W. Taylor
2020-12-08 10:55:27 -05:00
parent e48983132c
commit c4230a352d

View File

@@ -82,6 +82,9 @@ class LocalBuildConfiguration(BaseConfiguration):
RPMS_ALLOW_REPOSITORY = True
MODULES_ALLOW_REPOSITORY = True
# Match the Fedora server-side configuration
ALLOW_ONLY_COMPATIBLE_BASE_MODULES = False
# Celery tasks will be executed locally for local builds
CELERY_TASK_ALWAYS_EAGER = True