builder: Always consistently identify Fedora variants
This eliminates the "variant-less" version of the images and correctly labels all variants properly.
This commit is contained in:
parent
34a4ef3ca5
commit
0d1538e7ca
10
builder.py
10
builder.py
@ -26,12 +26,12 @@ if not RELEASE:
|
||||
TARGETS = {
|
||||
"gnome": {
|
||||
"profile": "Workstation-GNOME",
|
||||
"name": f"Fedora Linux {RELEASE}",
|
||||
"name": f"Fedora Linux {RELEASE} Workstation (GNOME)",
|
||||
"id": "gnome",
|
||||
},
|
||||
"kde": {
|
||||
"profile": "Workstation-KDE",
|
||||
"name": f"Fedora Linux {RELEASE} with KDE",
|
||||
"name": f"Fedora Linux {RELEASE} KDE Plasma Desktop",
|
||||
"id": "kde",
|
||||
},
|
||||
"server": {
|
||||
@ -116,9 +116,6 @@ def packageBuild(target):
|
||||
runCommand(["./make-asahi-installer-package.sh"])
|
||||
today = date.today().strftime("%Y%m%d")
|
||||
|
||||
if target["id"] == "gnome":
|
||||
package = f"fedora-{RELEASE}-{today}.zip"
|
||||
else:
|
||||
package = f"fedora-{RELEASE}-{target['id']}-{today}.zip"
|
||||
os.rename(f"fedora-{RELEASE}-{today}.zip", package)
|
||||
with open("installer_data.json", "r") as f:
|
||||
@ -152,9 +149,6 @@ def invalidateCF(path):
|
||||
|
||||
def packageUpload(target):
|
||||
today = date.today().strftime("%Y%m%d")
|
||||
if target["id"] == "gnome":
|
||||
package = f"fedora-{RELEASE}-{today}.zip"
|
||||
else:
|
||||
package = f"fedora-{RELEASE}-{target['id']}-{today}.zip"
|
||||
|
||||
uploadToS3(package, f"os/{package}")
|
||||
|
Loading…
Reference in New Issue
Block a user