rename atomic* variants
Move Atomic to AtomicHost and WorkstationOstree to AtomicWorkstation. This is mostly to make things align more with the names of the things we actually put out. Signed-off-by: Dusty Mabe <dusty@dustymabe.com>
This commit is contained in:
parent
fce2dd8b75
commit
42f90b2e42
12
fedora.conf
12
fedora.conf
@ -261,7 +261,8 @@ volume_id_substitutions = {
|
||||
'Beta': 'B',
|
||||
'Rawhide': 'rawh',
|
||||
'Astronomy_KDE': 'AstK',
|
||||
'Atomic': 'AH',
|
||||
'AtomicHost': 'AH',
|
||||
'AtomicWorkstation': 'AW',
|
||||
'Cinnamon': 'Cinn',
|
||||
'Cloud': 'C',
|
||||
'Design_suite': 'Dsgn',
|
||||
@ -279,7 +280,6 @@ volume_id_substitutions = {
|
||||
'Security': 'Sec',
|
||||
'Server': 'S',
|
||||
'-Workstation-': '-WS-',
|
||||
'WorkstationOstree': 'WS',
|
||||
}
|
||||
|
||||
disc_types = {
|
||||
@ -729,7 +729,7 @@ live_images = [
|
||||
]
|
||||
|
||||
ostree = [
|
||||
("^Atomic$", {
|
||||
("^AtomicHost$", {
|
||||
"aarch64": {
|
||||
"version": '!OSTREE_VERSION_FROM_LABEL_DATE_TYPE_RESPIN',
|
||||
"treefile": "fedora-atomic-host.json",
|
||||
@ -758,7 +758,7 @@ ostree = [
|
||||
'failable': ['*'],
|
||||
}
|
||||
}),
|
||||
("^ostree$", {
|
||||
("^AtomicWorkstation$", {
|
||||
"x86_64": {
|
||||
"version": "!OSTREE_VERSION_FROM_LABEL_DATE_TYPE_RESPIN",
|
||||
"treefile": "fedora-ostree-workstation.json",
|
||||
@ -772,7 +772,7 @@ ostree = [
|
||||
]
|
||||
|
||||
ostree_installer = [
|
||||
("^Atomic$", {
|
||||
("^AtomicHost$", {
|
||||
"x86_64": {
|
||||
"repo": "Everything",
|
||||
"release": None,
|
||||
@ -825,7 +825,7 @@ ostree_installer = [
|
||||
'failable': ['*'],
|
||||
}
|
||||
}),
|
||||
("^WorkstationOstree$", {
|
||||
("^AtomicWorkstation$", {
|
||||
"x86_64": {
|
||||
"repo": "Everything",
|
||||
"release": None,
|
||||
|
14
nightly.sh
14
nightly.sh
@ -117,12 +117,12 @@ if [ ! -d "$RSYNCTARGET" ]; then
|
||||
fi
|
||||
$RSYNCPREFIX compose-partial-copy --arch=armhfp --arch=x86_64 --arch src \
|
||||
"$DESTDIR" "$RSYNCTARGET/" \
|
||||
--variant Everything --variant Atomic --variant CloudImages --variant Container \
|
||||
--variant Everything --variant AtomicHost --variant CloudImages --variant Container \
|
||||
--variant Server --variant Spins --variant Workstation --variant Modular \
|
||||
--link-dest="$RSYNCTARGET/Everything" --exclude=repodata
|
||||
$RSYNCPREFIX compose-partial-copy --arch=armhfp --arch=x86_64 --arch src \
|
||||
"$DESTDIR" "$RSYNCTARGET/" \
|
||||
--variant Everything --variant Atomic --variant CloudImages --variant Container \
|
||||
--variant Everything --variant AtomicHost --variant CloudImages --variant Container \
|
||||
--variant Server --variant Spins --variant Workstation --variant Modular \
|
||||
--link-dest="$RSYNCTARGET/Everything" --delete-after
|
||||
# aarch64 for Server and Everything is primary
|
||||
@ -164,24 +164,24 @@ $RSYNCPREFIX compose-partial-copy --arch=i386 --arch=ppc64 --arch=ppc64le --arch
|
||||
$RSYNCPREFIX compose-partial-copy --arch=i386 --arch=ppc64 --arch=ppc64le --arch=s390x \
|
||||
"$DESTDIR" "$RSYNCSECTARGET/" \
|
||||
--link-dest="$RSYNCTARGET/Everything/" --delete-after
|
||||
# aarch64 is alternative for Atomic Labs Spins Workstation
|
||||
# aarch64 is alternative for AtomicHost Labs Spins Workstation
|
||||
$RSYNCPREFIX compose-partial-copy --arch=i386 --arch=ppc64 --arch=ppc64le --arch=s390x \
|
||||
"$DESTDIR" "$RSYNCSECTARGET/" \
|
||||
--variant Atomic --variant Cloud --variant CloudImages --variant Container \
|
||||
--variant AtomicHost --variant Cloud --variant CloudImages --variant Container \
|
||||
--variant Labs --variant Spins --variant Workstation --variant Modular \
|
||||
--link-dest="$RSYNCTARGET/Everything/" --exclude=repodata
|
||||
$RSYNCPREFIX compose-partial-copy --arch=i386 --arch=ppc64 --arch=ppc64le --arch=s390x \
|
||||
"$DESTDIR" "$RSYNCSECTARGET/" \
|
||||
--variant Atomic --variant Cloud --variant CloudImages --variant Container \
|
||||
--variant AtomicHost --variant Cloud --variant CloudImages --variant Container \
|
||||
--variant Labs --variant Spins --variant Workstation --variant Modular \
|
||||
--link-dest="$RSYNCTARGET/Everything/" --delete-after
|
||||
$RSYNCPREFIX compose-partial-copy --arch=aarch64 \
|
||||
"$DESTDIR" "$RSYNCSECTARGET/" \
|
||||
--variant Atomic --variant Cloud --variant Labs --variant Spins --variant Workstation \
|
||||
--variant AtomicHost --variant Cloud --variant Labs --variant Spins --variant Workstation \
|
||||
--link-dest="$RSYNCTARGET/Everything/" --exclude=repodata
|
||||
$RSYNCPREFIX compose-partial-copy --arch=aarch64 \
|
||||
"$DESTDIR" "$RSYNCSECTARGET/" \
|
||||
--variant Atomic --variant Cloud --variant Labs --variant Spins --variant Workstation \
|
||||
--variant AtomicHost --variant Cloud --variant Labs --variant Spins --variant Workstation \
|
||||
--link-dest="$RSYNCTARGET/Everything/" --delete-after
|
||||
$RSYNCPREFIX rm "$RSYNCSECTARGET/.composeinfo"
|
||||
$RSYNCPREFIX ./releng/scripts/build_composeinfo "$RSYNCSECTARGET/" --name "$NEWCOMPOSE_ID"
|
||||
|
@ -1,7 +1,7 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE variants PUBLIC "-//Red Hat, Inc.//DTD Variants info//EN" "variants2012.dtd">
|
||||
<variants>
|
||||
<variant id="Atomic" name="Atomic" type="variant" is_empty="true">
|
||||
<variant id="AtomicHost" name="AtomicHost" type="variant" is_empty="true">
|
||||
<arches>
|
||||
<arch>aarch64</arch>
|
||||
<arch>x86_64</arch>
|
||||
@ -46,11 +46,6 @@
|
||||
<arch>x86_64</arch>
|
||||
</arches>
|
||||
</variant>
|
||||
<variant id="ostree" name="ostree" type="variant" is_empty="true">
|
||||
<arches>
|
||||
<arch>x86_64</arch>
|
||||
</arches>
|
||||
</variant>
|
||||
<variant id="Server" name="Server" type="variant">
|
||||
<arches>
|
||||
<arch>armhfp</arch>
|
||||
@ -131,7 +126,7 @@
|
||||
<environment display_order="10">workstation-product-environment</environment>
|
||||
</environments>
|
||||
</variant>
|
||||
<variant id="WorkstationOstree" name="Workstation Ostree" type="variant" is_empty="true">
|
||||
<variant id="AtomicWorkstation" name="AtomicWorkstation" type="variant" is_empty="true">
|
||||
<arches>
|
||||
<arch>aarch64</arch>
|
||||
<arch>armhfp</arch>
|
||||
|
Loading…
Reference in New Issue
Block a user