Skip to content

Commit

Permalink
Add Fedora 41 Support (#308)
Browse files Browse the repository at this point in the history
Fedora 39 support will be removed after the next release.
  • Loading branch information
SeanTAllen authored Dec 8, 2024
1 parent 65205b9 commit b98df8f
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 6 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
FROM fedora:39
FROM fedora:41

RUN dnf install -y clang \
RUN dnf install -y binutils-gold \
clang \
git \
lsb-release \
openssl-devel \
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ set -o nounset

TODAY=$(date +%Y%m%d)
DOCKERFILE_DIR="$(dirname "$0")"
DOCKER_TAG="ghcr.io/ponylang/ponyup-ci-fedora39-bootstrap-tester:${TODAY}"
DOCKER_TAG="ghcr.io/ponylang/ponyup-ci-fedora41-bootstrap-tester:${TODAY}"

docker build --pull -t "${DOCKER_TAG}" "${DOCKERFILE_DIR}"
docker push "${DOCKER_TAG}"
6 changes: 3 additions & 3 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,11 +50,11 @@ jobs:
- name: Bootstrap test
run: SSL=0.9.0 .ci-scripts/test-bootstrap.sh

fedora39-bootstrap:
name: Fedora 39 bootstrap
fedora41-bootstrap:
name: Fedora 41 bootstrap
runs-on: ubuntu-latest
container:
image: ghcr.io/ponylang/ponyup-ci-fedora39-bootstrap-tester:20240130
image: ghcr.io/ponylang/ponyup-ci-fedora41-bootstrap-tester:20241205
steps:
- uses: actions/[email protected]
- name: Bootstrap test
Expand Down
3 changes: 3 additions & 0 deletions .release-notes/fedora41.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
## Add Fedora 41 support

We've added support for identifying Fedora 41 and downloading packages for it.
3 changes: 3 additions & 0 deletions ponyup-init.sh
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,9 @@ Linux*)
*"Fedora Linux 39"*)
platform_triple_distro="fedora39"
;;
*"Fedora Linux 41"*)
platform_triple_distro="fedora41"
;;
*) ;;
esac
;;
Expand Down

0 comments on commit b98df8f

Please sign in to comment.