-
Notifications
You must be signed in to change notification settings - Fork 134
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #158 from j-rivero/jrivero/ros2-merge
Unify master and ros2 branches (merge ros2 into master)
- Loading branch information
Showing
17 changed files
with
325 additions
and
118 deletions.
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,19 @@ | ||
--- | ||
name: urdfdom ROS1 CI | ||
|
||
on: | ||
push: | ||
pull_request: | ||
|
||
jobs: | ||
build_ros1: | ||
name: ROS1 CI | ||
runs-on: ubuntu-18.04 | ||
steps: | ||
- uses: ros-tooling/[email protected] | ||
with: | ||
required-ros-distributions: melodic | ||
- uses: ros-tooling/[email protected] | ||
with: | ||
package-name: urdfdom | ||
target-ros1-distro: melodic |
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 @@ | ||
--- | ||
name: urdfdom ROS2 CI | ||
|
||
on: | ||
push: | ||
pull_request: | ||
|
||
jobs: | ||
|
||
build_ros2: | ||
name: ROS2 CI | ||
runs-on: ubuntu-20.04 | ||
steps: | ||
- uses: ros-tooling/[email protected] | ||
with: | ||
required-ros-distributions: galactic | ||
- uses: ros-tooling/[email protected] | ||
with: | ||
package-name: urdfdom | ||
target-ros2-distro: galactic |
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,69 @@ | ||
--- | ||
name: urdfdom system CI | ||
|
||
on: | ||
push: | ||
pull_request: | ||
|
||
jobs: | ||
# This workflow contains a single job called "build" | ||
build: | ||
# The type of runner that the job will run on | ||
name: ${{ matrix.config.name }} | ||
runs-on: ${{ matrix.config.os }} | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
config: | ||
- { | ||
name: "Ubuntu Latest GCC", | ||
os: ubuntu-latest, | ||
build_type: "Release", | ||
cc: "gcc", | ||
cxx: "g++", | ||
} | ||
- { | ||
name: "Ubuntu Latest GCC", | ||
os: ubuntu-latest, | ||
build_type: "Debug", | ||
cc: "gcc", | ||
cxx: "g++", | ||
} | ||
- { | ||
name: "Ubuntu Bionic GCC", | ||
os: ubuntu-18.04, | ||
build_type: "Release", | ||
cc: "gcc", | ||
cxx: "g++", | ||
} | ||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: Install dependencies on ubuntu | ||
if: startsWith(matrix.config.name, 'Ubuntu') | ||
run: | | ||
sudo apt-get -qq update | ||
sudo apt-get -qq upgrade -y | ||
sudo apt-get -qq install -y build-essential cmake libconsole-bridge-dev liburdfdom-headers-dev libtinyxml-dev | ||
cmake --version | ||
gcc --version | ||
- name: Configure | ||
shell: bash | ||
run: | | ||
mkdir build | ||
cmake \ | ||
-S . \ | ||
-B build \ | ||
-DCMAKE_BUILD_TYPE=${{ matrix.config.build_type }} | ||
- name: Build | ||
shell: bash | ||
run: cmake --build build --config ${{ matrix.config.build_type }} | ||
|
||
- name: Run tests on Ubuntu | ||
if: startsWith(matrix.config.name, 'Ubuntu') | ||
shell: bash | ||
run: | | ||
cd build | ||
make test ARGS="-VV" |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
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
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
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,31 @@ | ||
<?xml version="1.0"?> | ||
<package format="2"> | ||
<name>urdfdom</name> | ||
<version>2.3.5</version> | ||
<description>A library to access URDFs using the DOM model.</description> | ||
<maintainer email="[email protected]">Steven! Ragnarök</maintainer> | ||
|
||
<license>BSD</license> | ||
|
||
<author>Wim Meeussen</author> | ||
<author>John Hsu</author> | ||
<author>Ioan Sucan</author> | ||
|
||
<build_depend>console_bridge_vendor</build_depend> | ||
<build_depend>libconsole-bridge-dev</build_depend> | ||
<build_depend>tinyxml</build_depend> | ||
<build_depend>tinyxml_vendor</build_depend> | ||
<build_depend version_gte="0.2.3">urdfdom_headers</build_depend> | ||
|
||
<buildtool_depend>cmake</buildtool_depend> | ||
|
||
<exec_depend>console_bridge_vendor</exec_depend> | ||
<exec_depend>libconsole-bridge-dev</exec_depend> | ||
<exec_depend>tinyxml</exec_depend> | ||
<exec_depend>tinyxml_vendor</exec_depend> | ||
<exec_depend version_gte="0.2.3">urdfdom_headers</exec_depend> | ||
|
||
<export> | ||
<build_type>cmake</build_type> | ||
</export> | ||
</package> |
Oops, something went wrong.