-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix calling ycm_ep_helper when YCM is consumed via find_package(YCM) …
…and add test (#468)
- Loading branch information
1 parent
69fbc71
commit fa24330
Showing
2 changed files
with
25 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -62,7 +62,7 @@ jobs: | |
mkdir -p build | ||
cd build | ||
cmake -GNinja -DBUILD_TESTING:BOOL=ON -DFRAMEWORK_COMPILE_IK:BOOL=OFF \ | ||
-DFRAMEWORK_COMPILE_PYTHON_BINDINGS:BOOL=ON -DCMAKE_BUILD_TYPE=${{ matrix.build_type }} .. | ||
-DFRAMEWORK_COMPILE_PYTHON_BINDINGS:BOOL=ON -DCMAKE_BUILD_TYPE=${{ matrix.build_type }} -DCMAKE_INSTALL_PREFIX=$CONDA_PREFIX .. | ||
- name: Build [Linux&macOS] | ||
if: contains(matrix.os, 'macos') || contains(matrix.os, 'ubuntu') | ||
|
@@ -84,7 +84,7 @@ jobs: | |
run: | | ||
mkdir -p build | ||
cd build | ||
cmake -GNinja -DBUILD_TESTING:BOOL=ON -DFRAMEWORK_COMPILE_PYTHON_BINDINGS:BOOL=ON -DCMAKE_BUILD_TYPE=${{ matrix.build_type }} .. | ||
cmake -GNinja -DBUILD_TESTING:BOOL=ON -DFRAMEWORK_COMPILE_PYTHON_BINDINGS:BOOL=ON -DCMAKE_BUILD_TYPE=${{ matrix.build_type }} -DCMAKE_INSTALL_PREFIX=%CONDA_PREFIX%\Library .. | ||
- name: Build [Windows] | ||
if: contains(matrix.os, 'windows') | ||
|
@@ -99,3 +99,20 @@ jobs: | |
run: | | ||
cd build | ||
ctest --output-on-failure -C ${{ matrix.build_type }} -E "Bootstrap" | ||
- name: Install | ||
shell: bash -l {0} | ||
run: | | ||
cd build | ||
cmake --install . | ||
- name: Integration test run a configure of the robotology-superbuild | ||
shell: bash -l {0} | ||
run: | | ||
mkdir testint | ||
cd testint | ||
git clone https://github.com/robotology/robotology-superbuild/ | ||
cd robotology-superbuild/ | ||
git config --global user.name CI User | ||
git config --global user.email [email protected] | ||
cmake -Bbuild -S. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters