Skip to content

Commit 55e23e6

Browse files
committed
optimize: reduce build scope and suppress Docker/Maven logging noise
- Remove -amd flag to build only the changed module, not dependents - Add Docker/TestContainers logging suppressions to reduce noise - Add Maven transfer logging suppression for cleaner output - Keep integration tests but with minimal logging
1 parent 39ea61d commit 55e23e6

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/maintenance-fast.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,4 +91,10 @@ jobs:
9191
echo "Check the 'Compute impacted modules' step output for debugging info"
9292
exit 1
9393
fi
94-
./mvnw -B -T 1C -Pintegration-tests -DfailIfNoTests=false -pl "$MODS" -amd verify
94+
./mvnw -B -T 1C -Pintegration-tests -DfailIfNoTests=false -pl "$MODS" verify \
95+
-Dorg.slf4j.simpleLogger.log.org.testcontainers=WARN \
96+
-Dorg.slf4j.simpleLogger.log.com.github.dockerjava=WARN \
97+
-Dorg.slf4j.simpleLogger.log.org.testcontainers.dockerclient=ERROR \
98+
-Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer=WARN \
99+
-Dlogging.level.org.testcontainers=WARN \
100+
-Dlogging.level.com.github.dockerjava=WARN

0 commit comments

Comments
 (0)