SONARJAVA-6219 Remove --batch-mode mvn argument to log repox downloads#5542
SONARJAVA-6219 Remove --batch-mode mvn argument to log repox downloads#5542tomasz-tylenda-sonarsource merged 1 commit intomasterfrom
Conversation
SummaryThis PR removes the What reviewers should knowThe change is straightforward: verify that the new
|
.github/workflows/build.yml
Outdated
| run: | | ||
| cd its/plugin | ||
| mvn package --batch-mode -Pit-plugin -Dsonar.runtimeVersion=${{ matrix.item.sq_version }} -Dmaven.test.redirectTestOutputToFile=false -B -e -V -Dparallel=classes -DuseUnlimitedThreads=true | ||
| mvn package ${MAVEN_OUTPUT_ARGS} -Pit-plugin -Dsonar.runtimeVersion=${{ matrix.item.sq_version }} -Dmaven.test.redirectTestOutputToFile=false |
There was a problem hiding this comment.
The old command included -Dparallel=classes -DuseUnlimitedThreads=true, but both were dropped here. This appears to be an unintentional side-effect of cleaning up the batch-mode flags — the ruling-qa job (line 101) kept its equivalent -Dparallel=methods -DuseUnlimitedThreads=true. Without these, plugin-qa tests run sequentially, which will likely significantly increase CI time.
| mvn package ${MAVEN_OUTPUT_ARGS} -Pit-plugin -Dsonar.runtimeVersion=${{ matrix.item.sq_version }} -Dmaven.test.redirectTestOutputToFile=false | |
| mvn package ${MAVEN_OUTPUT_ARGS} -Pit-plugin -Dsonar.runtimeVersion=${{ matrix.item.sq_version }} -Dmaven.test.redirectTestOutputToFile=false -Dparallel=classes -DuseUnlimitedThreads=true |
- Mark as noise
72a9eb1 to
a11cf58
Compare
|
leonardo-pilastri-sonarsource
left a comment
There was a problem hiding this comment.
I saw the downloads from repox in the logs 👍





No description provided.