Commit 07bcfd7 1 parent 313fc0b commit 07bcfd7 Copy full SHA for 07bcfd7
File tree 5 files changed +15
-11
lines changed
5 files changed +15
-11
lines changed Original file line number Diff line number Diff line change @@ -99,12 +99,16 @@ jobs:
99
99
if [[ "${{ matrix.fedora_version }}" -eq "38" ]]; then
100
100
IS_LATEST_VERSION=false
101
101
IS_STABLE_VERSION=true
102
- IS_GTS_VERSION=true
102
+ IS_GTS_VERSION=false
103
103
elif [[ "${{ matrix.fedora_version }}" -eq "39" ]]; then
104
+ IS_LATEST_VERSION=false
105
+ IS_STABLE_VERSION=true
106
+ IS_GTS_VERSION=true
107
+ elif [[ "${{ matrix.fedora_version }}" -eq "40" ]]; then
104
108
IS_LATEST_VERSION=true
105
109
IS_STABLE_VERSION=true
106
110
IS_GTS_VERSION=false
107
- elif [[ "${{ matrix.fedora_version }}" -eq "40 " ]]; then
111
+ elif [[ "${{ matrix.fedora_version }}" -eq "41 " ]]; then
108
112
IS_LATEST_VERSION=false
109
113
IS_STABLE_VERSION=false
110
114
IS_GTS_VERSION=false
Original file line number Diff line number Diff line change @@ -2,11 +2,11 @@ ARG IMAGE_NAME="${IMAGE_NAME:-silverblue}"
2
2
ARG SOURCE_IMAGE="${SOURCE_IMAGE:-silverblue-main}"
3
3
ARG SOURCE_ORG="${SOURCE_ORG:-ublue-os}"
4
4
ARG BASE_IMAGE="ghcr.io/${SOURCE_ORG}/${SOURCE_IMAGE}"
5
- ARG FEDORA_MAJOR_VERSION="${FEDORA_MAJOR_VERSION:-39 }"
5
+ ARG FEDORA_MAJOR_VERSION="${FEDORA_MAJOR_VERSION:-40 }"
6
6
7
7
FROM ${BASE_IMAGE}:${FEDORA_MAJOR_VERSION} AS main
8
8
9
- ARG FEDORA_MAJOR_VERSION="${FEDORA_MAJOR_VERSION:-39 }"
9
+ ARG FEDORA_MAJOR_VERSION="${FEDORA_MAJOR_VERSION:-40 }"
10
10
ARG KERNEL_FLAVOR="${KERNEL_FLAVOR:-main}"
11
11
ARG IMAGE_NAME="${IMAGE_NAME:-silverblue}"
12
12
ARG IMAGE_VENDOR="${IMAGE_VENDOR:-ublue-os}"
@@ -28,7 +28,7 @@ RUN mkdir -p /var/lib/alternatives && \
28
28
FROM main AS nvidia
29
29
30
30
ARG SOURCE_ORG="${SOURCE_ORG:-ublue-os}"
31
- ARG FEDORA_MAJOR_VERSION="${FEDORA_MAJOR_VERSION:-39 }"
31
+ ARG FEDORA_MAJOR_VERSION="${FEDORA_MAJOR_VERSION:-40 }"
32
32
ARG KERNEL_FLAVOR="${KERNEL_FLAVOR:-main}"
33
33
ARG IMAGE_NAME="${IMAGE_NAME:-silverblue}"
34
34
ARG IMAGE_VENDOR="${IMAGE_VENDOR:-ublue-os}"
Original file line number Diff line number Diff line change @@ -6,10 +6,10 @@ IMAGE_INFO="/usr/share/ublue-os/image-info.json"
6
6
IMAGE_REF=" ostree-image-signed:docker://ghcr.io/$IMAGE_VENDOR /$IMAGE_NAME "
7
7
8
8
case $FEDORA_MAJOR_VERSION in
9
- 39 )
9
+ 40 )
10
10
IMAGE_TAG=" latest"
11
11
;;
12
- 38 )
12
+ 39 )
13
13
IMAGE_TAG=" gts"
14
14
;;
15
15
* )
Original file line number Diff line number Diff line change @@ -9,8 +9,8 @@ if [ "${KERNEL_FLAVOR}" = "main" ]; then
9
9
exit 0
10
10
fi
11
11
12
- # after F40 launches, bump to 41
13
- if [[ " ${FEDORA_MAJOR_VERSION} " -ge 40 ]]; then
12
+ # after F41 launches, bump to 42
13
+ if [[ " ${FEDORA_MAJOR_VERSION} " -ge 41 ]]; then
14
14
# note: this is done before single mirror hack to ensure this persists in image and is not reset
15
15
# pre-release rpmfusion is in a different location
16
16
sed -i " s%free/fedora/releases%free/fedora/development%" /etc/yum.repos.d/rpmfusion-* .repo
Original file line number Diff line number Diff line change 10
10
sed -i ' s@enabled=1@enabled=0@g' /etc/yum.repos.d/fedora-cisco-openh264.repo
11
11
fi
12
12
13
- # after F40 launches, bump to 41
14
- if [[ " ${FEDORA_MAJOR_VERSION} " -ge 40 ]]; then
13
+ # after F41 launches, bump to 42
14
+ if [[ " ${FEDORA_MAJOR_VERSION} " -ge 41 ]]; then
15
15
# note: this is done before single mirror hack to ensure this persists in image and is not reset
16
16
# pre-release rpmfusion is in a different location
17
17
sed -i " s%free/fedora/releases%free/fedora/development%" /etc/yum.repos.d/rpmfusion-* .repo
You can’t perform that action at this time.
0 commit comments