| |
@@ -1,1056 +0,0 @@
|
| |
- # Import general configuration from general.conf
|
| |
- from general import *
|
| |
- # Import multilib configuration from multilib.conf
|
| |
- from multilib import *
|
| |
-
|
| |
- # PRODUCT INFO
|
| |
- release_name = 'Fedora'
|
| |
- release_short = 'Fedora'
|
| |
- release_version = 'Rawhide'
|
| |
-
|
| |
- # GENERAL SETTINGS
|
| |
- comps_file = {
|
| |
- 'scm': 'git',
|
| |
- 'repo': 'https://pagure.io/fedora-comps.git',
|
| |
- 'branch': 'main',
|
| |
- 'file': 'comps-rawhide.xml',
|
| |
- 'command': 'make comps-rawhide.xml'
|
| |
- }
|
| |
-
|
| |
- variants_file='variants-fedora.xml'
|
| |
- sigkeys = ['105ef944']
|
| |
-
|
| |
- # limit tree variants
|
| |
- # if undefined, all variants from variants.xml will be included
|
| |
- #tree_variants = ['Server']
|
| |
-
|
| |
- # RUNROOT settings
|
| |
- runroot_method = 'koji'
|
| |
-
|
| |
- # PKGSET
|
| |
- pkgset_source = 'koji' # koji, repos
|
| |
-
|
| |
- # PKGSET - REPOS
|
| |
- # pkgset_repos format: {arch: [repo1_url, repo2_url, ...]}
|
| |
- # pkgset_repos = {}
|
| |
-
|
| |
- # PKGSET - KOJI
|
| |
- pkgset_koji_tag = 'f42'
|
| |
- pkgset_koji_inherit = False
|
| |
-
|
| |
- # GATHER
|
| |
- gather_method = {
|
| |
- '^.*': { # For all variants
|
| |
- 'comps': 'deps', # resolve dependencies for packages from comps file
|
| |
- }
|
| |
- }
|
| |
- gather_backend = 'dnf'
|
| |
- gather_profiler = False
|
| |
-
|
| |
- repoclosure_backend = 'dnf'
|
| |
-
|
| |
- # format: [(variant_uid_regex, {arch|*: [repos]})]
|
| |
- # gather_lookaside_repos = []
|
| |
-
|
| |
- # GATHER - JSON
|
| |
- # format: {variant_uid: {arch: package: [arch1, arch2, None (for any arch)]}}
|
| |
- #gather_source_mapping = '/path/to/mapping.json'
|
| |
-
|
| |
-
|
| |
- # CREATEREPO
|
| |
- createrepo_deltas = False
|
| |
- createrepo_database = True
|
| |
- createrepo_use_xz = True
|
| |
- createrepo_extra_args = ['--general-compress-type', 'gz', '--zck', '--zck-dict-dir=/usr/share/fedora-repo-zdicts/rawhide']
|
| |
- createrepo_num_workers = 10
|
| |
-
|
| |
- # CHECKSUMS
|
| |
- media_checksum_base_filename = '%(release_short)s-%(variant)s-%(dirname)s-%(version)s-%(arch)s-%(date)s%(type_suffix)s.%(respin)s'
|
| |
-
|
| |
- # CREATEISO
|
| |
- iso_hfs_ppc64le_compatible = False
|
| |
-
|
| |
- # use xorrisofs to make isos
|
| |
- createiso_use_xorrisofs = True
|
| |
-
|
| |
- # BUILDINSTALL
|
| |
- buildinstall_method = 'lorax'
|
| |
- buildinstall_skip = [
|
| |
- ('^Everything$', {
|
| |
- 'i386': True
|
| |
- }),
|
| |
- ]
|
| |
-
|
| |
- # Enables macboot on x86_64 for all variants and disables upgrade image building
|
| |
- # everywhere.
|
| |
- # Use 3GB image size for all arches.
|
| |
- lorax_options = [
|
| |
- ('^.*$', {
|
| |
- 'x86_64': {
|
| |
- 'nomacboot': False,
|
| |
- 'squashfs_only': True
|
| |
- },
|
| |
- '*': {
|
| |
- 'noupgrade': True,
|
| |
- 'rootfs_size': 3,
|
| |
- 'squashfs_only': True
|
| |
- }
|
| |
- })
|
| |
- ]
|
| |
-
|
| |
- #extra_packages = [
|
| |
- # '/mnt/packages/foo*',
|
| |
- #]
|
| |
-
|
| |
-
|
| |
- # format: [(variant_uid_regex, {arch|*: [packages]})]
|
| |
- additional_packages = [
|
| |
- ('^(Server|Everything)$', {
|
| |
- '*': [
|
| |
- 'kernel*',
|
| |
- 'dracut.*',
|
| |
- 'autocorr-*',
|
| |
- 'eclipse-nls',
|
| |
- 'eclipse-nls-*',
|
| |
- 'glibc-langpack-*',
|
| |
- 'hunspell-*',
|
| |
- 'hyphen-*',
|
| |
- 'kde-l10n-*',
|
| |
- 'langpacks-*',
|
| |
- 'man-pages-*',
|
| |
- 'mythes-*',
|
| |
- 'python3.*-debuginfo',
|
| |
- ],
|
| |
- }),
|
| |
-
|
| |
- ('^Everything$', {
|
| |
- '*': [
|
| |
- '*',
|
| |
- ],
|
| |
- }),
|
| |
-
|
| |
- ('^Server$', {
|
| |
- '*': [
|
| |
-
|
| |
- ],
|
| |
- }),
|
| |
-
|
| |
- ]
|
| |
-
|
| |
- filter_packages = [
|
| |
- ("^.*$", {
|
| |
- "*": ["glibc32", "libgcc32"],
|
| |
- "s390x": ["rust-std-static-wasm*"],
|
| |
- }),
|
| |
- ('(Server)$', {
|
| |
- '*': [
|
| |
- 'kernel*debug*',
|
| |
- 'kernel-kdump*',
|
| |
- 'kernel-tools*',
|
| |
- 'syslog-ng*',
|
| |
- 'astronomy-bookmarks',
|
| |
- 'generic*',
|
| |
- 'GConf2-dbus*',
|
| |
- 'bluez-gnome',
|
| |
- 'java-11-openjdk',
|
| |
- 'community-mysql*',
|
| |
- 'jruby*',
|
| |
- 'gimp-help-*',
|
| |
- ]
|
| |
- }),
|
| |
- ]
|
| |
-
|
| |
- createiso_skip = [
|
| |
- ('^Server$', {
|
| |
- 'src': True
|
| |
- }),
|
| |
-
|
| |
- ('^Everything$', {
|
| |
- '*': True,
|
| |
- 'src': True
|
| |
- }),
|
| |
- ]
|
| |
-
|
| |
- # format: [(variant_uid_regex, {arch|*: [scm_dicts]})]
|
| |
- #extra_files = [
|
| |
- # ('^(Server)$', {
|
| |
- # '*': [
|
| |
- # {
|
| |
- # 'scm': 'rpm',
|
| |
- # 'repo': 'fedora-release-%(variant_id_lower)s',
|
| |
- # 'branch': None,
|
| |
- # 'file': [
|
| |
- # '/etc/pki/rpm-gpg/RPM-GPG-KEY-fedora-release',
|
| |
- # ],
|
| |
- # 'target': '',
|
| |
- # },
|
| |
- # ],
|
| |
- # }),
|
| |
- #]
|
| |
-
|
| |
- # Image name respecting Fedora's image naming policy
|
| |
- image_name_format = '%(release_short)s-%(variant)s-%(disc_type)s-%(arch)s-%(version)s-%(date)s%(type_suffix)s.%(respin)s.iso'
|
| |
- # # Use the same format for volume id
|
| |
- image_volid_formats = [
|
| |
- '%(release_short)s-%(variant)s-%(disc_type)s-%(arch)s-%(version)s'
|
| |
- ]
|
| |
-
|
| |
-
|
| |
- # These will be inherited by live_media, live_images and image_build
|
| |
- global_ksurl = 'git+https://pagure.io/fedora-kickstarts.git?#HEAD'
|
| |
- global_release = '!RELEASE_FROM_LABEL_DATE_TYPE_RESPIN'
|
| |
- global_version = 'Rawhide'
|
| |
- # live_images ignores this in favor of live_target
|
| |
- global_target = 'f42'
|
| |
- # kiwi images need another target that uses old mock chroot
|
| |
- kiwibuild_target = 'f42-kiwi'
|
| |
-
|
| |
- # kiwi image global configuration
|
| |
- kiwibuild_description_scm = 'git+https://pagure.io/fedora-kiwi-descriptions.git?#HEAD'
|
| |
- kiwibuild_description_path = 'Fedora.kiwi'
|
| |
- # global_version is substituted by kobo as part of reading of this
|
| |
- # config file, the other specifiers are passed through to kiwi
|
| |
- kiwibuild_bundle_name_format = '%%N-%s-%%I.%%A' % global_version
|
| |
-
|
| |
- # custom variable to make things easier
|
| |
- KIWI_ISO_VOLID_VERSION = 'rawh'
|
| |
-
|
| |
- image_build = {
|
| |
- '^Labs$': [
|
| |
- {
|
| |
- 'image-build': {
|
| |
- 'format': [('vagrant-libvirt','vagrant-libvirt.box'), ('vagrant-virtualbox','vagrant-virtualbox.box')],
|
| |
- 'name': 'Fedora-Python-Classroom-Vagrant',
|
| |
- 'kickstart': 'fedora-python-classroom-vagrant.ks',
|
| |
- 'distro': 'Fedora-22',
|
| |
- 'disk_size': 42,
|
| |
- 'arches': ['x86_64'],
|
| |
- 'repo': 'Everything',
|
| |
- 'install_tree_from': 'Everything',
|
| |
- 'subvariant': 'Python_Classroom',
|
| |
- 'failable': ['*'],
|
| |
- },
|
| |
- 'factory-parameters': {
|
| |
- 'ova-option': 'vagrant_sync_directory=/home/vagrant/sync'
|
| |
- }
|
| |
- },
|
| |
- {
|
| |
- 'image-build': {
|
| |
- 'format': [('vagrant-libvirt','vagrant-libvirt.box'), ('vagrant-virtualbox','vagrant-virtualbox.box')],
|
| |
- 'name': 'Fedora-Scientific-Vagrant',
|
| |
- 'kickstart': 'fedora-scientific-vagrant.ks',
|
| |
- 'distro': 'Fedora-22',
|
| |
- 'disk_size': 42,
|
| |
- 'arches': ['x86_64'],
|
| |
- 'repo': 'Everything',
|
| |
- 'install_tree_from': 'Everything',
|
| |
- 'subvariant': 'Scientific',
|
| |
- 'failable': ['*'],
|
| |
- },
|
| |
- 'factory-parameters': {
|
| |
- 'ova-option': 'vagrant_sync_directory=/home/vagrant/sync'
|
| |
- }
|
| |
- },
|
| |
- {
|
| |
- 'image-build': {
|
| |
- 'format': [('raw-xz','raw.xz')],
|
| |
- 'name': 'Fedora-Python-Classroom',
|
| |
- 'kickstart': 'fedora-disk-python-classroom.ks',
|
| |
- 'distro': 'Fedora-30',
|
| |
- 'disk_size': 18,
|
| |
- 'arches': ['aarch64'],
|
| |
- 'repo': 'Everything',
|
| |
- 'install_tree_from': 'Everything',
|
| |
- 'subvariant': 'Python_Classroom',
|
| |
- 'failable': ['*'],
|
| |
- }
|
| |
- },
|
| |
- ],
|
| |
- '^Spins': [
|
| |
- {
|
| |
- 'image-build': {
|
| |
- 'format': [('raw-xz','raw.xz')],
|
| |
- 'name': 'Fedora-KDE',
|
| |
- 'kickstart': 'fedora-disk-kde.ks',
|
| |
- 'distro': 'Fedora-30',
|
| |
- 'disk_size': 18,
|
| |
- 'arches': ['aarch64'],
|
| |
- 'repo': 'Everything',
|
| |
- 'install_tree_from': 'Everything',
|
| |
- 'subvariant': 'KDE',
|
| |
- 'failable': [''],
|
| |
- }
|
| |
- },
|
| |
- {
|
| |
- 'image-build': {
|
| |
- 'format': [('raw-xz','raw.xz')],
|
| |
- 'name': 'Fedora-SoaS',
|
| |
- 'kickstart': 'fedora-disk-soas.ks',
|
| |
- 'distro': 'Fedora-30',
|
| |
- 'disk_size': 10,
|
| |
- 'arches': ['aarch64'],
|
| |
- 'repo': 'Everything',
|
| |
- 'install_tree_from': 'Everything',
|
| |
- 'subvariant': 'SoaS',
|
| |
- 'failable': ['*'],
|
| |
- }
|
| |
- },
|
| |
- {
|
| |
- 'image-build': {
|
| |
- 'format': [('raw-xz','raw.xz')],
|
| |
- 'name': 'Fedora-Xfce',
|
| |
- 'kickstart': 'fedora-disk-xfce.ks',
|
| |
- 'distro': 'Fedora-30',
|
| |
- 'disk_size': 15,
|
| |
- 'arches': ['aarch64'],
|
| |
- 'repo': 'Everything',
|
| |
- 'install_tree_from': 'Everything',
|
| |
- 'subvariant': 'Xfce',
|
| |
- 'failable': ['*'],
|
| |
- }
|
| |
- },
|
| |
- {
|
| |
- 'image-build': {
|
| |
- 'format': [('raw-xz','raw.xz')],
|
| |
- 'name': 'Fedora-LXQt',
|
| |
- 'kickstart': 'fedora-disk-lxqt.ks',
|
| |
- 'distro': 'Fedora-30',
|
| |
- 'disk_size': 13,
|
| |
- 'arches': ['aarch64'],
|
| |
- 'repo': 'Everything',
|
| |
- 'install_tree_from': 'Everything',
|
| |
- 'subvariant': 'LXQt',
|
| |
- 'failable': ['*'],
|
| |
- }
|
| |
- },
|
| |
- ],
|
| |
- '^Workstation$': [
|
| |
- {
|
| |
- 'image-build': {
|
| |
- 'format': [('raw-xz','raw.xz')],
|
| |
- 'name': 'Fedora-Workstation',
|
| |
- 'kickstart': 'fedora-disk-workstation.ks',
|
| |
- 'distro': 'Fedora-30',
|
| |
- 'disk_size': '16GB',
|
| |
- 'arches': ['aarch64'],
|
| |
- 'repo': 'Everything',
|
| |
- 'install_tree_from': 'Everything',
|
| |
- 'subvariant': 'Workstation',
|
| |
- 'failable': [''],
|
| |
- }
|
| |
- },
|
| |
- ],
|
| |
- '^Server$': [
|
| |
- {
|
| |
- 'image-build': {
|
| |
- 'format': [('raw-xz','raw.xz')],
|
| |
- 'name': 'Fedora-Server',
|
| |
- 'kickstart': 'fedora-disk-server.ks',
|
| |
- 'distro': 'Fedora-30',
|
| |
- 'disk_size': 7,
|
| |
- 'arches': ['aarch64'],
|
| |
- 'repo': 'Server',
|
| |
- 'install_tree_from': 'Server',
|
| |
- 'subvariant': 'Server',
|
| |
- 'failable': ['*'],
|
| |
- }
|
| |
- },
|
| |
- {
|
| |
- 'image-build': {
|
| |
- 'format': [('qcow2','qcow2')],
|
| |
- 'name': 'Fedora-Server-KVM',
|
| |
- 'kickstart': 'fedora-server-vm-full.ks',
|
| |
- 'distro': 'Fedora-22',
|
| |
- 'disk_size': 7,
|
| |
- 'arches': ['aarch64', 'ppc64le', 's390x', 'x86_64'],
|
| |
- 'repo': 'Everything',
|
| |
- 'install_tree_from': 'Everything',
|
| |
- 'subvariant': 'Server_KVM',
|
| |
- 'failable': ['*'],
|
| |
- }
|
| |
- },
|
| |
- ],
|
| |
- }
|
| |
-
|
| |
- kiwibuild = {
|
| |
- '^Cloud$': [
|
| |
- {
|
| |
- 'kiwi_profile': 'Cloud-Base-Generic',
|
| |
- 'arches': ['aarch64', 'ppc64le', 's390x', 'x86_64'],
|
| |
- 'repos': ['Everything'],
|
| |
- 'subvariant': 'Cloud_Base',
|
| |
- 'failable': ['ppc64le', 's390x'],
|
| |
- },
|
| |
- {
|
| |
- 'kiwi_profile': 'Cloud-Base-AmazonEC2',
|
| |
- 'arches': ['aarch64', 'x86_64'],
|
| |
- 'repos': ['Everything'],
|
| |
- 'subvariant': 'Cloud_Base',
|
| |
- 'failable': ['*'],
|
| |
- },
|
| |
- {
|
| |
- 'kiwi_profile': 'Cloud-Base-Azure',
|
| |
- 'arches': ['aarch64', 'x86_64'],
|
| |
- 'repos': ['Everything'],
|
| |
- 'subvariant': 'Cloud_Base',
|
| |
- 'failable': ['*'],
|
| |
- },
|
| |
- {
|
| |
- 'kiwi_profile': 'Cloud-Base-GCE',
|
| |
- 'arches': ['aarch64', 'x86_64'],
|
| |
- 'repos': ['Everything'],
|
| |
- 'subvariant': 'Cloud_Base',
|
| |
- 'failable': ['*'],
|
| |
- },
|
| |
- {
|
| |
- 'kiwi_profile': 'Cloud-Base-UEFI-UKI',
|
| |
- 'arches': ['aarch64', 'x86_64'],
|
| |
- 'repos': ['Everything'],
|
| |
- 'subvariant': 'Cloud_Base_UKI',
|
| |
- 'failable': ['*'],
|
| |
- },
|
| |
- {
|
| |
- 'kiwi_profile': 'Cloud-Base-Vagrant-libvirt',
|
| |
- 'arches': ['aarch64', 'x86_64'],
|
| |
- 'repos': ['Everything'],
|
| |
- 'subvariant': 'Cloud_Base',
|
| |
- 'failable': ['*'],
|
| |
- },
|
| |
- {
|
| |
- 'kiwi_profile': 'Cloud-Base-Vagrant-VirtualBox',
|
| |
- 'arches': ['x86_64'],
|
| |
- 'repos': ['Everything'],
|
| |
- 'subvariant': 'Cloud_Base',
|
| |
- 'failable': ['*'],
|
| |
- }
|
| |
- ],
|
| |
- '^Container$': [
|
| |
- {
|
| |
- 'kiwi_profile': 'Container-Base-Generic',
|
| |
- 'arches': ['aarch64', 'ppc64le', 's390x', 'x86_64'],
|
| |
- 'repos': ['Everything'],
|
| |
- 'subvariant': 'Container_Base',
|
| |
- 'target': global_target,
|
| |
- 'bundle_name_format': '%%N-%s-%%I.%%A.%%T.tar' % global_version,
|
| |
- 'failable': ['*'],
|
| |
- },
|
| |
- {
|
| |
- 'kiwi_profile': 'Container-Base-Generic-Minimal',
|
| |
- 'arches': ['aarch64', 'ppc64le', 's390x', 'x86_64'],
|
| |
- 'repos': ['Everything'],
|
| |
- 'subvariant': 'Container_Minimal_Base',
|
| |
- 'target': global_target,
|
| |
- 'bundle_name_format': '%%N-%s-%%I.%%A.%%T.tar' % global_version,
|
| |
- 'failable': ['*'],
|
| |
- },
|
| |
- {
|
| |
- 'kiwi_profile': 'Container-Toolbox',
|
| |
- 'arches': ['aarch64', 'ppc64le', 's390x', 'x86_64'],
|
| |
- 'repos': ['Everything'],
|
| |
- 'subvariant': 'Container_Toolbox',
|
| |
- 'target': global_target,
|
| |
- 'bundle_name_format': '%%N-%s-%%I.%%A.%%T.tar' % global_version,
|
| |
- 'failable': [''],
|
| |
- }
|
| |
- ],
|
| |
- '^Spins$': [
|
| |
- {
|
| |
- 'kiwi_profile': 'MiracleWM-Disk',
|
| |
- 'arches': ['aarch64'],
|
| |
- 'repos': ['Everything'],
|
| |
- 'subvariant': 'MiracleWM',
|
| |
- 'type': 'oem',
|
| |
- 'failable': ['*'],
|
| |
- },
|
| |
- {
|
| |
- 'kiwi_profile': 'MiracleWM-Live',
|
| |
- 'arches': ['aarch64', 'x86_64'],
|
| |
- 'repos': ['Everything'],
|
| |
- 'subvariant': 'MiracleWM',
|
| |
- 'type': 'iso',
|
| |
- 'type_attr': [
|
| |
- 'volid=%s-MirWM-Live-%s' % (release_short, global_version),
|
| |
- 'application_id=%s-MiracleWM-Live-%s' % (release_short, global_version),
|
| |
- ],
|
| |
- 'failable': ['*'],
|
| |
- },
|
| |
- {
|
| |
- 'kiwi_profile': 'KDE-Mobile-Disk',
|
| |
- 'arches': ['aarch64'],
|
| |
- 'repos': ['Everything'],
|
| |
- 'subvariant': 'KDE_Mobile',
|
| |
- 'type': 'oem',
|
| |
- 'failable': ['*'],
|
| |
- },
|
| |
- {
|
| |
- 'kiwi_profile': 'KDE-Mobile-Live',
|
| |
- 'arches': ['aarch64', 'x86_64'],
|
| |
- 'repos': ['Everything'],
|
| |
- 'subvariant': 'KDE_Mobile',
|
| |
- 'type': 'iso',
|
| |
- 'type_attr': [
|
| |
- 'volid=%s-KDEM-Live-%s' % (release_short, KIWI_ISO_VOLID_VERSION),
|
| |
- 'application_id=%s-KDE_Mobile-Live-%s' % (release_short, global_version),
|
| |
- ],
|
| |
- 'failable': ['*'],
|
| |
- }
|
| |
- ],
|
| |
- }
|
| |
-
|
| |
- live_media = {
|
| |
- '^Workstation$': [
|
| |
- {
|
| |
- 'name': 'Fedora-Workstation-Live',
|
| |
- 'kickstart': 'fedora-live-workstation.ks',
|
| |
- 'arches': ['x86_64', 'ppc64le', 'aarch64'],
|
| |
- 'failable': ['ppc64le', 'aarch64'],
|
| |
- 'repo': 'Everything',
|
| |
- 'install_tree_from': 'Everything',
|
| |
- 'subvariant': 'Workstation'
|
| |
-
|
| |
- }
|
| |
- ],
|
| |
- '^Spins': [
|
| |
- {
|
| |
- 'name': 'Fedora-KDE-Live',
|
| |
- 'kickstart': 'fedora-live-kde.ks',
|
| |
- 'arches': ['x86_64', 'aarch64', 'ppc64le'],
|
| |
- 'failable': ['aarch64', 'ppc64le'],
|
| |
- 'repo': 'Everything',
|
| |
- 'install_tree_from': 'Everything',
|
| |
- 'subvariant': 'KDE'
|
| |
-
|
| |
- },
|
| |
- {
|
| |
- 'name': 'Fedora-Xfce-Live',
|
| |
- 'kickstart': 'fedora-live-xfce.ks',
|
| |
- 'arches': ['x86_64'],
|
| |
- 'failable': ['*'],
|
| |
- 'repo': 'Everything',
|
| |
- 'install_tree_from': 'Everything',
|
| |
- 'subvariant': 'Xfce'
|
| |
- },
|
| |
- {
|
| |
- 'name': 'Fedora-SoaS-Live',
|
| |
- 'kickstart': 'fedora-live-soas.ks',
|
| |
- 'arches': ['x86_64'],
|
| |
- 'failable': ['*'],
|
| |
- 'repo': 'Everything',
|
| |
- 'install_tree_from': 'Everything',
|
| |
- 'subvariant': 'SoaS'
|
| |
- },
|
| |
- {
|
| |
- 'name': 'Fedora-Cinnamon-Live',
|
| |
- 'kickstart': 'fedora-live-cinnamon.ks',
|
| |
- 'arches': ['x86_64'],
|
| |
- 'failable': ['*'],
|
| |
- 'repo': 'Everything',
|
| |
- 'install_tree_from': 'Everything',
|
| |
- 'subvariant': 'Cinnamon'
|
| |
- },
|
| |
- {
|
| |
- 'name': 'Fedora-LXDE-Live',
|
| |
- 'kickstart': 'fedora-live-lxde.ks',
|
| |
- 'arches': ['x86_64'],
|
| |
- 'failable': ['*'],
|
| |
- 'repo': 'Everything',
|
| |
- 'install_tree_from': 'Everything',
|
| |
- 'subvariant': 'LXDE'
|
| |
- },
|
| |
- {
|
| |
- 'name': 'Fedora-MATE_Compiz-Live',
|
| |
- 'kickstart': 'fedora-live-mate_compiz.ks',
|
| |
- 'arches': ['x86_64'],
|
| |
- 'failable': ['*'],
|
| |
- 'repo': 'Everything',
|
| |
- 'install_tree_from': 'Everything',
|
| |
- 'subvariant': 'Mate'
|
| |
- },
|
| |
- {
|
| |
- 'name': 'Fedora-LXQt-Live',
|
| |
- 'kickstart': 'fedora-live-lxqt.ks',
|
| |
- 'arches': ['x86_64', 'aarch64'],
|
| |
- 'failable': ['*'],
|
| |
- 'repo': 'Everything',
|
| |
- 'install_tree_from': 'Everything',
|
| |
- 'subvariant': 'LXQt'
|
| |
- },
|
| |
- {
|
| |
- 'name': 'Fedora-Budgie-Live',
|
| |
- 'kickstart': 'fedora-live-budgie.ks',
|
| |
- 'arches': ['x86_64'],
|
| |
- 'failable': ['*'],
|
| |
- 'repo': 'Everything',
|
| |
- 'install_tree_from': 'Everything',
|
| |
- 'subvariant': 'Budgie'
|
| |
- },
|
| |
- {
|
| |
- 'name': 'Fedora-i3-Live',
|
| |
- 'kickstart': 'fedora-live-i3.ks',
|
| |
- 'arches': ['x86_64', 'aarch64'],
|
| |
- 'failable': ['*'],
|
| |
- 'repo': 'Everything',
|
| |
- 'install_tree_from': 'Everything',
|
| |
- 'subvariant': 'i3'
|
| |
- },
|
| |
- {
|
| |
- 'name': 'Fedora-Sway-Live',
|
| |
- 'kickstart': 'fedora-live-sway.ks',
|
| |
- 'arches': ['x86_64'],
|
| |
- 'failable': ['*'],
|
| |
- 'repo': 'Everything',
|
| |
- 'install_tree_from': 'Everything',
|
| |
- 'subvariant': 'Sway'
|
| |
- }
|
| |
- ],
|
| |
- '^Labs$': [
|
| |
- {
|
| |
- 'name': 'Fedora-Astronomy_KDE-Live',
|
| |
- 'kickstart': 'fedora-live-astronomy_kde.ks',
|
| |
- 'arches': ['x86_64'],
|
| |
- 'failable': ['*'],
|
| |
- 'repo': 'Everything',
|
| |
- 'install_tree_from': 'Everything',
|
| |
- 'subvariant': 'Astronomy_KDE'
|
| |
- },
|
| |
- {
|
| |
- 'name': 'Fedora-Comp_Neuro-Live',
|
| |
- 'kickstart': 'fedora-live-comp_neuro.ks',
|
| |
- 'arches': ['x86_64'],
|
| |
- 'failable': ['*'],
|
| |
- 'repo': 'Everything',
|
| |
- 'install_tree_from': 'Everything',
|
| |
- 'subvariant': 'Comp_Neuro'
|
| |
- },
|
| |
- {
|
| |
- 'name': 'Fedora-Design_suite-Live',
|
| |
- 'kickstart': 'fedora-live-design_suite.ks',
|
| |
- 'arches': ['x86_64'],
|
| |
- 'failable': ['*'],
|
| |
- 'repo': 'Everything',
|
| |
- 'install_tree_from': 'Everything',
|
| |
- 'subvariant': 'Design_suite'
|
| |
- },
|
| |
- {
|
| |
- 'name': 'Fedora-Scientific_KDE-Live',
|
| |
- 'kickstart': 'fedora-live-scientific_kde.ks',
|
| |
- 'arches': ['x86_64'],
|
| |
- 'failable': ['*'],
|
| |
- 'repo': 'Everything',
|
| |
- 'install_tree_from': 'Everything',
|
| |
- 'subvariant': 'Scientific_KDE'
|
| |
- },
|
| |
- {
|
| |
- 'name': 'Fedora-Games-Live',
|
| |
- 'kickstart': 'fedora-live-games.ks',
|
| |
- 'arches': ['x86_64'],
|
| |
- 'failable': ['*'],
|
| |
- 'repo': 'Everything',
|
| |
- 'install_tree_from': 'Everything',
|
| |
- 'subvariant': 'Games'
|
| |
- },
|
| |
- {
|
| |
- 'name': 'Fedora-Security-Live',
|
| |
- 'kickstart': 'fedora-live-security.ks',
|
| |
- 'arches': ['x86_64'],
|
| |
- 'failable': ['*'],
|
| |
- 'repo': 'Everything',
|
| |
- 'install_tree_from': 'Everything',
|
| |
- 'subvariant': 'Security'
|
| |
- },
|
| |
- {
|
| |
- 'name': 'Fedora-Jam_KDE-Live',
|
| |
- 'kickstart': 'fedora-live-jam_kde.ks',
|
| |
- 'arches': ['x86_64'],
|
| |
- 'failable': ['*'],
|
| |
- 'repo': 'Everything',
|
| |
- 'install_tree_from': 'Everything',
|
| |
- 'subvariant': 'Jam_KDE'
|
| |
- },
|
| |
- {
|
| |
- 'name': 'Fedora-Robotics-Live',
|
| |
- 'kickstart': 'fedora-live-robotics.ks',
|
| |
- 'arches': ['x86_64'],
|
| |
- 'failable': ['*'],
|
| |
- 'repo': 'Everything',
|
| |
- 'install_tree_from': 'Everything',
|
| |
- 'subvariant': 'Robotics'
|
| |
- },
|
| |
- {
|
| |
- 'name': 'Fedora-Python-Classroom-Live',
|
| |
- 'kickstart': 'fedora-live-python-classroom.ks',
|
| |
- 'arches': ['x86_64'],
|
| |
- 'failable': ['*'],
|
| |
- 'repo': 'Everything',
|
| |
- 'install_tree_from': 'Everything',
|
| |
- 'subvariant': 'Python_Classroom'
|
| |
- }
|
| |
- ],
|
| |
- }
|
| |
-
|
| |
- failable_deliverables = [
|
| |
- ('^.*$', {
|
| |
- # Buildinstall is non blocking
|
| |
- 'src': ['buildinstall'],
|
| |
- # Nothing on i386, ppc64le blocks the compose
|
| |
- 'i386': ['buildinstall', 'iso'],
|
| |
- 'ppc64le': ['buildinstall', 'iso'],
|
| |
- 's390x': ['buildinstall', 'iso'],
|
| |
- })
|
| |
- ]
|
| |
-
|
| |
- ostree = {
|
| |
- "^Silverblue$": {
|
| |
- "version": "!OSTREE_VERSION_FROM_LABEL_DATE_TYPE_RESPIN",
|
| |
- "force_new_commit": True,
|
| |
- "unified_core": True,
|
| |
- "treefile": "silverblue-ostree.yaml",
|
| |
- "config_url": "https://pagure.io/workstation-ostree-config.git",
|
| |
- "config_branch": "main",
|
| |
- "repo": "Everything",
|
| |
- "tag_ref": False,
|
| |
- "ostree_repo": "/mnt/koji/compose/ostree/repo/",
|
| |
- "ostree_ref": "fedora/rawhide/${basearch}/silverblue",
|
| |
- "runroot_packages": ["selinux-policy-targeted"],
|
| |
- "arches": ["x86_64", "ppc64le", "aarch64"],
|
| |
- "failable": ['*'],
|
| |
- },
|
| |
- "^Kinoite$": {
|
| |
- "version": "!OSTREE_VERSION_FROM_LABEL_DATE_TYPE_RESPIN",
|
| |
- "force_new_commit": True,
|
| |
- "unified_core": True,
|
| |
- "treefile": "kinoite-ostree.yaml",
|
| |
- "config_url": "https://pagure.io/workstation-ostree-config.git",
|
| |
- "config_branch": "main",
|
| |
- "repo": "Everything",
|
| |
- "tag_ref": False,
|
| |
- "ostree_repo": "/mnt/koji/compose/ostree/repo/",
|
| |
- "ostree_ref": "fedora/rawhide/${basearch}/kinoite",
|
| |
- "runroot_packages": ["selinux-policy-targeted"],
|
| |
- "arches": ["x86_64", "ppc64le", "aarch64"],
|
| |
- "failable": ['*'],
|
| |
- },
|
| |
- "^Sericea$": {
|
| |
- "version": "!OSTREE_VERSION_FROM_LABEL_DATE_TYPE_RESPIN",
|
| |
- "force_new_commit": True,
|
| |
- "unified_core": True,
|
| |
- "treefile": "sway-atomic-ostree.yaml",
|
| |
- "config_url": "https://pagure.io/workstation-ostree-config.git",
|
| |
- "config_branch": "main",
|
| |
- "repo": "Everything",
|
| |
- "tag_ref": False,
|
| |
- "ostree_repo": "/mnt/koji/compose/ostree/repo/",
|
| |
- "ostree_ref": "fedora/rawhide/${basearch}/sericea",
|
| |
- "runroot_packages": ["selinux-policy-targeted"],
|
| |
- "arches": ["x86_64", "aarch64"],
|
| |
- "failable": ['*'],
|
| |
- },
|
| |
- "^Onyx$": {
|
| |
- "version": "!OSTREE_VERSION_FROM_LABEL_DATE_TYPE_RESPIN",
|
| |
- "force_new_commit": True,
|
| |
- "unified_core": True,
|
| |
- "treefile": "budgie-atomic-ostree.yaml",
|
| |
- "config_url": "https://pagure.io/workstation-ostree-config.git",
|
| |
- "config_branch": "main",
|
| |
- "repo": "Everything",
|
| |
- "tag_ref": False,
|
| |
- "ostree_repo": "/mnt/koji/compose/ostree/repo/",
|
| |
- "ostree_ref": "fedora/rawhide/${basearch}/onyx",
|
| |
- "runroot_packages": ["selinux-policy-targeted"],
|
| |
- "arches": ["x86_64"],
|
| |
- "failable": ['*'],
|
| |
- }
|
| |
- }
|
| |
-
|
| |
- ostree_container = {
|
| |
- "^Silverblue$": {
|
| |
- "version": "!OSTREE_VERSION_FROM_LABEL_DATE_TYPE_RESPIN",
|
| |
- "config_url": "https://pagure.io/workstation-ostree-config.git",
|
| |
- "config_branch": "main",
|
| |
- "treefile": "silverblue.yaml",
|
| |
- "arches": ["x86_64", "ppc64le", "aarch64"],
|
| |
- "failable": ['*'],
|
| |
- },
|
| |
- "^Kinoite$": {
|
| |
- "version": "!OSTREE_VERSION_FROM_LABEL_DATE_TYPE_RESPIN",
|
| |
- "config_url": "https://pagure.io/workstation-ostree-config.git",
|
| |
- "config_branch": "main",
|
| |
- "treefile": "kinoite.yaml",
|
| |
- "arches": ["x86_64", "ppc64le", "aarch64"],
|
| |
- "failable": ['*'],
|
| |
- },
|
| |
- "^Sericea$": {
|
| |
- "version": "!OSTREE_VERSION_FROM_LABEL_DATE_TYPE_RESPIN",
|
| |
- "config_url": "https://pagure.io/workstation-ostree-config.git",
|
| |
- "config_branch": "main",
|
| |
- "treefile": "sway-atomic.yaml",
|
| |
- "arches": ["x86_64", "aarch64"],
|
| |
- "failable": ['*'],
|
| |
- },
|
| |
- "^Onyx$": {
|
| |
- "version": "!OSTREE_VERSION_FROM_LABEL_DATE_TYPE_RESPIN",
|
| |
- "config_url": "https://pagure.io/workstation-ostree-config.git",
|
| |
- "config_branch": "main",
|
| |
- "treefile": "budgie-atomic.yaml",
|
| |
- "arches": ["x86_64"],
|
| |
- "failable": ['*'],
|
| |
- }
|
| |
- }
|
| |
-
|
| |
- ostree_installer = [
|
| |
- ("^Silverblue$", {
|
| |
- "x86_64": {
|
| |
- "repo": "Everything",
|
| |
- "release": None,
|
| |
- "rootfs_size": "9",
|
| |
- "add_template": ["ostree-based-installer/lorax-configure-repo.tmpl",
|
| |
- "ostree-based-installer/lorax-embed-repo.tmpl",
|
| |
- "ostree-based-installer/lorax-embed-flatpaks.tmpl"],
|
| |
- "add_template_var": [
|
| |
- "ostree_install_repo=https://kojipkgs.fedoraproject.org/compose/ostree/repo/",
|
| |
- "ostree_update_repo=https://ostree.fedoraproject.org",
|
| |
- "ostree_osname=fedora",
|
| |
- "ostree_oskey=fedora-42-primary",
|
| |
- "ostree_contenturl=mirrorlist=https://ostree.fedoraproject.org/mirrorlist",
|
| |
- "ostree_install_ref=fedora/rawhide/x86_64/silverblue",
|
| |
- "ostree_update_ref=fedora/rawhide/x86_64/silverblue",
|
| |
- "flatpak_remote_name=fedora",
|
| |
- # using registry-no-cdn avoids redirects to the CDN;
|
| |
- # needed because of network restrictions on koji runroot
|
| |
- "flatpak_remote_url=oci+https://registry-no-cdn.fedoraproject.org",
|
| |
- # keeping them on the stable release until the flatpak sig confirms the next update
|
| |
- "flatpak_remote_refs=runtime/org.fedoraproject.Platform/x86_64/f40 app/org.gnome.baobab/x86_64/stable app/org.gnome.Calculator/x86_64/stable app/org.gnome.Calendar/x86_64/stable app/org.gnome.Characters/x86_64/stable app/org.gnome.Snapshot/x86_64/stable app/org.gnome.clocks/x86_64/stable app/org.gnome.Connections/x86_64/stable app/org.gnome.Contacts/x86_64/stable app/org.gnome.Evince/x86_64/stable app/org.gnome.Extensions/x86_64/stable app/org.gnome.font-viewer/x86_64/stable app/org.gnome.TextEditor/x86_64/stable app/org.gnome.Loupe/x86_64/stable app/org.gnome.Logs/x86_64/stable app/org.gnome.Maps/x86_64/stable app/org.fedoraproject.MediaWriter/x86_64/stable app/org.gnome.NautilusPreviewer/x86_64/stable app/org.gnome.Weather/x86_64/stable",
|
| |
- ],
|
| |
- 'template_repo': 'https://pagure.io/fedora-lorax-templates.git',
|
| |
- 'template_branch': 'main',
|
| |
- # dbus-run-session is needed for Flatpak to talk to flatpak-oci-authenticator
|
| |
- 'extra_runr
|