Download jar from releases page, take out command from time docker run #7
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Run performance benchmark tests | |
on: | |
push: | |
branches: | |
- "main" | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout data-caterer-example repo | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 2 | |
- name: Checkout datafusion-comet repo | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 2 | |
repository: apache/datafusion-comet | |
path: benchmark/build/datafusion-comet | |
- name: Get Spark query engine jars | |
run: bash benchmark/setup_query_engine_jars.sh | |
- name: Run benchmark script | |
run: bash benchmark/run_benchmark.sh |