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

wenjun 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 8bafdd4c [hotfix][ci] skip checkstyle in UT (#1729)
8bafdd4c is described below

commit 8bafdd4cb366310cd3e4402e92e8b88012ca9da3
Author: Wenjun Ruan <[email protected]>
AuthorDate: Sun Apr 24 10:39:11 2022 +0800

    [hotfix][ci] skip checkstyle in UT (#1729)
---
 .github/workflows/backend.yml | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/.github/workflows/backend.yml b/.github/workflows/backend.yml
index b36acffd..2dd1e2d0 100644
--- a/.github/workflows/backend.yml
+++ b/.github/workflows/backend.yml
@@ -56,12 +56,13 @@ jobs:
             ${{ runner.os }}-maven-
       - name: Check Style
         run: |
-          ./mvnw -T 2C -B checkstyle:check --no-snapshot-updates
+          ./mvnw -T 2C -B checkstyle:check scalastyle:check 
--no-snapshot-updates
       - name: Build and Package
         run: |
-          ./mvnw -B install scalastyle:check \
+          ./mvnw -B install \
                  -Dmaven.test.skip=true \
                  -Dcheckstyle.skip=true \
+                 -Dscalastyle.skip=true \
                  -Dlicense.skipAddThirdParty=true \
                  -Dhttp.keepAlive=false \
                  -Dmaven.wagon.http.pool=false \
@@ -72,10 +73,10 @@ jobs:
         run: bash ./tools/dependencies/checkLicense.sh
       - name: Run Unit tests
         run: |
-          ./mvnw -T 2C -B clean verify -Dmaven.test.skip=false 
--no-snapshot-updates
+          ./mvnw -T 2C -B clean verify -Dmaven.test.skip=false 
-Dcheckstyle.skip=true -Dscalastyle.skip=true -Dlicense.skipAddThirdParty=true 
--no-snapshot-updates
       - name: Run Integration tests
         run: |
-          ./mvnw -T 2C -B clean verify -DskipUT=true -DskipIT=false 
--no-snapshot-updates
+          ./mvnw -T 2C -B clean verify -DskipUT=true -DskipIT=false 
-Dcheckstyle.skip=true -Dscalastyle.skip=true -Dlicense.skipAddThirdParty=true 
--no-snapshot-updates
   build-on-windows:
     name: Build-on-windows
     runs-on: windows-latest

Reply via email to