-
Notifications
You must be signed in to change notification settings - Fork 31
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add package.xml #413
Merged
Merged
Add package.xml #413
Changes from 4 commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
2b5e533
Add package.xml
azeey 6da7508
Merge remote-tracking branch 'origin/gz-cmake3' into package_xml
azeey 0a7a257
Update version and maintainer
azeey 2dd4ef3
Merge branch 'gz-cmake3' into package_xml
scpeters aa4735a
Update version
azeey 4bdca6a
Merge remote-tracking branch 'origin/gz-cmake3' into package_xml
azeey eb356d4
Add package.xml validation workflow file
azeey fe7bec1
Update version
azeey 0f91fad
Add cmake as a test_depend
azeey 08fcc47
Update to jammy branch
azeey a2a21da
Merge branch 'gz-cmake3' into package_xml
azeey File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<?xml version="1.0"?> | ||
<?xml-model href="http://download.ros.org/schema/package_format2.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?> | ||
<package format="2"> | ||
<name>gz-cmake3</name> | ||
<version>3.5.0</version> | ||
<description>Gazebo CMake : CMake Modules for Gazebo Projects</description> | ||
|
||
<maintainer email="[email protected]">Steve Peters</maintainer> | ||
|
||
<license>Apache License 2.0</license> | ||
|
||
<url type="website">https://github.com/gazebosim/gz-cmake</url> | ||
|
||
<buildtool_depend>cmake</buildtool_depend> | ||
azeey marked this conversation as resolved.
Show resolved
Hide resolved
|
||
<buildtool_depend>pkg-config</buildtool_depend> | ||
azeey marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
<export> | ||
<build_type>cmake</build_type> | ||
</export> | ||
</package> |
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think we should have a plan for how to keep this version tag in sync with the version in the CMakeLists.txt.
Some options:
I won't block this pull request on that change, but I'd like to at least have an issue open where we continue this conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think option 1 would be easier to implement
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I believe the following
ament_cmake
macro is used to invoke theament_package
python scripts:There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I just hacked up a crude github workflow check for consistent versions in the CMakeLists.txt and package.xml file in branch package_xml...package_xml_ci_test
@j-rivero where would you like to see this CI configuration stored?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I should have mentioned I've added a workflow in some of the other package.xml PRs. See https://github.com/gazebosim/gz-sim/actions/runs/8334724361
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I've added an Action in gazebo-tooling/action-gz-ci#70 and updated this PR to use it.