Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[CI][VL] Re-enable native benchmark test #6020

Merged
merged 4 commits into from
Jun 11, 2024
Merged
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
22 changes: 16 additions & 6 deletions .github/workflows/velox_docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -581,6 +581,10 @@ jobs:
with:
name: udf-example-lib-centos-8-${{github.sha}}
path: ./cpp/build/velox/udf/examples/
- uses: actions/upload-artifact@v2
with:
name: benchmark-centos-8-${{github.sha}}
path: ./cpp/build/velox/benchmarks/
- uses: actions/upload-artifact@v2
with:
name: arrow-jars-centos-8-${{github.sha}}
Expand All @@ -604,6 +608,11 @@ jobs:
with:
name: udf-example-lib-centos-8-${{github.sha}}
path: ./cpp/build/velox/udf/examples/
- name: Download Benchmark
uses: actions/download-artifact@v2
with:
name: benchmark-centos-8-${{github.sha}}
path: ./cpp/build/velox/benchmarks/
- name: Download Arrow Jars
uses: actions/download-artifact@v2
with:
Expand Down Expand Up @@ -663,11 +672,12 @@ jobs:
with:
name: golden-files-spark32
path: /tmp/tpch-approved-plan/**
# - name: Gluten CPP Benchmark Test
# run: |
# # This test depends on example.json generated by the above mvn test.
# cd $GITHUB_WORKSPACE/cpp/build/velox/benchmarks && \
# ./generic_benchmark --run-example --with-shuffle --threads 1 --iterations 1
- name: Gluten CPP Benchmark Test
run: |
# This test depends on example.json generated by the above mvn test.
cd $GITHUB_WORKSPACE/cpp/build/velox/benchmarks && \
sudo chmod +x ./generic_benchmark && \
./generic_benchmark --run-example --with-shuffle --threads 1 --iterations 1

run-spark-test-spark32-slow:
needs: build-native-lib-centos-8
Expand Down Expand Up @@ -1097,4 +1107,4 @@ jobs:
- name: Build and Run unit test for Spark 3.5.1 (slow tests)
run: |
cd $GITHUB_WORKSPACE/
$MVN_CMD clean install -Pspark-3.5 -Pbackends-velox -Pceleborn -Piceberg -Pdelta -Pspark-ut -DargLine="-Dspark.test.home=$GITHUB_WORKSPACE//shims/spark35/spark_home/" -DtagsToInclude=org.apache.spark.tags.ExtendedSQLTest
$MVN_CMD clean install -Pspark-3.5 -Pbackends-velox -Pceleborn -Piceberg -Pdelta -Pspark-ut -DargLine="-Dspark.test.home=$GITHUB_WORKSPACE//shims/spark35/spark_home/" -DtagsToInclude=org.apache.spark.tags.ExtendedSQLTest
Loading