Skip to content

Commit

Permalink
ROS CI: forget noetic
Browse files Browse the repository at this point in the history
libeigen3-dev (3.3.7-2) seems too old for proxqp:
```cpp
In file included from /usr/include/eigen3/unsupported/Eigen/IterativeSolvers:29,
                   from /root/upstream_ws/install/include/proxsuite/proxqp/sparse/views.hpp:21,
                   from /root/upstream_ws/install/include/proxsuite/proxqp/sparse/solver.hpp:22,
                   from /root/upstream_ws/install/include/proxsuite/proxqp/sparse/wrapper.hpp:12,
                   from /root/upstream_ws/install/include/proxsuite/proxqp/dense/wrapper.hpp:10,
                   from /root/upstream_ws/install/include/proxsuite/proxqp/dense/dense.hpp:8,
                   from /root/target_ws/src/tsid/include/tsid/solvers/solver-proxqp.hpp:22,
                   from /root/target_ws/src/tsid/src/solvers/solver-proxqp.cpp:18:
  /usr/include/eigen3/unsupported/Eigen/src/IterativeSolvers/ConstrainedConjGrad.h: In function ‘void Eigen::internal::constrained_cg(const TMatrix&, const CMatrix&, VectorX&, const VectorB&, const VectorF&, Eigen::IterationController&)’:
  /usr/include/eigen3/unsupported/Eigen/src/IterativeSolvers/ConstrainedConjGrad.h:162:51: error: ‘cerr’ is not a member of ‘std’
    162 |     if (iter.noiseLevel() > 0 && transition) std::cerr << "CCG: transition\n";
        |                                                   ^~~~
```
  • Loading branch information
nim65s committed Aug 26, 2024
1 parent 6c845b1 commit a17a5e8
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 6 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/ci-linux-ros.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,9 @@ jobs:
strategy:
matrix:
env:
- {ROS_DISTRO: noetic, BUILDER: catkin_tools, CTEST_OUTPUT_ON_FAILURE: ON}
#- {ROS_DISTRO: rolling}
#- {ROS_DISTRO: iron}
#- {ROS_DISTRO: humble}
#- {ROS_DISTRO: rolling} Unable to locate package ros-rolling-pinocchio
- {ROS_DISTRO: iron}
- {ROS_DISTRO: humble}
env:
CCACHE_DIR: /github/home/.ccache # Enable ccache
UPSTREAM_WORKSPACE: dependencies.rosinstall
Expand All @@ -19,11 +18,13 @@ jobs:
- uses: actions/checkout@v4
with:
submodules: recursive
# eiquadprog is not yet available in ROS2
- run: sed -i "/eiquadprog/d" package.xml
# This step will fetch/store the directory used by ccache before/after the ci run
- uses: actions/cache@v3
with:
path: ${{ env.CCACHE_DIR }}
key: ccache-${{ matrix.env.ROS_DISTRO }}-${{ matrix.env.ROS_REPO }}
# Run industrial_ci
- uses: 'ros-industrial/industrial_ci@3ed9846c96ed1e0bb36193e8e250632eaac980d0'
- uses: 'ros-industrial/industrial_ci@d23b9ad2c63bfad638a2b1fe3df34b8df9a2f17b'
env: ${{ matrix.env }}
6 changes: 5 additions & 1 deletion dependencies.rosinstall
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
local-name: qpmad
- git:
uri: https://github.com/Simple-Robotics/proxsuite.git
version: devel
version: main
local-name: proxsuite
- git:
uri: https://github.com/ori-drs/osqp.git # fork for packaging
Expand All @@ -14,3 +14,7 @@
uri: https://github.com/robotology/osqp-eigen.git
version: master
local-name: osqp-eigen
- git:
uri: https://github.com/stack-of-tasks/eiquadprog.git
version: master
local-name: eiquadprog

0 comments on commit a17a5e8

Please sign in to comment.