Put quotes around curl url, clone datausion-comet from github action #3
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 |