This is an automated email from the ASF dual-hosted git repository.

tballison pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/tika.git


The following commit(s) were added to refs/heads/main by this push:
     new f1e4c23993 keep windows serialized (#3113)
f1e4c23993 is described below

commit f1e4c23993b23a924315f310b500b8b556828cae
Author: Tim Allison <[email protected]>
AuthorDate: Mon Aug 31 17:49:02 2026 -0400

    keep windows serialized (#3113)
---
 .github/workflows/main-jdk17-windows-build.yml | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/.github/workflows/main-jdk17-windows-build.yml 
b/.github/workflows/main-jdk17-windows-build.yml
index c75e3e2e30..53d83b8f32 100644
--- a/.github/workflows/main-jdk17-windows-build.yml
+++ b/.github/workflows/main-jdk17-windows-build.yml
@@ -61,4 +61,8 @@ jobs:
         # The -Duser.* args MUST stay quoted: PowerShell splits an unquoted 
dotted
         # -D property before it reaches mvn, so the locale silently never 
applies
         # and the leftover fragment fails the build as an unknown lifecycle 
phase.
-        run: mvn install -Pfast -pl ":tika-annotation-processor" -am -B -q; 
mvn clean test install javadoc:aggregate -Pci -Pe2e -T1C "-Duser.language=de" 
"-Duser.country=DE" -B 
"-Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn"
+        # No -T1C here (TIKA-4867): this is the heaviest job (locale + e2e + 
javadoc)
+        # on a 4-core runner; parallel modules starved the tika-server 
integration
+        # tests into startup timeouts. Serial reactor also needs no annotation-
+        # processor pre-install.
+        run: mvn clean test install javadoc:aggregate -Pci -Pe2e 
"-Duser.language=de" "-Duser.country=DE" -B 
"-Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn"

Reply via email to