Migrate CI/CD from CircleCI to GitHub Actions#175
Open
fabiocicerchia wants to merge 1 commit intomainfrom
Open
Migrate CI/CD from CircleCI to GitHub Actions#175fabiocicerchia wants to merge 1 commit intomainfrom
fabiocicerchia wants to merge 1 commit intomainfrom
Conversation
Migrate the two CircleCI workflows (builds + nightly) to GitHub Actions: - builds.yml: Full CI pipeline triggered on push with docker build/test, package build/test, multi-arch bundle, metadata, and release jobs - nightly.yml: Scheduled daily release job with manual dispatch support Uses matrix strategy for 6 distros x 2 architectures (amd64/arm64), GitHub-hosted ARM runners, actions/cache for GeoIP DB, and actions/upload-artifact for inter-job data passing. https://claude.ai/code/session_01PDdn6XVtM3KBTDAQfhoJDt
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.
Summary
This PR migrates the project's continuous integration and continuous deployment (CI/CD) pipeline from CircleCI to GitHub Actions. Two new workflow files have been added to replace the existing CircleCI configuration.
Key Changes
builds.yml: Main workflow that runs on every push to any branch (except tags). Handles:
nightly.yml: Scheduled workflow that runs daily at 00:00 UTC and on manual trigger. Performs:
Notable Implementation Details
https://claude.ai/code/session_01PDdn6XVtM3KBTDAQfhoJDt