Skip to content

Commit

Permalink
Enable benchmarks for nightly DuckDB builds
Browse files Browse the repository at this point in the history
  • Loading branch information
ak-coram committed Sep 17, 2023
1 parent c1817f5 commit 5cf0de4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/Benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
matrix:
lisp: [sbcl-bin, ccl-bin/1.12.2, ecl/23.9.9]
os: [ubuntu-latest]
duckdb: [0.8.1]
duckdb: [0.8.1, nightly]
env:
LISP: ${{ matrix.lisp }}
DUCKDB_VERSION: ${{ matrix.duckdb }}
Expand All @@ -27,7 +27,7 @@ jobs:
- name: Install DuckDB
shell: bash
run: |
aria2c "https://github.com/duckdb/duckdb/releases/download/v${DUCKDB_VERSION}/libduckdb-linux-amd64.zip"
if [ ${{ matrix.duckdb }} = 'nightly' ]; then aria2c "https://artifacts.duckdb.org/latest/duckdb-binaries-linux.zip" && unzip duckdb-binaries-linux.zip -d . else aria2c "https://github.com/duckdb/duckdb/releases/download/v${DUCKDB_VERSION}/libduckdb-linux-amd64.zip" fi
unzip libduckdb-linux-amd64.zip -d .
- name: Setup Lisp
Expand Down

0 comments on commit 5cf0de4

Please sign in to comment.