Skip to content

Commit

Permalink
Check that all required CMake packages and targets are installed
Browse files Browse the repository at this point in the history
  • Loading branch information
traversaro authored Sep 26, 2024
1 parent 48da4a1 commit ad82158
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
7 changes: 6 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,11 @@ jobs:
- name: Check install
shell: bash -l {0}
run: |
cd build
# Test CMake packages
cmake-package-check IWear --targets IWear::IWear
cmake-package-check WearableData --targets WearableData::WearableData
cmake-package-check WearableActuators --targets WearableActuators::WearableActuators
cmake-package-check HumanDynamicsEstimation --targets HumanDynamicsEstimation::HumanStateMsg
# Test python packages
python -c "import wearables"
python -c "import hde"
6 changes: 4 additions & 2 deletions ci_env.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,12 @@ dependencies:
- make
- ninja
- pkg-config
- python
- pybind11
- yarp
- icub-main
- idyntree
- libmatio-cpp
- robometry
- osqp-eigen
- librobometry
- libosqp-eigen
- cmake-package-check

0 comments on commit ad82158

Please sign in to comment.