Skip to content

Commit 359e214

Browse files
committed
manual colcon build
1 parent a97e454 commit 359e214

File tree

1 file changed

+25
-11
lines changed

1 file changed

+25
-11
lines changed

.github/workflows/systemtests.yml

Lines changed: 25 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,29 @@ jobs:
1010
build:
1111
runs-on: self-hosted
1212
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
1621
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

0 commit comments

Comments
 (0)