This is an automated email from the ASF dual-hosted git repository. tballison pushed a commit to branch TIKA-4867-windows-serial in repository https://gitbox.apache.org/repos/asf/tika.git
commit bff067f16fe793262243eeab7191ec30010aa9f1 Author: tallison <[email protected]> AuthorDate: Mon Aug 31 17:48:07 2026 -0400 keep windows serialized --- .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"
