Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
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
9 changes: 8 additions & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@ jobs:
test:
name: Test
runs-on: ${{ matrix.os }}
env:
DUCKDB_VERSION: "1.2.0"
DUCKDB_LIB_DIR: /opt/duckdb
strategy:
fail-fast: false
matrix:
Expand All @@ -24,7 +27,7 @@ jobs:
- "3.13"
os:
- ubuntu-latest
- macos-latest
# - macos-latest
# https://github.com/stac-utils/stacrs/issues/1
# - windows-latest
steps:
Expand All @@ -33,6 +36,10 @@ jobs:
- uses: Swatinem/rust-cache@v2
- name: Install Python version
run: uv python install ${{ matrix.python-version }}
- name: Get DuckDB
run: |
wget https://github.com/duckdb/duckdb/releases/download/v$DUCKDB_VERSION/libduckdb-linux-amd64.zip
unzip libduckdb-linux-amd64.zip -d /opt/duckdb
- name: Sync
run: uv sync --no-install-project
- name: Build directly with maturin
Expand Down
110 changes: 50 additions & 60 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading