Skip to content

Commit a41583c

Browse files
committed
drop fedora 42 support
1 parent b7e5640 commit a41583c

6 files changed

Lines changed: 2 additions & 207 deletions

File tree

BUILD.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,6 @@ Linux package generation can be done directly with Docker in 2 steps:
9393
- `ubuntu-jammy`
9494
- `debian-bookworm`
9595
- `debian-trixie`
96-
- `fedora-42`
9796
- `fedora-43`
9897
- `fedora-44`
9998
- `rhel-8`

src/linux/Dockerfile-fedora-42

Lines changed: 0 additions & 162 deletions
This file was deleted.

tests/LinuxTest.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ def __init__(self, name, timeout, tests, distro, domains={}):
1616
"ubuntu",
1717
"debian-bookworm",
1818
"debian-trixie",
19-
"fedora-42",
2019
"fedora-43",
2120
"fedora-44",
2221
"centos",

tests/linux.sh

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ function build_image() {
3636
}
3737

3838
if [ ! -d /opt/packages ] ; then
39-
do_and_check_cmd sudo mkdir -p /opt/packages/{dev,prod}/{ubuntu,debian-bookworm,debian-trixie,fedora-42,fedora-43,fedora-44,rhel-8,rhel-9,rhel-10}
39+
do_and_check_cmd sudo mkdir -p /opt/packages/{dev,prod}/{ubuntu,debian-bookworm,debian-trixie,fedora-43,fedora-44,rhel-8,rhel-9,rhel-10}
4040
do_and_check_cmd sudo chmod -R 777 /opt/packages/
4141
fi
4242

@@ -55,8 +55,6 @@ find /opt/packages/ -type f -exec rm -f {} \;
5555
# gen_package "$1" "debian"
5656
# echo "Building centos package ..."
5757
# gen_package "$1" "centos"
58-
echo "Building fedora 42 package ..."
59-
gen_package "$1" "fedora-42"
6058
echo "Building fedora 43 package ..."
6159
gen_package "$1" "fedora-43"
6260
echo "Building fedora 44 package ..."
@@ -78,8 +76,6 @@ do_and_check_cmd cp -r "/opt/packages/$1" ./packages
7876
# build_image "debian"
7977
# echo "Building centos test image ..."
8078
# build_image "centos"
81-
echo "Building fedora 42 test image ..."
82-
build_image "fedora-42"
8379
echo "Building fedora 43 test image ..."
8480
build_image "fedora-43"
8581
echo "Building fedora 44 test image ..."

tests/linux/Dockerfile-fedora-42

Lines changed: 0 additions & 31 deletions
This file was deleted.

tests/linux/Linux.sh

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,6 @@ function buildPackage() {
2828
if [ "$DISTRO" = "debian-trixie" ]; then
2929
sudo docker build -t linux-debian-trixie -f src/linux/Dockerfile-debian-trixie .
3030
fi
31-
if [ "$DISTRO" = "fedora-42" ]; then
32-
sudo docker build -t linux-fedora-42 -f src/linux/Dockerfile-fedora-42 .
33-
fi
3431
if [ "$DISTRO" = "fedora-43" ]; then
3532
sudo docker build -t linux-fedora-43 -f src/linux/Dockerfile-fedora-43 .
3633
fi
@@ -65,9 +62,6 @@ function createContainer() {
6562
if [ "$DISTRO" = "debian-trixie" ]; then
6663
sudo docker run -v /tmp/debian-trixie:/data linux-debian-trixie
6764
fi
68-
if [ "$DISTRO" = "fedora-42" ]; then
69-
sudo docker run -v /tmp/fedora-42:/data linux-fedora-42
70-
fi
7165
if [ "$DISTRO" = "fedora-43" ]; then
7266
sudo docker run -v /tmp/fedora-43:/data linux-fedora-43
7367
fi
@@ -92,7 +86,7 @@ function createContainer() {
9286
# Retrieve $DISTRO from the user
9387

9488
function retrieveDistro() {
95-
echo "Which distro do you want to use? (ubuntu, debian-bookworm, debian-trixie, fedora-42, fedora-43, fedora-44, rhel-8, rhel-9, rhel-10)"
89+
echo "Which distro do you want to use? (ubuntu, debian-bookworm, debian-trixie, fedora-43, fedora-44, rhel-8, rhel-9, rhel-10)"
9690
read -r DISTRO
9791
}
9892

0 commit comments

Comments
 (0)