Skip to content

Commit f1e4c23

Browse files
authored
keep windows serialized (#3113)
1 parent f9ed0cb commit f1e4c23

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

.github/workflows/main-jdk17-windows-build.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,4 +61,8 @@ jobs:
6161
# The -Duser.* args MUST stay quoted: PowerShell splits an unquoted dotted
6262
# -D property before it reaches mvn, so the locale silently never applies
6363
# and the leftover fragment fails the build as an unknown lifecycle phase.
64-
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"
64+
# No -T1C here (TIKA-4867): this is the heaviest job (locale + e2e + javadoc)
65+
# on a 4-core runner; parallel modules starved the tika-server integration
66+
# tests into startup timeouts. Serial reactor also needs no annotation-
67+
# processor pre-install.
68+
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"

0 commit comments

Comments
 (0)