From: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Date: Mon, 23 Feb 2026 01:39:04 +0000 (+0000) Subject: ci: add Fedora 44 and shift rawhide handling to Fedora 45 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=661b09dc372313cede887b38b0c0d862a658cd60;p=thirdparty%2Ftvheadend.git ci: add Fedora 44 and shift rawhide handling to Fedora 45 Co-authored-by: Flole998 <9951871+Flole998@users.noreply.github.com> --- diff --git a/.github/workflows/build-ci.yml b/.github/workflows/build-ci.yml index 11e7ebf52..740361357 100644 --- a/.github/workflows/build-ci.yml +++ b/.github/workflows/build-ci.yml @@ -221,7 +221,7 @@ jobs: name: Build on native fedora:${{ matrix.releasever }} strategy: matrix: - releasever: ["37", "38", "39", "40", "41", "42", "43", "rawhide"] + releasever: ["37", "38", "39", "40", "41", "42", "43", "44", "rawhide"] container: image: "fedora:${{ matrix.releasever }}" steps: diff --git a/.github/workflows/build-cloudsmith.yml b/.github/workflows/build-cloudsmith.yml index 7896afb28..3e6dcf2e8 100644 --- a/.github/workflows/build-cloudsmith.yml +++ b/.github/workflows/build-cloudsmith.yml @@ -232,7 +232,7 @@ jobs: name: Build on native fedora:${{ matrix.releasever }} strategy: matrix: - releasever: ["37", "38", "39", "40", "41", "42", "43", "rawhide"] + releasever: ["37", "38", "39", "40", "41", "42", "43", "44", "rawhide"] container: image: "fedora:${{ matrix.releasever }}" steps: diff --git a/support/cloudsmith.sh b/support/cloudsmith.sh index 2445da65e..be953b2e7 100755 --- a/support/cloudsmith.sh +++ b/support/cloudsmith.sh @@ -80,12 +80,12 @@ case $DISTRO in TARGET="${VERSION%%.*}";; fedora) case $VERSION in - 37|38|39|40|41|42) + 37|38|39|40|41|42|43|44) PKGMGR="dnf" OS="fedora" TARGET=$VERSION;; - 43|44) - echo -e "${YELLOW}Fedora 43 (current rawhide) is not (yet) supported by Cloudsmith${NC}" + 45) + echo -e "${YELLOW}Fedora 45 (current rawhide) is not (yet) supported by Cloudsmith${NC}" exit 0;; *) echo -e "${RED}Fedora release $VERSION could not be recognized${NC}"