Skip to content

Commit bf6eb9a

Browse files
committed
fix: just flailing
1 parent 62c9787 commit bf6eb9a

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/ci.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,6 @@ jobs:
6565
runs-on: windows-latest
6666
env:
6767
DUCKDB_LIB_DIR: ${{ github.workspace }}
68-
LD_LIBRARY_PATH: ${{ github.workspace }}
69-
DYLD_LIBRARY_PATH: ${{ github.workspace }}
7068
steps:
7169
- uses: actions/checkout@v4
7270
with:
@@ -79,5 +77,8 @@ jobs:
7977
run: |
8078
curl -O -L https://github.com/duckdb/duckdb/releases/download/v${{ env.duckdb-version }}/libduckdb-windows-amd64.zip
8179
unzip libduckdb-windows-amd64.zip -d ${{ github.workspace }}
80+
- name: Add local directory to path for libduckdb
81+
run: echo ${{ github.workspace }} >> "$GITHUB_PATH"
82+
shell: bash
8283
- name: Test
8384
run: uv run pytest --all-extras

0 commit comments

Comments
 (0)