Conversation
dejanzele
force-pushed
the
ci
branch
8 times, most recently
from
July 14, 2026 15:58
8df6a9f to
ee0486f
Compare
Signed-off-by: Dejan Zele Pejchev <pejcev.dejan@gmail.com>
Signed-off-by: Ivan Pavlovic <ivan@gr-oss.io>
|
Added a commit pinning all GitHub Actions in the new |
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.
Adds GitHub Actions CI and packages the connector as a publishable image, following the armada / armada-operator release pattern.
ci.ymlruns on every pull request, push tomain, andv*tag:rufflint, the test suite across the supported Python floor and ceiling (3.10 and 3.13), and a build of the connector image (build only, no push, no credentials). An aggregate job gates it as one required check.release.ymlmirrors the org's release flow. It triggerson: workflow_runafterCIcompletes successfully on av*tag (push the tag, or create a GitHub Release, which creates the tag). It validates the ref is a semver tag onmain, then publishes the multi-arch image (linux/amd64,linux/arm64) togresearch/armada-flyte-connector, tagged with the release version andlatest. It authenticates through the org's existingarmada-dockerhubGitHub Environment (DOCKERHUB_USER/DOCKERHUB_PASS) and is gated to the canonical repo, and it rejects a tag that does not matchpyproject.toml's version. Because it reuses the org's environment and credentials, no new secret setup is needed.It also packages the connector:
deploy/Dockerfile(thec0gRPC service image),deploy/kubernetes/connector.yaml(a Deployment and Service), aruff.toml, and a.dockerignore.