github: more experiments w/ --debug-find

This commit is contained in:
Roland Conybeare 2023-09-26 15:45:03 -04:00
commit 75cfc477b8
2 changed files with 3 additions and 12 deletions

View file

@ -31,7 +31,7 @@ jobs:
path: repo/indentlog
- name: Configure indentlog
run: cmake -B ${{github.workspace}}/build_indentlog -DCMAKE_INSTALL_PREFIX=${{github.workspace}}/local repo/indentlog
run: cmake -B ${{github.workspace}}/build_indentlog -DCMAKE_INSTALL_PREFIX=${{github.workspace}}/local --debug-find repo/indentlog
- name: Build indentlog
run: cmake --build ${{github.workspace}}/build_indentlog --config ${{env.BUILD_TYPE}}
@ -47,7 +47,7 @@ jobs:
path: repo/subsys
- name: Configure subsys
run: cmake -B ${{github.workspace}}/build_subsys -DCMAKE_INSTALL_PREFIX=${{github.workspace}}/local repo/subsys
run: cmake -B ${{github.workspace}}/build_subsys -DCMAKE_INSTALL_PREFIX=${{github.workspace}}/local --debug-find repo/subsys
- name: Build subsys
@ -56,13 +56,13 @@ jobs:
- name: Install subsys
run: cmake --install ${{github.workspace}}/build_subsys
- name: Clone refcnt
uses: actions/checkout@v3
with:
repository: Rconybea/refcnt
path: repo/refcnt
- name: Configure refcnt
run: cmake -B ${{github.workspace}}/build_refcnt -DCMAKE_PREFIX_PATH=${{github.workspace}}/local -DCMAKE_INSTALL_PREFIX=${{github.workspace}}/local --debug-find repo/refcnt