Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
88 changes: 88 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,29 @@ Build the workspace:
colcon build
```

### Known build issue (missing test_interface_files)

If you encounter the following error during `colcon build`:

You can fix it by cloning the missing dependency:

```shell
git clone -b humble https://github.com/ros2/test_interface_files.git src/test_interface_files
```

Build the workspace:

```shell
. /opt/ros/humble/setup.sh
colcon build
```

Alternatively, you can skip building the problematic package:

```shell
colcon build --packages-skip test_msgs


### ROS 2 Kilted Kaiju

For ROS 2 Kilted, clone the ROS 2 message packages to your workspace:
Expand Down Expand Up @@ -126,6 +149,28 @@ Build the workspace:
colcon build
```

### Known build issue (missing test_interface_files)

If you encounter the following error during `colcon build`:

You can fix it by cloning the missing dependency:

```shell
git clone -b humble https://github.com/ros2/test_interface_files.git src/test_interface_files
```

Build the workspace:

```shell
. /opt/ros/humble/setup.sh
colcon build
```

Alternatively, you can skip building the problematic package:

```shell
colcon build --packages-skip test_msgs

### ROS 2 Jazzy Jalisco

For ROS 2 Jazzy, you need to clone the code generator and message packages to your workspace:
Expand All @@ -148,7 +193,27 @@ Build the workspace:
. /opt/ros/jazzy/setup.sh
colcon build
```
### Known build issue (missing test_interface_files)

If you encounter the following error during `colcon build`:

You can fix it by cloning the missing dependency:

```shell
git clone -b humble https://github.com/ros2/test_interface_files.git src/test_interface_files
```

Build the workspace:

```shell
. /opt/ros/humble/setup.sh
colcon build
```

Alternatively, you can skip building the problematic package:

```shell
colcon build --packages-skip test_msgs

### ROS 2 Humble Hawksbill

Expand All @@ -173,6 +238,29 @@ Build the workspace:
colcon build
```

### Known build issue (missing test_interface_files)

If you encounter the following error during `colcon build`:

You can fix it by cloning the missing dependency:

```shell
git clone -b humble https://github.com/ros2/test_interface_files.git src/test_interface_files
```

Build the workspace:

```shell
. /opt/ros/humble/setup.sh
colcon build
```

Alternatively, you can skip building the problematic package:

```shell
colcon build --packages-skip test_msgs
```

### Running the examples

After building, source your workspace and run the examples:
Expand Down
Loading