Closed
Conversation
Contributor
Author
|
I was just revising #44 to sync some newer feature from the nav2 dockerfiles, but when using the nightly build of ROS2, I can't seem to build the overlay for moveit2 project without octomap by skipping it as in the official build instructions, and I can't build the underlay with it. DetailsWith octomapRUN . /opt/ros/$ROS_DISTRO/setup.sh && \
colcon build \
--symlink-install \
--mixin $UNDERLAY_MIXINS \
|| ([ -z "$FAIL_ON_BUILD_FAILURE" ] || exit 1)Without octomapRUN . /opt/ros/$ROS_DISTRO/setup.sh && \
colcon build \
--symlink-install \
--mixin $UNDERLAY_MIXINS \
--packages-skip-by-dep octomap \
|| ([ -z "$FAIL_ON_BUILD_FAILURE" ] || exit 1) |
This was referenced Jul 29, 2020
Contributor
Author
|
Looks like the workflow is building and testing with code coverage:
You may need to login into github to see the workflow. |
explicitly skip keys from underlay
as rosdep is too slow to seach entire debug workspace
so rosdep doesn't attempt to install rti connext that block ci with interactive install
|
This pull request is in conflict. Could you fix it @ruffsl? |
Contributor
Author
|
Migration to CircleCI is no longer roadmapped. However, I may follow up and refactor the Dockerfiles sometime. |
MikeWrock
pushed a commit
to MikeWrock/moveit2
that referenced
this pull request
Aug 15, 2022
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
Update to #44