Skip to content

Commit 3f5f3a9

Browse files
authored
fix: drop ddb skip build flag (#3614)
The flag no longer exists. Signed-off-by: Alexander Droste <[email protected]>
1 parent 580b8d7 commit 3f5f3a9

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

.github/workflows/sql-benchmarks.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -85,9 +85,9 @@ jobs:
8585
RUST_BACKTRACE: full
8686
run: |
8787
# Generate data, running each query once to make sure they don't panic.
88-
target/release_debug/${{ matrix.binary_name }} --targets datafusion:parquet -i1 -d gh-json --skip-duckdb-build
89-
target/release_debug/${{ matrix.binary_name }} --targets datafusion:vortex -i1 -d gh-json --skip-duckdb-build
90-
target/release_debug/${{ matrix.binary_name }} --targets duckdb:vortex -i1 -d gh-json --skip-duckdb-build
88+
target/release_debug/${{ matrix.binary_name }} --targets datafusion:parquet -i1 -d gh-json
89+
target/release_debug/${{ matrix.binary_name }} --targets datafusion:vortex -i1 -d gh-json
90+
target/release_debug/${{ matrix.binary_name }} --targets duckdb:vortex -i1 -d gh-json
9191
9292
- name: Upload data
9393
if: matrix.remote_storage != null
@@ -119,7 +119,6 @@ jobs:
119119
-d gh-json \
120120
--targets ${{ matrix.targets }} \
121121
--export-spans \
122-
--skip-duckdb-build \
123122
| tee results.json
124123
125124
- name: Run ${{ matrix.name }} benchmark (remote)
@@ -137,7 +136,6 @@ jobs:
137136
--use-remote-data-dir ${{ matrix.remote_storage }} \
138137
--targets ${{ matrix.targets }} \
139138
--export-spans \
140-
--skip-duckdb-build \
141139
-d gh-json \
142140
| tee results.json
143141

0 commit comments

Comments
 (0)