Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Fedora 41 Support #308

Merged
merged 1 commit into from
Dec 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading