ci(java-cloud-bom): Clean up BOM CI Workflows - #14008
Draft
lqiu96 wants to merge 5 commits into
Draft
Conversation
This change optimizes java-cloud-bom CI pipelines and eliminates flakiness: - Removes java-cloud-bom/tests/pre-install.sh in favor of standard 'mvn install -B -ntp -Pquick-build -DskipTests=true -T 1C'. - Adds quick-build profile to java-cloud-bom/pom.xml to skip unnecessary validation/format/checkstyle plugins during quick reactor installs. - Removes redundant javadoc, lint, and clirr jobs from java-cloud-bom-ci.yaml. - Inlines snapshot installation directly in workflow files.
lqiu96
commented
Aug 6, 2026
Comment on lines
+106
to
+119
| <!-- skips all plugins that would have been activated by the Maven lifecycle --> | ||
| <id>quick-build</id> | ||
| <properties> | ||
| <checkstyle.skip>true</checkstyle.skip> | ||
| <enforcer.skip>true</enforcer.skip> | ||
| <jacoco.skip>true</jacoco.skip> | ||
| <clirr.skip>true</clirr.skip> | ||
| <spotbugs.skip>true</spotbugs.skip> | ||
| <pmd.skip>true</pmd.skip> | ||
| <animal.sniffer.skip>true</animal.sniffer.skip> | ||
| <fmt.skip>true</fmt.skip> | ||
| <flatten.skip>true</flatten.skip> | ||
| <mdep.analyze.skip>true</mdep.analyze.skip> | ||
| </properties> |
Member
Author
There was a problem hiding this comment.
this probably should exist in shared-configs, but just going to keep this here for now to test if the CIs work
Contributor
There was a problem hiding this comment.
Code Review
This pull request introduces a new quick-build Maven profile in java-cloud-bom/pom.xml to skip various plugins and speed up the build process. Additionally, an unused bash script that automated BOM project installation has been removed. There are no review comments, and I have no feedback to provide.
…ci.yaml Consolidates all java-cloud-bom CI jobs into a single workflow file and removes redundant separate workflow files: - Moves bom-content-test, bom-assertion-test, test-invalid-bom, dashboard, and shared-dependencies-convergence into java-cloud-bom-ci.yaml. - Removes redundant units/windows matrix jobs. - Deletes java-cloud-bom-bom-content-test.yaml, java-cloud-bom-ci-validate-bom.yaml, and java-cloud-bom-dashboard.yaml.
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.
Had some difficulty debugging a bom CI issue. Trying to clean up the CI jobs to reduce the complexity and clean up jobs that may not be needed:
quick-buildprofile to java-cloud-bom/pom.xml to skip unnecessary validation/format/checkstyle plugins during quick reactor installs.