mirror of
https://git.rockylinux.org/rocky/pungi-rocky.git
synced 2024-11-21 20:31:30 +00:00
add obvious lookahead vars
This commit is contained in:
parent
78d18ff8cc
commit
8028c26a0f
8
rocky-lookahead.conf
Normal file
8
rocky-lookahead.conf
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
from shared/variables import *
|
||||||
|
from rocky-lookahead/variables import *
|
||||||
|
from shared/all import *
|
||||||
|
from rocky-lookahead/override import *
|
||||||
|
|
||||||
|
global_release = '!RELEASE_FROM_DATE_RESPIN'
|
||||||
|
|
||||||
|
sigkeys = [None]
|
15
rocky-lookahead/override.conf
Normal file
15
rocky-lookahead/override.conf
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
# This files overrides default variables defined in the configs in
|
||||||
|
# the ../shared directory.
|
||||||
|
|
||||||
|
#from images import *
|
||||||
|
|
||||||
|
# Unsigned builds for now
|
||||||
|
sigkeys = [None]
|
||||||
|
|
||||||
|
tree_arches = ['aarch64', 'ppc64le', 's390x', 'x86_64']
|
||||||
|
|
||||||
|
lorax_use_koji_plugin = False
|
||||||
|
|
||||||
|
translate_paths = [ # required by image-build
|
||||||
|
("/mnt/koji", "https://koji.rockylinux.org/kojifiles")
|
||||||
|
]
|
55
rocky-lookahead/variables.conf
Normal file
55
rocky-lookahead/variables.conf
Normal file
@ -0,0 +1,55 @@
|
|||||||
|
# This file sets the values of variables defined in
|
||||||
|
# the `../shared/variables.conf`.
|
||||||
|
|
||||||
|
RELEASE_NAME = 'Rocky Linux'
|
||||||
|
RELEASE_SHORT = 'Rocky'
|
||||||
|
RELEASE_VERSION_X = '9'
|
||||||
|
RELEASE_VERSION_Y = '6'
|
||||||
|
RELEASE_VERSION_XY = "%s.%s" % (RELEASE_VERSION_X, RELEASE_VERSION_Y)
|
||||||
|
RELEASE_VERSION = RELEASE_VERSION_XY
|
||||||
|
|
||||||
|
PKGSET_KOJI_TAG = 'r9-compose'
|
||||||
|
PKGSET_KOJI_MODULE_TAG = 'el9-modules-pending-signed'
|
||||||
|
|
||||||
|
RUNROOT_CHANNEL = 'runroot'
|
||||||
|
RUNROOT_TAG = 'r9-build'
|
||||||
|
|
||||||
|
COMPS_REPO = 'https://git.rockylinux.org/rocky/comps.git'
|
||||||
|
COMPS_BRANCH = 'main'
|
||||||
|
COMPS_FILE = 'comps-rocky-%s-lh.xml' % RELEASE_VERSION_X
|
||||||
|
COMPS_COMMAND = ''
|
||||||
|
|
||||||
|
MODULE_DEFAULTS_REPO = 'https://git.rockylinux.org/rocky/rocky-module-defaults.git'
|
||||||
|
MODULE_DEFAULTS_BRANCH = 'r%s' % RELEASE_VERSION
|
||||||
|
|
||||||
|
VARIANTS_SCM = 'git'
|
||||||
|
VARIANTS_REPO = 'https://git.rockylinux.org/rocky/pungi-rocky.git'
|
||||||
|
VARIANTS_BRANCH = 'r%ss' % RELEASE_VERSION_X
|
||||||
|
VARIANTS_FILE = 'variants.xml'
|
||||||
|
|
||||||
|
GATHER_PREPOPULATE_REPO = 'https://git.rockylinux.org/rocky/pungi-rocky.git'
|
||||||
|
GATHER_PREPOPULATE_BRANCH = 'r%ss' % RELEASE_VERSION_X
|
||||||
|
GATHER_PREPOPULATE_FILE = 'prepopulate.json'
|
||||||
|
GATHER_PREPOPULATE_COMMAND = ''
|
||||||
|
|
||||||
|
EXTRA_FILES = [
|
||||||
|
{
|
||||||
|
"scm": "git",
|
||||||
|
"repo": "https://git.rockylinux.org/staging/src/rocky-release.git",
|
||||||
|
"branch": "r9",
|
||||||
|
"file": [
|
||||||
|
"SOURCES/LICENSE",
|
||||||
|
"SOURCES/EULA",
|
||||||
|
"SOURCES/COMMUNITY-CHARTER",
|
||||||
|
"SOURCES/RPM-GPG-KEY-Rocky-9",
|
||||||
|
"SOURCES/RPM-GPG-KEY-Rocky-9-Testing",
|
||||||
|
],
|
||||||
|
"target": "",
|
||||||
|
}
|
||||||
|
]
|
||||||
|
|
||||||
|
EXTRA_BUILDINSTALL_SKIP = ('^BaseOS$', {
|
||||||
|
'i386': True,
|
||||||
|
})
|
||||||
|
|
||||||
|
EXTRA_ISO_ARCHES = ['aarch64', 'ppc64le', 's390x', 'x86_64']
|
@ -4,7 +4,7 @@
|
|||||||
RELEASE_NAME = 'Rocky Linux'
|
RELEASE_NAME = 'Rocky Linux'
|
||||||
RELEASE_SHORT = 'Rocky'
|
RELEASE_SHORT = 'Rocky'
|
||||||
RELEASE_VERSION_X = '9'
|
RELEASE_VERSION_X = '9'
|
||||||
RELEASE_VERSION_Y = '5'
|
RELEASE_VERSION_Y = '6'
|
||||||
RELEASE_VERSION_XY = "%s.%s" % (RELEASE_VERSION_X, RELEASE_VERSION_Y)
|
RELEASE_VERSION_XY = "%s.%s" % (RELEASE_VERSION_X, RELEASE_VERSION_Y)
|
||||||
RELEASE_VERSION = RELEASE_VERSION_XY
|
RELEASE_VERSION = RELEASE_VERSION_XY
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user