ci: update workflows on release/25.10-lts#189
Merged
patrick-stephens merged 5 commits intorelease/25.10-ltsfrom Jan 23, 2026
Merged
ci: update workflows on release/25.10-lts#189patrick-stephens merged 5 commits intorelease/25.10-ltsfrom
patrick-stephens merged 5 commits intorelease/25.10-ltsfrom
Conversation
Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: cubic-dev-ai[bot] <191113872+cubic-dev-ai[bot]@users.noreply.github.com> Signed-off-by: Pat <patrick.j.k.stephens@gmail.com>
patrick-stephens
previously approved these changes
Jan 22, 2026
There was a problem hiding this comment.
2 issues found across 12 files (changes from recent commits).
Prompt for AI agents (all issues)
Check if these issues are valid — if so, understand the root cause of each and fix them.
<file name=".github/workflows/call-build-containers.yaml">
<violation number="1">
P1: Restore the `build-args: |` key so the test image build receives build arguments and the workflow remains valid YAML.</violation>
</file>
<file name=".github/workflows/call-build-macos-packages.yaml">
<violation number="1">
P2: The linkage check points to `bin/fluentdo-agent`, but the project’s executable is `fluent-bit`. This will make the linkage check fail and skip validation. Use the actual binary name to ensure the check runs.</violation>
</file>
Reply with feedback, questions, or to request a fix. Tag @cubic-dev-ai to re-run a review.
| @@ -38,7 +38,7 @@ jobs: | |||
| uses: actions/checkout@v6 | |||
There was a problem hiding this comment.
P2: The linkage check points to bin/fluentdo-agent, but the project’s executable is fluent-bit. This will make the linkage check fail and skip validation. Use the actual binary name to ensure the check runs.
Prompt for AI agents
Check if this issue is valid — if so, understand the root cause and fix it. At .github/workflows/call-build-macos-packages.yaml, line 96:
<comment>The linkage check points to `bin/fluentdo-agent`, but the project’s executable is `fluent-bit`. This will make the linkage check fail and skip validation. Use the actual binary name to ensure the check runs.</comment>
<file context>
@@ -93,13 +93,13 @@ jobs:
continue-on-error: true
run: |
- DYLD_PRINT_LIBRARIES=1 DYLD_PRINT_LIBRARIES_POST_LAUNCH=1 DYLD_PRINT_RPATHS=1 bin/telemetryforge-agent --dry-run
+ DYLD_PRINT_LIBRARIES=1 DYLD_PRINT_LIBRARIES_POST_LAUNCH=1 DYLD_PRINT_RPATHS=1 bin/fluentdo-agent --dry-run
working-directory: source/build
</file context>
| # We only build for amd64 as the test image is only used for running BATS tests | ||
| platforms: linux/amd64 | ||
| target: test | ||
| build-args: | |
Contributor
There was a problem hiding this comment.
@cubic-dev-ai this change is incorrect so we should flag that next time
Signed-off-by: Patrick Stephens <pat@fluent.do>
Signed-off-by: Patrick Stephens <pat@fluent.do>
Signed-off-by: Patrick Stephens <pat@fluent.do>
There was a problem hiding this comment.
1 issue found across 1 file (changes from recent commits).
Prompt for AI agents (all issues)
Check if these issues are valid — if so, understand the root cause of each and fix them.
<file name="source/src/flb_record_dedup.c">
<violation number="1" location="source/src/flb_record_dedup.c:310">
P1: Rule violated: **Ensure tests are added**
Production code under `source/` was modified without any corresponding test changes under `source/tests/` or `source/testing/`, which violates the requirement to add/update automated tests for source changes (rule: Ensure tests are added).</violation>
</file>
Reply with feedback, questions, or to request a fix. Tag @cubic-dev-ai to re-run a review.
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.
Update workflows automatically on release/25.10-lts
Summary by cubic
Rebranded CI workflows to Telemetry Forge on release/25.10-lts so builds, tests, and releases publish to the right registries and paths. Also disabled RocksDB ZSTD compression in record dedup to avoid issues on this LTS branch.
Refactors
Bug Fixes
Written for commit 8d92e7d. Summary will update on new commits.