Skip to content

Commit

Permalink
updated conda-deps and added LieGroupControllers in Source-based depe…
Browse files Browse the repository at this point in the history
…ndencies
  • Loading branch information
davidegorbani committed Dec 4, 2023
1 parent 1e9720f commit fbcd38d
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ on:

env:
BipedalLocomotionFramework_TAG: v0.16.1
LieGroupController_TAG: v0.2.0
action-restore-cache: 'true'
jobs:
build:
Expand Down Expand Up @@ -88,6 +89,19 @@ jobs:
if: ${{ steps.cache-restore-conda-deps.outputs.cache-hit != 'true' || steps.cache-restore-source-deps.outputs.cache-hit != 'true' }}
shell: bash -l {0}
run: |
# lie-group-controller
cd ${GITHUB_WORKSPACE}
git clone --depth 1 --single-branch --branch ${LieGroupController_TAG} https://github.com/ami-iit/lie-group-controllers.git lieCtrl
cd lieCtrl
mkdir -p build
cd build
cmake -GNinja .. \
-DCMAKE_PREFIX_PATH=${GITHUB_WORKSPACE}/install/deps \
-DCMAKE_INSTALL_PREFIX=${GITHUB_WORKSPACE}/install/deps
cmake --build . --config ${{matrix.build_type}} --target install
# bipedal-locomotion-framework
cd ${GITHUB_WORKSPACE}
git clone --depth 1 --single-branch --branch ${BipedalLocomotionFramework_TAG} https://github.com/ami-iit/bipedal-locomotion-framework blf
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/conda-deps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,5 @@ dependencies:
- idyntree
- spdlog
- catch2>=3.3.0
- manif

0 comments on commit fbcd38d

Please sign in to comment.