Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 4 additions & 5 deletions .github/workflows/celeborn.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,10 @@ jobs:
strategy:
fail-fast: false
matrix:
include:
- celebornver: "celeborn-0.6"
- celebornver: "celeborn-0.5"
celebornver: [ "celeborn-0.6", "celeborn-0.5" ]
writer: ["hash", "sort"]
uses: ./.github/workflows/tpcds-reusable.yml
name: Test Celeborn ${{ matrix.celebornver }}
name: Test Celeborn ${{ matrix.celebornver }}, writer=${{ matrix.writer }}
with:
celebornver: ${{ matrix.celebornver }}
sparkver: "spark-3.5"
Expand All @@ -50,6 +49,6 @@ jobs:
extrasparkconf: >-
--conf spark.shuffle.manager=org.apache.spark.sql.execution.auron.shuffle.celeborn.AuronCelebornShuffleManager
--conf spark.serializer=org.apache.spark.serializer.KryoSerializer
--conf spark.celeborn.client.spark.shuffle.writer=hash
--conf spark.celeborn.client.spark.shuffle.writer=${{ matrix.writer }}
--conf spark.celeborn.client.push.replicate.enabled=false
queries: '["q1,q2,q3,q4,q5,q6,q7,q8,q9"]'
2 changes: 2 additions & 0 deletions .github/workflows/tpcds-reusable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -168,6 +168,7 @@ jobs:
with:
name: unit-tests-reports-${{ inputs.sparkver }}_${{ inputs.scalaver }}-jdk-${{ inputs.javaver }}${{ inputs.celebornver && format('-{0}', inputs.celebornver) || '' }}${{ inputs.unifflever && format('-{0}', inputs.unifflever) || '' }}
path: "**/target/surefire-reports/*.xml"
overwrite: true
- name: Upload unit tests log
if: failure()
uses: actions/upload-artifact@v6
Expand All @@ -191,6 +192,7 @@ jobs:
}}${{ inputs.unifflever && format('-{0}', inputs.unifflever) || '' }}
path: ~/.m2/repository/org/apache/auron
if-no-files-found: error
overwrite: true

run-tpcds-test:
name: Run TPC-DS test ${{ matrix.query }}
Expand Down
Loading