Skip to content

Commit 39b2e96

Browse files
committed
fix: sqlite test lib path on windows one more time
1 parent 9e690f3 commit 39b2e96

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/javascript.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,10 @@ jobs:
191191
run: echo "ADBC_DRIVER_MANAGER_TEST_LIB=${{ github.workspace }}/javascript/build/lib/libadbc_driver_sqlite.dylib" >> "$GITHUB_ENV"
192192
- name: Set driver path (Windows)
193193
if: runner.os == 'Windows'
194-
run: echo "ADBC_DRIVER_MANAGER_TEST_LIB=${{ github.workspace }}/javascript/build/bin/adbc_driver_sqlite.dll" >> $GITHUB_ENV
194+
shell: pwsh
195+
run: |
196+
echo "PATH=${{ github.workspace }}/javascript/build/bin;$env:CONDA_PREFIX\Library\bin;$env:PATH" >> $env:GITHUB_ENV
197+
echo "ADBC_DRIVER_MANAGER_TEST_LIB=${{ github.workspace }}/javascript/build/bin/adbc_driver_sqlite.dll" >> $env:GITHUB_ENV
195198
- name: Run Tests
196199
working-directory: javascript
197200
run: npm test

0 commit comments

Comments
 (0)