Skip to content

Commit

Permalink
Build Fedora RPMs on 40 and 41
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelklishin committed Nov 1, 2024
1 parent 4c3decd commit 48844a5
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 5 deletions.
10 changes: 8 additions & 2 deletions docker/build-docker-image.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,18 @@ case $os_name in
8|stream8|centos8)
image="rockylinux"
image_tag=8;;
fedora|f38|fc38|fedora38)
fedora|f41|fc41|fedora41)
image="fedora"
image_tag="38";;
image_tag="41";;
fedora|f40|fc40|fedora40)
image="fedora"
image_tag="40";;
fedora|f39|fc39|fedora39)
image="fedora"
image_tag="39";;
fedora|f38|fc38|fedora38)
image="fedora"
image_tag="38";;
al|al2023|amazonlinux2023)
image="amazonlinux"
image_tag="2023";;
Expand Down
2 changes: 1 addition & 1 deletion docker/build-image-and-rpm.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ second: docker build parameters such as --no-cache
-----------------------------------------
Ex: ./build-image-and-rpm.sh stream9 --no-cache
Ex: ./build-image-and-rpm.sh stream8 --no-cache
Ex: ./build-image-and-rpm.sh fedora38 --no-cache
Ex: ./build-image-and-rpm.sh fedora41 --no-cache
"
exit 1
}
Expand Down
4 changes: 2 additions & 2 deletions docker/build-packages.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ build_and_fetch_rpm_for "stream9"
build_and_fetch_rpm_for "stream8"
# These distributions cannot use CentOS Stream packages
build_and_fetch_rpm_for "al2023"
build_and_fetch_rpm_for "fc38"

build_and_fetch_rpm_for "fc40"
build_and_fetch_rpm_for "fc41"

0 comments on commit 48844a5

Please sign in to comment.