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, remove dependency on python3-yaml, and disable failing windows tests #249

Merged
merged 5 commits into from
May 1, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
1 change: 0 additions & 1 deletion .github/ci/packages.apt
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,5 @@ libwebsockets-dev
libxi-dev
libxmu-dev
libyaml-dev
python3-yaml
uuid-dev
xvfb
20 changes: 20 additions & 0 deletions .github/workflows/package_xml.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Validate package.xml

on:
pull_request:

jobs:
package-xml:
runs-on: ubuntu-latest
name: package.xml and CMake versions match
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Check versions
run: |
echo "Extract version numbers and compare"
package_xml_version=$(sed -nE 's/\s*<version>([0-9.]*)<\/version>\s*/\1/p' package.xml)
echo "Version in package.xml: ${package_xml_version}"
cmake_version=$(sed -nE 's/^project.*VERSION\s*([0-9.]*).*/\1/p' CMakeLists.txt)
echo "Version in CMake: ${cmake_version}"
[ $package_xml_version = $cmake_version ]
42 changes: 42 additions & 0 deletions package.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
<?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-launch7</name>
<version>7.0.0</version>
<description>Gazebo Launch : Run and manage programs and plugins</description>
<maintainer email="[email protected]">Nate Koenig</maintainer>
<license>Apache License 2.0</license>
<url type="website">https://github.com/gazebosim/gz-launch</url>

<buildtool_depend>cmake</buildtool_depend>

<depend>binutils</depend>
<depend>gz-cmake3</depend>
<depend>gz-common5</depend>
<depend>gz-fuel-tools9</depend>
<depend>gz-gui8</depend>
<depend>gz-math7</depend>
<depend>gz-msgs10</depend>
<depend>gz-physics7</depend>
<depend>gz-plugin2</depend>
<depend>gz-rendering8</depend>
<depend>gz-sensors8</depend>
<depend>gz-sim8</depend>
<depend>gz-tools2</depend>
<depend>gz-transport13</depend>
<depend>libgflags-dev</depend>
<depend>libwebsockets-dev</depend>
<depend>libxi-dev</depend>
<depend>libxmu-dev</depend>
<depend>libyaml-dev</depend>
<depend>sdformat14</depend>
<depend>tinyxml2</depend>
<depend>uuid</depend>

<test_depend>xvfb</test_depend>

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

Loading