Skip to content
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, fix gz sdf tests on Windows #1374

Merged
merged 11 commits into from
Apr 19, 2024
11 changes: 11 additions & 0 deletions .github/workflows/package_xml.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
name: Validate package.xml

on:
pull_request:

jobs:
package-xml:
runs-on: ubuntu-latest
name: Validate package.xml
steps:
- uses: gazebo-tooling/action-gz-ci/validate_package_xml@jammy
32 changes: 32 additions & 0 deletions package.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
<?xml version="1.0"?>
<package format="2">
<name>sdformat14</name>
<version>14.1.1</version>
<description>SDFormat is an XML file format that describes environments, objects, and robots
in a manner suitable for robotic applications</description>

<maintainer email="[email protected]">Addisu Z. Taddese</maintainer>
<maintainer email="[email protected]">Steve Peters</maintainer>

<license>Apache License 2.0</license>

<url type="website">https://github.com/gazebosim/sdformat</url>

<buildtool_depend>cmake</buildtool_depend>
<build_depend>gz-cmake3</build_depend>
<depend>gz-math7</depend>
<depend>gz-utils2</depend>
<depend>tinyxml2</depend>
<depend>liburdfdom-dev</depend>
<depend>pybind11-dev</depend>

<exec_depend>gz-tools2</exec_depend>

<test_depend>libxml2-utils</test_depend>
<test_depend>python3-psutil</test_depend>
<test_depend>python3-pytest</test_depend>

<export>
<build_type>cmake</build_type>
</export>
</package>
Loading