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

wuchunfu pushed a commit to branch dev
in repository https://gitbox.apache.org/repos/asf/seatunnel.git


The following commit(s) were added to refs/heads/dev by this push:
     new 8c833a861b [Improve][CI] Move paimon into single task (#7719)
8c833a861b is described below

commit 8c833a861b1cc62f81229a85d2487f01b60e3706
Author: Jia Fan <[email protected]>
AuthorDate: Tue Sep 24 12:29:13 2024 +0800

    [Improve][CI] Move paimon into single task (#7719)
---
 .github/workflows/backend.yml                      | 25 ++++++++++++++++++++++
 tools/update_modules_check/update_modules_check.py |  3 +++
 2 files changed, 28 insertions(+)

diff --git a/.github/workflows/backend.yml b/.github/workflows/backend.yml
index 81222695a3..12c736bb78 100644
--- a/.github/workflows/backend.yml
+++ b/.github/workflows/backend.yml
@@ -1158,6 +1158,31 @@ jobs:
           MAVEN_OPTS: -Xmx4096m
 
 
+  paimon-connector-it:
+    needs: [ changes, sanity-check ]
+    if: needs.changes.outputs.api == 'true' || 
contains(needs.changes.outputs.it-modules, 'connector-paimon-e2e')
+    runs-on: ${{ matrix.os }}
+    strategy:
+      matrix:
+        java: [ '8', '11' ]
+        os: [ 'ubuntu-latest' ]
+    timeout-minutes: 90
+    steps:
+      - uses: actions/checkout@v2
+      - name: Set up JDK ${{ matrix.java }}
+        uses: actions/setup-java@v3
+        with:
+          java-version: ${{ matrix.java }}
+          distribution: 'temurin'
+          cache: 'maven'
+      - name: free disk space
+        run: tools/github/free_disk_space.sh
+      - name: run paimon connector integration test
+        run: |
+          ./mvnw -B -T 1 verify -DskipUT=true -DskipIT=false 
-D"license.skipAddThirdParty"=true --no-snapshot-updates -pl 
:connector-paimon-e2e -am -Pci
+        env:
+          MAVEN_OPTS: -Xmx4096m
+
   oracle-cdc-connector-it:
     needs: [ changes, sanity-check ]
     if: needs.changes.outputs.api == 'true' || 
contains(needs.changes.outputs.it-modules, 'connector-cdc-oracle-e2e')
diff --git a/tools/update_modules_check/update_modules_check.py 
b/tools/update_modules_check/update_modules_check.py
index 84a6f5cd43..8359bc7d97 100644
--- a/tools/update_modules_check/update_modules_check.py
+++ b/tools/update_modules_check/update_modules_check.py
@@ -149,6 +149,7 @@ def get_sub_it_modules(modules, total_num, current_num):
     modules_arr.remove("connector-kudu-e2e")
     modules_arr.remove("connector-amazonsqs-e2e")
     modules_arr.remove("connector-doris-e2e")
+    modules_arr.remove("connector-paimon-e2e")
     modules_arr.remove("connector-cdc-oracle-e2e")
     output = ""
     for i, module in enumerate(modules_arr):
@@ -177,6 +178,8 @@ def get_sub_update_it_modules(modules, total_num, 
current_num):
         module_list.remove("seatunnel-engine-k8s-e2e")
     if "connector-doris-e2e" in module_list:
         module_list.remove("connector-doris-e2e")
+    if "connector-paimon-e2e" in module_list:
+        module_list.remove("connector-paimon-e2e")
     if "connector-cdc-oracle-e2e" in module_list:
         module_list.remove("connector-cdc-oracle-e2e")
     for i, module in enumerate(module_list):

Reply via email to