Add CI profile for optimized continuous integration builds - #2957
Closed
velo wants to merge 3 commits into
Closed
Conversation
- Create new Maven profile 'ci' with single-threaded test execution - Configure redirectTestOutputToFile=false for better CI log visibility - Set forkCount=1 and reuseForks=false to avoid resource contention - Update GitHub Actions to use -T1 (single-threaded) and -Pci profile 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
Remove forkCount and reuseForks settings that were interfering with the existing toolchain setup and causing Java version mismatches. Keep only redirectTestOutputToFile=false for CI log visibility. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
Add forkCount=1 to both surefire and failsafe plugins in the CI profile to ensure tests run in single-threaded mode while maintaining toolchain compatibility by not setting reuseForks=false. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com> Signed-off-by: Marvin Froeder <velo.br@gmail.com>
velo
force-pushed
the
fix/vertx-http2-client-reconnect-test-timeout
branch
from
July 20, 2025 14:24
f16c1ec to
602f7ab
Compare
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
Add a new Maven profile specifically designed for CI environments to improve build stability and test output visibility.
Changes
ci: Configures surefire and failsafe plugins for CI-optimized executionforkCount=1andreuseForks=falseto prevent resource contentionredirectTestOutputToFile=falsefor better log visibility in CI-T1(single-threaded builds) and-PciprofileTest plan
mvn test -Pci🤖 Generated with Claude Code