You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@uniffle.apache.org by ro...@apache.org on 2023/05/10 12:15:27 UTC

[incubator-uniffle] branch master updated: [MINOR] chore(ci): Add Tez pipeline (#862)

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

roryqi 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 ec9c278f [MINOR] chore(ci): Add Tez pipeline (#862)
ec9c278f is described below

commit ec9c278fc91f88247db87d848b0106f10132be02
Author: roryqi <ro...@apache.org>
AuthorDate: Wed May 10 20:15:22 2023 +0800

    [MINOR] chore(ci): Add Tez pipeline (#862)
    
    ### What changes were proposed in this pull request?
    Add the pipeline of Tez
    
    ### Why are the changes needed?
    We should verify the code of Tez
    
    ### Does this PR introduce _any_ user-facing change?
    No.
    
    ### How was this patch tested?
    No need.
---
 .github/workflows/parallel.yml   | 1 +
 .github/workflows/sequential.yml | 3 +++
 2 files changed, 4 insertions(+)

diff --git a/.github/workflows/parallel.yml b/.github/workflows/parallel.yml
index 67c06293..aa270e0e 100644
--- a/.github/workflows/parallel.yml
+++ b/.github/workflows/parallel.yml
@@ -58,6 +58,7 @@ jobs:
           - spark3.2.0
           - spark3.3
           - mr
+          - tez
       fail-fast: false
     name: -P${{ matrix.profile }}
     steps:
diff --git a/.github/workflows/sequential.yml b/.github/workflows/sequential.yml
index 66a766bf..0f59604b 100644
--- a/.github/workflows/sequential.yml
+++ b/.github/workflows/sequential.yml
@@ -77,6 +77,9 @@ jobs:
     - name: Execute `mvn ${{ inputs.maven-args }} -Pmr`
       run: mvn -B -fae ${{ inputs.maven-args }} -Pmr | tee -a /tmp/maven.log;
       shell: bash
+    - name: Execute `mvn ${{ inputs.maven-args }} -Ptez`
+      run: mvn -B -fae ${{ inputs.maven-args }} -Pmr | tee -a /tmp/maven.log;
+      shell: bash
     - name: Summary of failures
       if: ${{ failure() && inputs.summary != '' }}
       run: ${{ inputs.summary }}