Skip to content

Commit 9e690f3

Browse files
committed
fix: sqlite test lib path on windows
1 parent 12422f4 commit 9e690f3

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/javascript.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -175,10 +175,13 @@ jobs:
175175
- name: Install C++ dependencies (Linux)
176176
if: runner.os == 'Linux'
177177
run: sudo apt-get install libsqlite3-dev
178+
- name: Set cmake args (Windows)
179+
if: runner.os == 'Windows'
180+
shell: pwsh
181+
run: echo "ADBC_CMAKE_ARGS=-DCMAKE_PREFIX_PATH=$env:CONDA_PREFIX/Library" >> $env:GITHUB_ENV
178182
- name: Build Driver
179183
# We need to build the SQLite driver for tests.
180-
# Use login bash (-l) so conda is activated on Windows, matching rust.yml.
181-
shell: bash -l -eo pipefail {0}
184+
shell: bash
182185
run: ci/scripts/node_build.sh "${{ github.workspace }}/javascript/build"
183186
- name: Set driver path (Linux)
184187
if: runner.os == 'Linux'

0 commit comments

Comments
 (0)