Migrate PR Builder to GitHub Actions#560
Merged
Merged
Conversation
8e1c82b to
9bc6068
Compare
65e2fbd to
2d20ec3
Compare
Contributor
Author
ihsandemir
approved these changes
Oct 22, 2025
emreyigit
approved these changes
Oct 23, 2025
gareth-johnston
pushed a commit
to gareth-johnston/hazelcast-client-protocol
that referenced
this pull request
Jan 14, 2026
hazelcast#558 failed the PR builder because it runs on Jenkins, inside a custom Python-3.7 Docker image. [Python 3.7 has been end-of-life for 2 years](https://devguide.python.org/versions/), and is too old to support the proposed changes. We _could_ upgrade to a [newer Docker image](https://hub.docker.com/r/hazelcast/jenkins-python-client-3.9) (or even [make a new one](https://github.com/hazelcast/DevOps/tree/master/dockerfiles/clients/python)), but _I think_ it would be easier to migrate to GitHub Actions instead - the runner _already includes_ a recent Python installation. Changes: - create new GitHub action - dynamically determine languages to execute/test - previously markdown was missed Post-merge actions: - [ ] disable [Jenkins job](https://jenkins.hazelcast.com/job/Client-Protocol-pr-builder/)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
#558 failed the PR builder because it runs on Jenkins, inside a custom Python-3.7 Docker image.
Python 3.7 has been end-of-life for 2 years, and is too old to support the proposed changes.
We could upgrade to a newer Docker image (or even make a new one), but I think it would be easier to migrate to GitHub Actions instead - the runner already includes a recent Python installation.
Changes:
Post-merge actions: