File tree Expand file tree Collapse file tree 1 file changed +25
-11
lines changed Expand file tree Collapse file tree 1 file changed +25
-11
lines changed Original file line number Diff line number Diff line change @@ -10,15 +10,29 @@ jobs:
10
10
build :
11
11
runs-on : self-hosted
12
12
steps :
13
- - uses : actions/checkout@v2
14
- - name : build and test ROS 2
15
- uses : ros-tooling/action-ros-ci@v0.3
13
+ - name : Create workspace
14
+ run : mkdir -p ros2_ws/src
15
+ - name : Checkout motion capture package
16
+ run : |
17
+ cd ros2_ws/src
18
+ git clone --branch ros2 --recursive https://github.com/IMRCLab/motion_capture_tracking.git
19
+ - name : Checkout Crazyswarm2
20
+ uses : actions/checkout@v2
16
21
with :
17
- package-name : |
18
- crazyflie
19
- crazyflie_examples
20
- crazyflie_interfaces
21
- crazyflie_py
22
- crazyflie_sim
23
- target-ros2-distro : humble
24
- vcs-repo-file-url : rosinstall
22
+ path : ros2_ws/src
23
+ - name : Build workspace
24
+ run : |
25
+ cd ros2_ws
26
+ colcon build --symlink-install
27
+
28
+ # - name: build and test ROS 2
29
+ # uses: ros-tooling/action-ros-ci@v0.3
30
+ # with:
31
+ # package-name: |
32
+ # crazyflie
33
+ # crazyflie_examples
34
+ # crazyflie_interfaces
35
+ # crazyflie_py
36
+ # crazyflie_sim
37
+ # target-ros2-distro: humble
38
+ # vcs-repo-file-url: rosinstall
You can’t perform that action at this time.
0 commit comments