Skip to content

Commit a17a5e8

Browse files
committed
ROS CI: forget noetic
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"; | ^~~~ ```
1 parent 6c845b1 commit a17a5e8

File tree

2 files changed

+11
-6
lines changed

2 files changed

+11
-6
lines changed

.github/workflows/ci-linux-ros.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,9 @@ jobs:
66
strategy:
77
matrix:
88
env:
9-
- {ROS_DISTRO: noetic, BUILDER: catkin_tools, CTEST_OUTPUT_ON_FAILURE: ON}
10-
#- {ROS_DISTRO: rolling}
11-
#- {ROS_DISTRO: iron}
12-
#- {ROS_DISTRO: humble}
9+
#- {ROS_DISTRO: rolling} Unable to locate package ros-rolling-pinocchio
10+
- {ROS_DISTRO: iron}
11+
- {ROS_DISTRO: humble}
1312
env:
1413
CCACHE_DIR: /github/home/.ccache # Enable ccache
1514
UPSTREAM_WORKSPACE: dependencies.rosinstall
@@ -19,11 +18,13 @@ jobs:
1918
- uses: actions/checkout@v4
2019
with:
2120
submodules: recursive
21+
# eiquadprog is not yet available in ROS2
22+
- run: sed -i "/eiquadprog/d" package.xml
2223
# This step will fetch/store the directory used by ccache before/after the ci run
2324
- uses: actions/cache@v3
2425
with:
2526
path: ${{ env.CCACHE_DIR }}
2627
key: ccache-${{ matrix.env.ROS_DISTRO }}-${{ matrix.env.ROS_REPO }}
2728
# Run industrial_ci
28-
- uses: 'ros-industrial/industrial_ci@3ed9846c96ed1e0bb36193e8e250632eaac980d0'
29+
- uses: 'ros-industrial/industrial_ci@d23b9ad2c63bfad638a2b1fe3df34b8df9a2f17b'
2930
env: ${{ matrix.env }}

dependencies.rosinstall

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
local-name: qpmad
55
- git:
66
uri: https://github.com/Simple-Robotics/proxsuite.git
7-
version: devel
7+
version: main
88
local-name: proxsuite
99
- git:
1010
uri: https://github.com/ori-drs/osqp.git # fork for packaging
@@ -14,3 +14,7 @@
1414
uri: https://github.com/robotology/osqp-eigen.git
1515
version: master
1616
local-name: osqp-eigen
17+
- git:
18+
uri: https://github.com/stack-of-tasks/eiquadprog.git
19+
version: master
20+
local-name: eiquadprog

0 commit comments

Comments
 (0)