Skip to content

Commit d9439eb

Browse files
Merge pull request BehaviorTree#35 from emersonknapp/emersonknapp/humble-ci
Add Action CI check
2 parents 5ce4e96 + 8dd2d90 commit d9439eb

File tree

2 files changed

+29
-0
lines changed

2 files changed

+29
-0
lines changed

.github/workflows/test.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: Test
2+
on:
3+
pull_request:
4+
push:
5+
branches:
6+
- humble
7+
8+
jobs:
9+
build_and_test:
10+
runs-on: ubuntu-latest
11+
env:
12+
ROS_DISTRO: ${{ matrix.ros_distro }}
13+
container:
14+
image: rostooling/setup-ros-docker:ubuntu-jammy-latest
15+
strategy:
16+
fail-fast: false
17+
matrix:
18+
ros_distro: [humble]
19+
steps:
20+
- name: Build and run tests
21+
id: action-ros-ci
22+
uses: ros-tooling/[email protected]
23+
with:
24+
target-ros2-distro: ${{ matrix.ros_distro }}
25+
- uses: actions/upload-artifact@v1
26+
with:
27+
name: colcon-logs
28+
path: ros_ws/log

behaviortree_ros2/package.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111

1212
<buildtool_depend>ament_cmake</buildtool_depend>
1313

14+
<depend>libboost-dev</depend>
1415
<depend>rclcpp</depend>
1516
<depend>rclcpp_action</depend>
1617
<depend>behaviortree_cpp</depend>

0 commit comments

Comments
 (0)