Skip to content

Commit fb4d39a

Browse files
committed
Remove Maven quiet flag when running tests in CI
It won't too verbose anyway, since we build the project in a previous step. This will help understanding intermittent issues (more info to analyze, like tests execution order). Signed-off-by: Thomas Segismont <tsegismont@gmail.com>
1 parent 9d51794 commit fb4d39a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/ci-4.x.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ jobs:
9898
mvn -s .github/maven-ci-settings.xml -q clean install -B $PROFILE_ARG -pl :${{ matrix.module }} -am -DskipTests
9999
- name: Run tests for the target module
100100
run: |
101-
mvn -s .github/maven-ci-settings.xml -q verify -B $PROFILE_ARG -pl :${{ matrix.module }}
101+
mvn -s .github/maven-ci-settings.xml verify -B $PROFILE_ARG -pl :${{ matrix.module }}
102102
Deploy:
103103
name: Deploy to OSSRH
104104
if: ${{ github.repository_owner == 'eclipse-vertx' && (github.event_name == 'push' || github.event_name == 'schedule') }}

0 commit comments

Comments
 (0)