We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 12422f4 commit 9e690f3Copy full SHA for 9e690f3
.github/workflows/javascript.yml
@@ -175,10 +175,13 @@ jobs:
175
- name: Install C++ dependencies (Linux)
176
if: runner.os == 'Linux'
177
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
182
- name: Build Driver
183
# We need to build the SQLite driver for tests.
- # Use login bash (-l) so conda is activated on Windows, matching rust.yml.
- shell: bash -l -eo pipefail {0}
184
+ shell: bash
185
run: ci/scripts/node_build.sh "${{ github.workspace }}/javascript/build"
186
- name: Set driver path (Linux)
187
0 commit comments