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/03/07 06:00:58 UTC

[kyuubi] branch master updated: [KYUUBI #4461] [CI][K8S]Add `Kyuubi Kubernetes IT` Module to CI style check

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

chengpan pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/kyuubi.git


The following commit(s) were added to refs/heads/master by this push:
     new ab52c9d4e [KYUUBI #4461] [CI][K8S]Add `Kyuubi Kubernetes IT` Module to CI style check
ab52c9d4e is described below

commit ab52c9d4ee36a224cd02e798cb838036d093d544
Author: zwangsheng <22...@qq.com>
AuthorDate: Tue Mar 7 14:00:49 2023 +0800

    [KYUUBI #4461] [CI][K8S]Add `Kyuubi Kubernetes IT` Module to CI style check
    
    ### _Why are the changes needed?_
    
    Add `Kyuubi Kubernetes IT` Module to CI style check
    
    ### _How was this patch tested?_
    - [ ] Add some test cases that check the changes thoroughly including negative and positive cases if possible
    
    - [ ] Add screenshots for manual tests if appropriate
    
    - [ ] [Run test](https://kyuubi.readthedocs.io/en/master/develop_tools/testing.html#running-tests) locally before make a pull request
    
    - [X] Run CI
    
    Closes #4461 from zwangsheng/ci/add_kubernetes.
    
    Closes #4461
    
    7ebac75b0 [zwangsheng] fix style for kubernetes-it
    c1754d452 [zwangsheng] Add Kyuubi Kubernetes IT Module to CI style check
    
    Authored-by: zwangsheng <22...@qq.com>
    Signed-off-by: Cheng Pan <ch...@apache.org>
---
 .github/workflows/style.yml                    | 2 +-
 integration-tests/kyuubi-kubernetes-it/pom.xml | 6 ++----
 2 files changed, 3 insertions(+), 5 deletions(-)

diff --git a/.github/workflows/style.yml b/.github/workflows/style.yml
index 93fce5c4e..717cbbc70 100644
--- a/.github/workflows/style.yml
+++ b/.github/workflows/style.yml
@@ -34,7 +34,7 @@ jobs:
     strategy:
       matrix:
         profiles:
-          - '-Pflink-provided,hive-provided,spark-provided,spark-block-cleaner,spark-3.3,spark-3.2,spark-3.1,tpcds'
+          - '-Pflink-provided,hive-provided,spark-provided,spark-block-cleaner,spark-3.3,spark-3.2,spark-3.1,tpcds,kubernetes-it'
 
     steps:
       - uses: actions/checkout@v3
diff --git a/integration-tests/kyuubi-kubernetes-it/pom.xml b/integration-tests/kyuubi-kubernetes-it/pom.xml
index ef56a770f..9d92a1f4b 100644
--- a/integration-tests/kyuubi-kubernetes-it/pom.xml
+++ b/integration-tests/kyuubi-kubernetes-it/pom.xml
@@ -15,17 +15,15 @@
   ~ See the License for the specific language governing permissions and
   ~ limitations under the License.
   -->
-
-<project xmlns="http://maven.apache.org/POM/4.0.0"
-         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+    <modelVersion>4.0.0</modelVersion>
     <parent>
         <groupId>org.apache.kyuubi</groupId>
         <artifactId>integration-tests</artifactId>
         <version>1.8.0-SNAPSHOT</version>
         <relativePath>../pom.xml</relativePath>
     </parent>
-    <modelVersion>4.0.0</modelVersion>
 
     <artifactId>kubernetes-integration-tests_2.12</artifactId>
     <name>Kyuubi Test Kubernetes IT</name>