Suppress cppcheck unknownMacro (#237)
Fast forward to https://github.com/ament/ament_lint/pull/268 This suppresses a defect in `ament_cppcheck` - namely that if a macro is missing, it fails loudly. This is compounded by fact that `ament_cppcheck` does not include all dependent headers, so macros are likely to be missing in the first place. Signed-off-by: Dan Rose <dan@digilabs.io>
This commit is contained in:
parent
cd445cd1ef
commit
2477456a3c
2 changed files with 8 additions and 1 deletions
|
@ -9,3 +9,8 @@ repositories:
|
||||||
|
|
||||||
ros2/rosidl_typesupport_fastrtps/COLCON_IGNORE: *empty_repo
|
ros2/rosidl_typesupport_fastrtps/COLCON_IGNORE: *empty_repo
|
||||||
ros2/rmw_fastrtps/COLCON_IGNORE: *empty_repo
|
ros2/rmw_fastrtps/COLCON_IGNORE: *empty_repo
|
||||||
|
|
||||||
|
ament/ament_lint:
|
||||||
|
type: git
|
||||||
|
url: https://github.com/ament/ament_lint.git
|
||||||
|
version: pull/268/merge
|
4
.github/workflows/CI.yml
vendored
4
.github/workflows/CI.yml
vendored
|
@ -20,6 +20,8 @@ jobs:
|
||||||
run: sed -e 's/azure.archive.ubuntu.com/us.archive.ubuntu.com/g' -e t -e d /etc/apt/sources.list | sudo tee /etc/apt/sources.list.d/nonazure.list
|
run: sed -e 's/azure.archive.ubuntu.com/us.archive.ubuntu.com/g' -e t -e d /etc/apt/sources.list | sudo tee /etc/apt/sources.list.d/nonazure.list
|
||||||
- name: Acquire ROS dependencies
|
- name: Acquire ROS dependencies
|
||||||
uses: ros-tooling/setup-ros@master
|
uses: ros-tooling/setup-ros@master
|
||||||
|
- name: Set up git to see all pull requests
|
||||||
|
run: git config --global --add remote.origin.fetch '+refs/pull/*:refs/remotes/origin/pull/*'
|
||||||
- name: Build and test ROS
|
- name: Build and test ROS
|
||||||
uses: ros-tooling/action-ros-ci@0.0.19
|
uses: ros-tooling/action-ros-ci@0.0.19
|
||||||
with:
|
with:
|
||||||
|
@ -29,4 +31,4 @@ jobs:
|
||||||
rmw_implementation
|
rmw_implementation
|
||||||
vcs-repo-file-url: >
|
vcs-repo-file-url: >
|
||||||
https://raw.githubusercontent.com/ros2/ros2/${{ matrix.rosdistro }}/ros2.repos
|
https://raw.githubusercontent.com/ros2/ros2/${{ matrix.rosdistro }}/ros2.repos
|
||||||
https://raw.githubusercontent.com/${{github.repository}}/${{github.sha}}/.github/resources/suppress_other_rmw.repos
|
https://raw.githubusercontent.com/${{github.repository}}/${{github.sha}}/.github/resources/local.repos
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue