Skip to content

Commit 96fba73

Browse files
committed
made build not build tests
1 parent 4ab1978 commit 96fba73

File tree

4 files changed

+452
-3
lines changed

4 files changed

+452
-3
lines changed

.github/workflows/unit_test.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,7 @@ jobs:
6262
# Build the ROS workspace
6363
- name: Build workspace
6464
run: |
65-
echo "no workspace build for now"
66-
#chmod +x scripts/build.sh
65+
chmod +x scripts/build.sh
6766
scripts/build.sh
6867
6968
# Run the build script and verify ROS 2 nodes

ros/heartbeat_monitor/CMakeLists.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ endif()
99
find_package(ament_cmake REQUIRED)
1010
find_package(ament_cmake_python REQUIRED)
1111
find_package(rclpy REQUIRED)
12+
find_package(ament_cmake_pytest REQUIRED)
1213

1314
# uncomment the following section in order to fill in
1415
# further dependencies manually.

scripts/build.sh

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,9 @@ done
4242

4343
# Build the ROS 2 workspace
4444
source /opt/ros/jazzy/setup.bash
45-
colcon build
45+
46+
47+
48+
colcon build --cmake-args -DBUILD_TESTING=OFF
4649
. install/setup.bash
4750
export ROS_DOMAIN_ID=69

0 commit comments

Comments
 (0)