Skip to content

Commit

Permalink
Roll back BTcpp and no-error deprecated warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
ruffsl committed May 9, 2020
1 parent 9964c34 commit 301eb54
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 2 deletions.
7 changes: 6 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,12 @@ references:
rm -rf build install log
colcon build \
--symlink-install \
--mixin << parameters.mixins >>
--mixin << parameters.mixins >> \
--cmake-args \
--no-warn-unused-cli \
-DCMAKE_CXX_FLAGS=" \
-Wno-error=deprecated-declarations \
"
rm -f build_failed
fi
- save_to_cache:
Expand Down
5 changes: 5 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,11 @@ RUN . $UNDERLAY_WS/install/setup.sh && \
colcon build \
--symlink-install \
--mixin $OVERLAY_MIXINS \
--cmake-args \
--no-warn-unused-cli \
-DCMAKE_CXX_FLAGS=" \
-Wno-error=deprecated-declarations \
" \
|| touch build_failed && \
if [ -f build_failed ] && [ -n "$FAIL_ON_BUILD_FAILURE" ]; then \
exit 1; \
Expand Down
2 changes: 1 addition & 1 deletion tools/ros2_dependencies.repos
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ repositories:
BehaviorTree/BehaviorTree.CPP:
type: git
url: https://github.com/BehaviorTree/BehaviorTree.CPP.git
version: master
version: ros2-3.1.1
ros/angles:
type: git
url: https://github.com/ros/angles.git
Expand Down

0 comments on commit 301eb54

Please sign in to comment.