Skip to content
Merged
Show file tree
Hide file tree
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
6 changes: 4 additions & 2 deletions dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -6160,8 +6160,10 @@ const distributionSpecificAptDependencies = {
],
};
const aptRtiConnextDds = {
jammy: "rti-connext-dds-6.0.1",
noble: "rti-connext-dds-6.0.1",
jammy: ["rti-connext-dds-6.0.1"],
// ROS 2 Rolling switched to Connext 7.3.0 before Kilted;
// ROS 2 Jazzy still uses Connext 6.0.1
noble: ["rti-connext-dds-6.0.1", "rti-connext-dds-7.3.0-ros"],
};
/**
* Run apt-get install on list of specified packages.
Expand Down
6 changes: 4 additions & 2 deletions src/package_manager/apt.ts
Original file line number Diff line number Diff line change
Expand Up @@ -87,8 +87,10 @@ const distributionSpecificAptDependencies = {
};

const aptRtiConnextDds = {
jammy: "rti-connext-dds-6.0.1",
noble: "rti-connext-dds-6.0.1",
jammy: ["rti-connext-dds-6.0.1"],
// ROS 2 Rolling switched to Connext 7.3.0 before Kilted;
// ROS 2 Jazzy still uses Connext 6.0.1
noble: ["rti-connext-dds-6.0.1", "rti-connext-dds-7.3.0-ros"],
};

/**
Expand Down
Loading