You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kyuubi.apache.org by ch...@apache.org on 2023/10/27 03:48:08 UTC

[kyuubi-docker] branch pan3793-patch-1 created (now 7b52e02)

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

chengpan pushed a change to branch pan3793-patch-1
in repository https://gitbox.apache.org/repos/asf/kyuubi-docker.git


      at 7b52e02  Remove unnecessary maven options on building

This branch includes the following new commits:

     new 7b52e02  Remove unnecessary maven options on building

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[kyuubi-docker] 01/01: Remove unnecessary maven options on building

Posted by ch...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

chengpan pushed a commit to branch pan3793-patch-1
in repository https://gitbox.apache.org/repos/asf/kyuubi-docker.git

commit 7b52e02efe32f683d25c8d429fed15500f607b15
Author: Cheng Pan <pa...@gmail.com>
AuthorDate: Fri Oct 27 11:48:04 2023 +0800

    Remove unnecessary maven options on building
---
 .github/workflows/docker-image.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.github/workflows/docker-image.yml b/.github/workflows/docker-image.yml
index 830abc9..df4df0b 100644
--- a/.github/workflows/docker-image.yml
+++ b/.github/workflows/docker-image.yml
@@ -58,7 +58,7 @@ jobs:
           wget https://archive.apache.org/dist/kyuubi/kyuubi-${KYUUBI_VERSION}/apache-kyuubi-${KYUUBI_VERSION}-source.tgz
           tar -xvf apache-kyuubi-${KYUUBI_VERSION}-source.tgz
           cd apache-kyuubi-${KYUUBI_VERSION}-source
-          ./build/dist ${{ matrix.opts }} -Dmaven.javadoc.skip=true -Dmaven.scaladoc.skip=true -Drat.skip=true -Dscalastyle.skip=true -Dspotless.check.skip -DskipTests
+          ./build/dist ${{ matrix.opts }}
           cd ..
           docker build --tag apache/kyuubi:${KYUUBI_VERSION}${{ matrix.suffix-name }} --file ${KYUUBI_VERSION}/*/Dockerfile apache-kyuubi-${KYUUBI_VERSION}-source/dist
       - name: Validate docker image