Skip to content

Commit 72f4370

Browse files
committed
Test to find installed package on CI too
1 parent aa94639 commit 72f4370

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ jobs:
8383
echo ${{ matrix.config.cmake_args }}
8484
echo ${{ matrix.config.toolchain }}
8585
rm -rf .build
86-
cmake ${{ matrix.config.cmake_args }} -DCMAKE_INSTALL_PREFIX=.install -DCMAKE_TOOLCHAIN_FILE="etc/${{ matrix.config.toolchain }}-toolchain.cmake" -B .build -S .
86+
cmake ${{ matrix.config.cmake_args }} -DCMAKE_INSTALL_PREFIX=.install -DCMAKE_PREFIX_PATH=.install -DCMAKE_TOOLCHAIN_FILE="etc/${{ matrix.config.toolchain }}-toolchain.cmake" -B .build -S .
8787
- name: CMake ASAN Build
8888
run: |
8989
set -x
@@ -106,4 +106,8 @@ jobs:
106106
- name: Install
107107
run: |
108108
set -x
109-
cmake --install .build --config RelWithDebInfo --component beman_optional26_development --verbose
109+
cmake --install .build --config RelWithDebInfo --verbose
110+
- name: CMake Debug Test
111+
run: |
112+
set -x
113+
cmake --build .build --config Debug --target test -- -k 0

0 commit comments

Comments
 (0)