Skip to content
Closed
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
1 change: 1 addition & 0 deletions .github/workflows/celeborn.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ jobs:
name: Test Celeborn ${{ matrix.celebornver }}
with:
celebornver: ${{ matrix.celebornver }}
skip-unit-tests: true
sparkver: "spark-3.5"
hadoop-profile: 'hadoop3'
scalaver: "2.12"
Expand Down
9 changes: 7 additions & 2 deletions .github/workflows/tpcds-reusable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,11 @@ on:
required: false
type: string
default: '2.12'
skip-unit-tests:
description: 'Whether to skip unit tests (true/false)'
required: false
type: string
default: 'false'
celebornver:
description: 'Optional Celeborn version'
required: false
Expand Down Expand Up @@ -146,7 +151,7 @@ jobs:
UNIFFLE_NUMBER="${UNIFFLE_NUMBER#uniffle-}"
fi

CMD="./auron-build.sh --pre --sparkver $SPARK_NUMBER --scalaver ${{ inputs.scalaver }} --skiptests false"
CMD="./auron-build.sh --pre --sparkver $SPARK_NUMBER --scalaver ${{ inputs.scalaver }} --skiptests ${{ inputs.skip-unit-tests }}"
if [ -n "${{ inputs.celebornver }}" ]; then
CMD="$CMD --celeborn $CELEBORN_NUMBER"
fi
Expand All @@ -155,7 +160,7 @@ jobs:
fi

SPARK_TESTS="${{ inputs.sparktests }}"
if [[ "$SPARK_TESTS" == "true" ]]; then
if [[ "${{ inputs.skip-unit-tests }}" != "true" && "$SPARK_TESTS" == "true" ]]; then
CMD="$CMD --sparktests true"
fi

Expand Down
1 change: 1 addition & 0 deletions .github/workflows/uniffle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ jobs:
scalaver: "2.12"
hadoopver: ${{ matrix.hadoopver }}
unifflever: ${{ matrix.unifflever }}
skip-unit-tests: true
extrasparkconf: >-
--conf spark.shuffle.manager=org.apache.spark.sql.execution.auron.shuffle.uniffle.AuronUniffleShuffleManager
--conf spark.serializer=org.apache.spark.serializer.KryoSerializer
Expand Down
Loading