You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@uniffle.apache.org by ck...@apache.org on 2023/02/20 09:44:19 UTC

[incubator-uniffle] branch master updated: [#580] chore(ci): disable parallel build in maven (#631)

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

ckj pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-uniffle.git


The following commit(s) were added to refs/heads/master by this push:
     new cdf4f062 [#580] chore(ci): disable parallel build in maven (#631)
cdf4f062 is described below

commit cdf4f06214d8e16596f5884ede4b8d63cc95f18a
Author: Kaijie Chen <ck...@apache.org>
AuthorDate: Mon Feb 20 17:44:13 2023 +0800

    [#580] chore(ci): disable parallel build in maven (#631)
    
    ### What changes were proposed in this pull request?
    
    Disable parallel build in maven
    
    ### Why are the changes needed?
    
    CI crashed.
    
    ```
    Error:  Error occurred in starting fork, check output in log
    Error:  Process Exit Code: 1
    Error:  Crashed tests:
    Error:  org.apache.uniffle.server.ShuffleServerTest
    ```
    
    https://github.com/apache/incubator-uniffle/actions/runs/4220729609/jobs/7327285796#step:6:1317
    
    ### Does this PR introduce _any_ user-facing change?
    
    No.
    
    ### How was this patch tested?
    
    CI.
---
 .github/workflows/parallel.yml   | 2 +-
 .github/workflows/sequential.yml | 6 +++---
 .github/workflows/single.yml     | 2 +-
 3 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/.github/workflows/parallel.yml b/.github/workflows/parallel.yml
index a6f115e8..67c06293 100644
--- a/.github/workflows/parallel.yml
+++ b/.github/workflows/parallel.yml
@@ -79,7 +79,7 @@ jobs:
           mvn-${{ inputs.java-version }}-package-${{ matrix.profile }}-
           mvn-${{ inputs.java-version }}-package-
     - name: Execute `mvn ${{ inputs.maven-args }} -P${{ matrix.profile }}`
-      run: mvn -T1C -B -fae ${{ inputs.maven-args }} -P${{ matrix.profile }} | tee /tmp/maven.log
+      run: mvn -B -fae ${{ inputs.maven-args }} -P${{ matrix.profile }} | tee /tmp/maven.log
       shell: bash
     - name: Summary of failures
       if: ${{ failure() && inputs.summary != '' }}
diff --git a/.github/workflows/sequential.yml b/.github/workflows/sequential.yml
index e9b0927d..66a766bf 100644
--- a/.github/workflows/sequential.yml
+++ b/.github/workflows/sequential.yml
@@ -69,13 +69,13 @@ jobs:
         restore-keys: |
           mvn-${{ inputs.java-version }}-${{ inputs.cache-key }}-
     - name: Execute `mvn ${{ inputs.maven-args }} -Pspark3`
-      run: mvn -T1C -B -fae ${{ inputs.maven-args }} -Pspark3 | tee -a /tmp/maven.log;
+      run: mvn -B -fae ${{ inputs.maven-args }} -Pspark3 | tee -a /tmp/maven.log;
       shell: bash
     - name: Execute `mvn ${{ inputs.maven-args }} -Pspark2`
-      run: mvn -T1C -B -fae ${{ inputs.maven-args }} -Pspark2 | tee -a /tmp/maven.log;
+      run: mvn -B -fae ${{ inputs.maven-args }} -Pspark2 | tee -a /tmp/maven.log;
       shell: bash
     - name: Execute `mvn ${{ inputs.maven-args }} -Pmr`
-      run: mvn -T1C -B -fae ${{ inputs.maven-args }} -Pmr | tee -a /tmp/maven.log;
+      run: mvn -B -fae ${{ inputs.maven-args }} -Pmr | tee -a /tmp/maven.log;
       shell: bash
     - name: Summary of failures
       if: ${{ failure() && inputs.summary != '' }}
diff --git a/.github/workflows/single.yml b/.github/workflows/single.yml
index 6d59fd76..66778e1d 100644
--- a/.github/workflows/single.yml
+++ b/.github/workflows/single.yml
@@ -78,7 +78,7 @@ jobs:
       with:
         go-version: ${{ inputs.go-version }}
     - name: Execute `mvn ${{ inputs.maven-args }}`
-      run: mvn -T1C -B -fae ${{ inputs.maven-args }} | tee /tmp/maven.log
+      run: mvn -B -fae ${{ inputs.maven-args }} | tee /tmp/maven.log
       shell: bash
     - name: Summary of failures
       if: ${{ failure() && inputs.summary != '' }}