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

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


The following commit(s) were added to refs/heads/dev by this push:
     new 9b73e4c  [SeaTunnel#983] Speed up CI/CD with multi threads (#984)
9b73e4c is described below

commit 9b73e4c7bf5a53c1552ca909a2645ca661687e38
Author: Benedict Jin <[email protected]>
AuthorDate: Mon Jan 10 19:32:50 2022 +0800

    [SeaTunnel#983] Speed up CI/CD with multi threads (#984)
    
    * [SeaTunnel#983] Speed up CI/CD with multi threads
    
    * Remove multi-threads option from "Build and Package" part
    
    * Address comments
---
 .github/workflows/backend.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/backend.yml b/.github/workflows/backend.yml
index b1c16d5..41f0966 100644
--- a/.github/workflows/backend.yml
+++ b/.github/workflows/backend.yml
@@ -52,7 +52,7 @@ jobs:
           key: ${{ runner.os }}-maven
       - name: Check Style
         run: |
-          ./mvnw -B checkstyle:check
+          ./mvnw -T 2C -B checkstyle:check
       - name: Build and Package
         run: |
           ./mvnw -B package scalastyle:check \
@@ -64,4 +64,4 @@ jobs:
                  -Dmaven.wagon.httpconnectionManager.ttlSeconds=120
       - name: Run Unit tests
         run: |
-          ./mvnw -B clean verify -Dmaven.test.skip=false -Dgpg.skip=true
+          ./mvnw -T 2C -B clean verify -Dmaven.test.skip=false -Dgpg.skip=true

Reply via email to