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: update GTS kernel pin to 6.12.9 #2170

Merged
merged 4 commits into from
Feb 3, 2025
Merged
Show file tree
Hide file tree
Changes from all 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
6 changes: 3 additions & 3 deletions .github/workflows/build-image-gts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ on:
- testing
paths-ignore:
- "**.md"
# schedule:
# - cron: "50 5 * * 0" # 5:50 UTC Weekly on Sundays
schedule:
- cron: "50 5 * * 0" # 5:50 UTC Weekly on Sundays
workflow_dispatch:
workflow_call:

Expand All @@ -21,7 +21,7 @@ jobs:
matrix:
brand_name: [bluefin]
with:
kernel_pin: 6.11.8-200.fc40.x86_64 ## This is where kernels get pinned.
kernel_pin: 6.12.9-100.fc40.x86_64 ## This is where kernels get pinned.
brand_name: ${{ matrix.brand_name }}
stream_name: gts

Expand Down
5 changes: 1 addition & 4 deletions Justfile
Original file line number Diff line number Diff line change
Expand Up @@ -131,11 +131,8 @@ build $image="bluefin" $tag="latest" $flavor="main" rechunk="0" ghcr="0" pipelin
# AKMODS Flavor and Kernel Version
if [[ "${flavor}" =~ hwe ]]; then
akmods_flavor="bazzite"
elif [[ "${tag}" =~ gts ]]; then
elif [[ "${tag}" =~ gts|stable ]]; then
akmods_flavor="coreos-stable"
elif [[ "${tag}" =~ stable ]]; then
# TODO: revert this to "coreos-stable" once 6.12.9 kernel is released for coreos-stable images
akmods_flavor="coreos-testing"
elif [[ "${tag}" =~ beta ]]; then
akmods_flavor="coreos-testing"
else
Expand Down