We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 62c9787 commit bf6eb9aCopy full SHA for bf6eb9a
.github/workflows/ci.yaml
@@ -65,8 +65,6 @@ jobs:
65
runs-on: windows-latest
66
env:
67
DUCKDB_LIB_DIR: ${{ github.workspace }}
68
- LD_LIBRARY_PATH: ${{ github.workspace }}
69
- DYLD_LIBRARY_PATH: ${{ github.workspace }}
70
steps:
71
- uses: actions/checkout@v4
72
with:
@@ -79,5 +77,8 @@ jobs:
79
77
run: |
80
78
curl -O -L https://github.com/duckdb/duckdb/releases/download/v${{ env.duckdb-version }}/libduckdb-windows-amd64.zip
81
unzip libduckdb-windows-amd64.zip -d ${{ github.workspace }}
+ - name: Add local directory to path for libduckdb
+ run: echo ${{ github.workspace }} >> "$GITHUB_PATH"
82
+ shell: bash
83
- name: Test
84
run: uv run pytest --all-extras
0 commit comments