Split integration-test into per-deployment jobs#4216
Merged
Conversation
Splitting the job into `integration-test-snapshot` and `integration-test-release` removes the `always()` condition and the result-based ternaries, since each job now follows exactly one deploy job and inherits its skip. The snapshot variant also drops `log4j-repository-url`: `deploy-snapshot` has no `nexus-url` output, so the value was always empty, which is what the reusable workflow expects for snapshots. Assisted-By: Claude Fable 5 <noreply@anthropic.com>
ramanathan1504
approved these changes
Jul 26, 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 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.
Readability change in the spirit of #4215:splits
integration-testintointegration-test-snapshotandintegration-test-release, removing thealways()condition and the result-based ternaries. The snapshot job also dropslog4j-repository-url, sincedeploy-snapshothas nonexus-urloutput the value was always empty, which is what the reusable workflow expects for snapshots.Note: the dynamic job name is gone, so the deployed version no longer appears in the job name in the run overview.