This is an automated email from the ASF dual-hosted git repository. tballison pushed a commit to branch TIKA-4809-fix-e2e-zip-resolution in repository https://gitbox.apache.org/repos/asf/tika.git
commit 5dd00f353c4cd7f8b95989a0421a63bff625f1ab Author: tallison <[email protected]> AuthorDate: Thu Aug 13 18:12:07 2026 -0400 TIKA-4809: run the e2e CI job through install, not verify --- .github/workflows/main-jdk17-build.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main-jdk17-build.yml b/.github/workflows/main-jdk17-build.yml index e7bd392667..77fe469d85 100644 --- a/.github/workflows/main-jdk17-build.yml +++ b/.github/workflows/main-jdk17-build.yml @@ -68,4 +68,7 @@ jobs: # -pl must name the leaf modules: tika-e2e-tests is an aggregator pom, and Maven # does not pull in a selected aggregator's children, so this job built two pom-only # modules and ran zero tests while reporting green. - run: mvn -pl :tika-e2e-tests-server,:tika-grpc-e2e-test -am clean verify -Pe2e -B "-Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn" + # install, not verify: tika-async-cli test-depends on the tika-pipes-file-system + # plugin zip, which the assembly builds with attach=false (TIKA-4723) and only + # puts in the local repo via an install-phase install-file. verify stops short. + run: mvn -pl :tika-e2e-tests-server,:tika-grpc-e2e-test -am clean install -Pe2e -B "-Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn"
