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 b956880 commit e985cf2Copy full SHA for e985cf2
.github/workflows/windows.yml
@@ -31,11 +31,14 @@ jobs:
31
32
- name: Configure using cmake
33
run: |
34
- echo "Listing directories in CONDA_PREFIX: $CONDA_PREFIX"
35
- ls "$CONDA_PREFIX/Library"
+ if [ "${{ matrix.build_type }}" == "Release" ]; then
+ 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 \
40
-DCMAKE_INSTALL_PREFIX=$CONDA_PREFIX \
- -DCMAKE_PREFIX_PATH=$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