Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(ci): turn on F41 builds #1801

Merged
merged 16 commits into from
Oct 20, 2024
Merged
Show file tree
Hide file tree
Changes from 13 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 16 additions & 16 deletions .github/workflows/build-beta-aurora.yml
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
name: Aurora Beta
on:
# merge_group:
# pull_request:
# branches:
# - main
# - testing
# paths-ignore:
# - "**.md"
# - "system_files/silverblue/**"
# push:
# branches:
# - main
# paths-ignore:
# - "**.md"
# - "system_files/silverblue/**"
# schedule:
# - cron: "40 4 * * *" # 4:40 UTC everyday
merge_group:
pull_request:
branches:
- main
- testing
paths-ignore:
- "**.md"
- "system_files/silverblue/**"
push:
branches:
- main
paths-ignore:
- "**.md"
- "system_files/silverblue/**"
schedule:
- cron: "40 4 * * *" # 4:40 UTC everyday
workflow_dispatch:

jobs:
Expand Down
32 changes: 16 additions & 16 deletions .github/workflows/build-beta-bluefin.yml
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
name: Bluefin Beta
on:
# merge_group:
# pull_request:
# branches:
# - main
# - testing
# paths-ignore:
# - "**.md"
# - "system_files/silverblue/**"
# push:
# branches:
# - main
# paths-ignore:
# - "**.md"
# - "system_files/silverblue/**"
# schedule:
# - cron: "40 4 * * *" # 4:40 UTC everyday
merge_group:
pull_request:
branches:
- main
- testing
paths-ignore:
- "**.md"
- "system_files/silverblue/**"
push:
branches:
- main
paths-ignore:
- "**.md"
- "system_files/silverblue/**"
schedule:
- cron: "40 4 * * *" # 4:40 UTC everyday
workflow_dispatch:

jobs:
Expand Down
6 changes: 5 additions & 1 deletion build_files/bluefin-changes.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,11 @@ if [[ "${BASE_IMAGE_NAME}" = "silverblue" ]]; then
if [[ -f /usr/share/applications/org.gnome.SystemMonitor.desktop ]]; then
sed -i 's@\[Desktop Entry\]@\[Desktop Entry\]\nHidden=true@g' /usr/share/applications/org.gnome.SystemMonitor.desktop
fi
sed -i 's@\[Desktop Entry\]@\[Desktop Entry\]\nNoDisplay=true@g' /usr/share/applications/org.gnome.Terminal.desktop\

# GNOME Terminal is replaced with Ptyxis in F41+
if [[ "${FEDORA_MAJOR_VERSION}" -lt "41" ]]; then
sed -i 's@\[Desktop Entry\]@\[Desktop Entry\]\nNoDisplay=true@g' /usr/share/applications/org.gnome.Terminal.desktop
fi

# Create symlinks from old to new wallpaper names for backwards compatibility
ln -s "/usr/share/backgrounds/bluefin/01-bluefin.xml" "/usr/share/backgrounds/bluefin/bluefin-winter-dynamic.xml"
Expand Down
2 changes: 1 addition & 1 deletion build_files/bootc.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/bash

if [ "$FEDORA_MAJOR_VERSION" -ge "40" ]; then
if [ "$FEDORA_MAJOR_VERSION" -eq "40" ]; then
/usr/bin/bootupctl backend generate-update-metadata
fi
2 changes: 1 addition & 1 deletion build_files/copr-repos.sh
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ elif [[ "${BASE_IMAGE_NAME}" = "kinoite" ]]; then
fi

# GNOME Triple Buffering
if [[ "${BASE_IMAGE_NAME}" = "silverblue" && "${FEDORA_MAJOR_VERSION}" -gt "39" ]]; then
if [[ "${BASE_IMAGE_NAME}" = "silverblue" && "${FEDORA_MAJOR_VERSION}" -gt "39" && "${FEDORA_MAJOR_VERSION}" -ne "41" ]]; then
rpm-ostree override replace \
--experimental \
--from repo=copr:copr.fedorainfracloud.org:ublue-os:staging \
Expand Down
27 changes: 22 additions & 5 deletions packages.json
Original file line number Diff line number Diff line change
Expand Up @@ -127,8 +127,6 @@
"libvirt",
"libvirt-nss",
"lxc",
"lxd-agent",
"lxd",
"mozilla-fira-mono-fonts",
"nicstat",
"numactl",
Expand Down Expand Up @@ -178,8 +176,7 @@
],
"kinoite": [
"krfb",
"krfb-libs",
"plasma-welcome"
"krfb-libs"
],
"dx": []
}
Expand All @@ -198,6 +195,9 @@
"exclude": {
"all": [],
"silverblue": [],
"kinoite": [
"plasma-welcome"
],
"dx": []
}
},
Expand All @@ -212,8 +212,25 @@
"exclude": {
"all": [],
"silverblue": [],
"kinoite": [
"plasma-welcome"
],
"dx": []
}
},
"41": {
"include": {
"all": [],
"kinoite": [
"ptyxis"
],
"silverblue": []
},
"exclude": {
"all": [],
"silverblue": [],
"kinoite": [],
"dx": []
}
}

}
Loading