use gha instead of circleci - #54
Merged
Merged
Conversation
| on: | ||
| push: | ||
| branches: | ||
| - master |
There was a problem hiding this comment.
Release branches never trigger CI
Medium Severity
The workflow on.push.branches list only includes master, but the publish job if still allows refs/heads/release-*. Pushes to release branches never start the workflow, so that publish path from the old CircleCI filters is unreachable.
Additional Locations (1)
Reviewed by Cursor Bugbot for commit 77a7bc3. Configure here.
joshuafernandes
force-pushed
the
switch-to-gha
branch
from
July 29, 2026 02:36
31190f3 to
0850d08
Compare
gfukushima
reviewed
Jul 29, 2026
joshuafernandes
force-pushed
the
switch-to-gha
branch
from
July 29, 2026 02:50
7f7af81 to
e05f1b1
Compare
There was a problem hiding this comment.
Cursor Bugbot has reviewed your changes and found 1 potential issue.
There are 3 total unresolved issues (including 2 from previous reviews).
❌ Bugbot Autofix is OFF. To automatically fix reported issues with cloud agents, have a team admin enable autofix in the Cursor dashboard.
Reviewed by Cursor Bugbot for commit 1256aeb. Configure here.
joshuafernandes
force-pushed
the
switch-to-gha
branch
2 times, most recently
from
July 30, 2026 00:26
7726d4d to
1e12bd1
Compare
joshuafernandes
force-pushed
the
switch-to-gha
branch
from
July 30, 2026 00:27
1e12bd1 to
e37e413
Compare
gfukushima
approved these changes
Jul 30, 2026
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 subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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.


Note
Medium Risk
Changes release automation and Cloudsmith publishing gates; mistakes could break builds or affect artifact publication, but no application/runtime crypto code is modified in this diff.
Overview
Adds a new GitHub Actions workflow at
.github/workflows/ci.ymlto replace CircleCI for building and publishing the jblst Java artifact with bundled native BLST libraries.The pipeline runs on push/PR to
masterand semver tags, with parallel jobs for Linux x86_64, cross-compiled Linux ARM64, macOS (x86_64 + arm64 with arch directory fixes), and Windows (TDM GCC + Swig). Each platform job uploads native artifacts; anassemblejob downloads them, copies generated Java/resources intosrc/main, runs./gradlew buildandcheckJarContents, and stores the JAR plus workspace artifacts.A gated
publishjob (protectedpublishenvironment,master/release-*/ tags only) reuses the assembled workspace and runscheckJarContents publishto Cloudsmith usingCLOUDSMITH_USER/CLOUDSMITH_API_KEYsecrets.Reviewed by Cursor Bugbot for commit e37e413. Bugbot is set up for automated code reviews on this repo. Configure here.