Update test data
The parts in multi compose are now named reasonably. The package set repos are selected only once and not per variant. We can't use repos with packages for specific arch only as that would require more transformations during generating test data. Lookasides for ResilientStorage part are added to point to Server part. Signed-off-by: Lubomír Sedlář <lsedlar@redhat.com>
This commit is contained in:
parent
1f95c33e2a
commit
e71e91982b
@ -1,14 +1,10 @@
|
||||
from dummy-pungi import *
|
||||
|
||||
release_short = "Client"
|
||||
|
||||
tree_variants = ["Client"]
|
||||
pkgset_repos = {
|
||||
"i386": [
|
||||
"{{configdir}}/repo",
|
||||
],
|
||||
"x86_64": [
|
||||
"{{configdir}}/repo",
|
||||
],
|
||||
"s390x": [
|
||||
"*": [
|
||||
"{{configdir}}/repo",
|
||||
],
|
||||
}
|
||||
|
@ -19,13 +19,7 @@ runroot = False
|
||||
sigkeys = [None]
|
||||
pkgset_source = "repos"
|
||||
pkgset_repos = {
|
||||
"i386": [
|
||||
"repo",
|
||||
],
|
||||
"x86_64": [
|
||||
"repo",
|
||||
],
|
||||
"s390x": [
|
||||
"*": [
|
||||
"repo",
|
||||
],
|
||||
}
|
||||
|
@ -1,15 +1,19 @@
|
||||
from dummy-pungi import *
|
||||
|
||||
release_short = "ResilientStorage"
|
||||
|
||||
tree_variants = ["ResilientStorage"]
|
||||
variants_file = "multi-compose-variants.xml"
|
||||
pkgset_repos = {
|
||||
"i386": [
|
||||
"{{configdir}}/repo",
|
||||
],
|
||||
"x86_64": [
|
||||
"{{configdir}}/repo",
|
||||
],
|
||||
"s390x": [
|
||||
"{{configdir}}/repo",
|
||||
"*": [
|
||||
"{{configdir}}/repo/",
|
||||
],
|
||||
}
|
||||
gather_lookaside_repos = [
|
||||
('^ResilientStorage$', {
|
||||
'*': [
|
||||
"{{part-server}}/compose/Server/$basearch/os",
|
||||
"{{part-server}}/compose/Server/source/tree",
|
||||
]
|
||||
})
|
||||
]
|
||||
|
@ -1,15 +1,11 @@
|
||||
from dummy-pungi import *
|
||||
|
||||
release_short = "Server"
|
||||
|
||||
tree_variants = ["Server"]
|
||||
variants_file = "multi-compose-variants.xml"
|
||||
pkgset_repos = {
|
||||
"i386": [
|
||||
"{{configdir}}/repo",
|
||||
],
|
||||
"x86_64": [
|
||||
"{{configdir}}/repo",
|
||||
],
|
||||
"s390x": [
|
||||
"*": [
|
||||
"{{configdir}}/repo",
|
||||
],
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user