From aaaa538840e5f59eb295ad3fafad3e370502578c Mon Sep 17 00:00:00 2001 From: Tim Orling Date: Mon, 1 Apr 2024 16:59:51 -0700 Subject: [PATCH 1/2] workflows: add debian-12 and fedora-40 Thanks to Rob Woolley, we now have two new distro versions added to the matrix. Signed-off-by: Tim Orling --- .github/workflows/build-test-deploy.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/build-test-deploy.yml b/.github/workflows/build-test-deploy.yml index 819a917..4ad26c8 100644 --- a/.github/workflows/build-test-deploy.yml +++ b/.github/workflows/build-test-deploy.yml @@ -26,10 +26,12 @@ jobs: centos-7, debian-10, debian-11, + debian-12, fedora-36, fedora-37, fedora-38, fedora-39, + fedora-40, opensuse-15.4, opensuse-15.5, ubuntu-18.04, From a8f8c280f759ef099e26a612b830355f27252a9a Mon Sep 17 00:00:00 2001 From: Tim Orling Date: Mon, 1 Apr 2024 17:06:08 -0700 Subject: [PATCH 2/2] distro-check.sh: add debian-12 and fedora-40 This is easy to forget to add. Thank you again to Rob Woolley for adding these two new distributions to the matrix. FIXME: Since the release date is April 12, 2024, the fedora-40 container is reporting "Prerelease" so we need to satisify that string for now: PRETTY_NAME="Fedora Linux 40 (Container Image Prerelease)" Signed-off-by: Tim Orling --- tests/distro-check.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/distro-check.sh b/tests/distro-check.sh index fb5b90e..01775d6 100755 --- a/tests/distro-check.sh +++ b/tests/distro-check.sh @@ -22,10 +22,12 @@ distros["centos-7"]="CentOS Linux 7 (Core)" distros["debian-9"]="Debian GNU/Linux 9 (stretch)" distros["debian-10"]="Debian GNU/Linux 10 (buster)" distros["debian-11"]="Debian GNU/Linux 11 (bullseye)" +distros["debian-12"]="Debian GNU/Linux 12 (bookworm)" distros["fedora-36"]="Fedora Linux 36 (Container Image)" distros["fedora-37"]="Fedora Linux 37 (Container Image)" distros["fedora-38"]="Fedora Linux 38 (Container Image)" distros["fedora-39"]="Fedora Linux 39 (Container Image)" +distros["fedora-40"]="Fedora Linux 40 (Container Image Prerelease)" distros["opensuse-15.4"]="openSUSE Leap 15.4" distros["opensuse-15.5"]="openSUSE Leap 15.5" distros["ubuntu-18.04"]="Ubuntu 18.04"