Add parallel test splitting to CI Check workflow#646
Merged
Donnerbart merged 7 commits intoFeb 8, 2026
Merged
Conversation
Restructure the CI Check workflow to run unit, integration, and system tests in parallel with test splitting across 4 shards. This replaces the single monolithic `check` job with separate jobs for compilation, unit tests, integration tests, and system tests. Key changes: - Trigger on pull_request instead of push - Add compile job to warm up Gradle cache - Split integration and system tests across 4 parallel shards using donnerbart/split-tests-java-action - Add JUnit report merging jobs for integration and system tests - Add test result uploads and test reporter publishing - Add failed test annotations with xmllint - Add final check job that gates on all upstream jobs - Free disk space before integration and system tests - Update actions/checkout and actions/setup-java to latest versions
Quote all values containing `#` followed by expressions so YAML
does not interpret them as inline comments. Without quotes, names
like `Integration test results #${{ matrix.split-index }}` were
parsed as just `Integration test results`, causing all matrix shards
to upload artifacts with the same name and fail with 409 Conflict.
Donnerbart
force-pushed
the
feature/int-75-add-parallel-test-splitting-to-ci-check-workflow
branch
from
February 8, 2026 05:31
6249261 to
ddb415f
Compare
Separate the shared split-total into per-test-type configuration so integration tests run across 4 shards and system tests across 8.
Not needed for this project and adds unnecessary build time.
Rename the gate job name from "CI Check" to "check" so the reported status "CI Check / check" matches the existing branch protection rule.
Donnerbart
deleted the
feature/int-75-add-parallel-test-splitting-to-ci-check-workflow
branch
February 8, 2026 06:23
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
checkjob with separate jobs: compile, unit-test, integration-test (5 shards), system-test (11 shards), JUnit report merging, and a final gate checkpull_requestinstead ofpush