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 6ff5bc7 commit 25a9ef6Copy full SHA for 25a9ef6
.github/workflows/windows.yml
@@ -31,9 +31,14 @@ jobs:
31
32
- name: Configure using cmake
33
run: |
34
+ if [ "${{ matrix.build_type }}" == "Release" ]; then
35
+ GLOB_PREFIX_PATH="$CONDA_PREFIX"
36
+ elif [ "${{ matrix.build_type }}" == "Debug" ]; then
37
+ GLOB_PREFIX_PATH="$CONDA_PREFIX/Library/debug;$CONDA_PREFIX"
38
+ fi
39
cmake -S ./ -B ./build \
- -DCMAKE_INSTALL_PREFIX=%CONDA_PREFIX% \
- -DCMAKE_PREFIX_PATH=%CONDA_PREFIX% \
40
+ -DCMAKE_INSTALL_PREFIX=$CONDA_PREFIX \
41
+ -DCMAKE_PREFIX_PATH=$GLOB_PREFIX_PATH \
42
-DSPARROW_IPC_BUILD_SHARED=${{ matrix.build_shared }} \
43
-DSPARROW_IPC_BUILD_TESTS=ON
44
0 commit comments