You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@parquet.apache.org by GitBox <gi...@apache.org> on 2022/09/19 06:51:15 UTC

[GitHub] [parquet-mr] gszadovszky commented on a diff in pull request #997: PARQUET-2192: Add Java 17 build test to GitHub action

gszadovszky commented on code in PR #997:
URL: https://github.com/apache/parquet-mr/pull/997#discussion_r973912430


##########
.github/workflows/test.yml:
##########
@@ -43,9 +43,18 @@ jobs:
           bash dev/ci-before_install.sh
       - name: install
         run: |
+          EXTRA_JAVA_TEST_ARGS=$(mvn help:evaluate -Dexpression=extraJavaTestArgs -q -DforceStdout)
+          export MAVEN_OPTS="$MAVEN_OPTS $EXTRA_JAVA_TEST_ARGS"
           mvn install --batch-mode -DskipTests=true -Dmaven.javadoc.skip=true -Dsource.skip=true -Djava.version=${{ matrix.java }}
       - name: verify
         env:
           TEST_CODECS: ${{ matrix.codes }}
+          JAVA_VERSION: ${{ matrix.java }}
         run: |
-          mvn verify --batch-mode javadoc:javadoc -Pci-test
+          EXTRA_JAVA_TEST_ARGS=$(mvn help:evaluate -Dexpression=extraJavaTestArgs -q -DforceStdout)
+          export MAVEN_OPTS="$MAVEN_OPTS $EXTRA_JAVA_TEST_ARGS"
+          if [ "$JAVA_VERSION" = "17" ]; then
+              mvn verify --batch-mode -Pci-test

Review Comment:
   Are you sure it is easier to skip javadoc instead of fixing the issues? I only can see one error above which is about an extra `</p>`. 



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscribe@parquet.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org