Skip to content

Commit

Permalink
Continuous Integration (#6)
Browse files Browse the repository at this point in the history
* Added Github actions CI

* Update package.xml
  • Loading branch information
marip8 authored Apr 15, 2020
1 parent 2c89ecc commit 7231fed
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 7 deletions.
28 changes: 28 additions & 0 deletions .github/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: CI

on: [push, pull_request]

jobs:
industrial_ci:
strategy:
fail-fast: false
matrix:
env:
- {CI_NAME: Xenial-Build,
OS_NAME: ubuntu,
OS_CODE_NAME: xenial,
ROS_DISTRO: kinetic,
ROS_REPO: main,
DOCKER_IMAGE: "ros:kinetic"}
- {CI_NAME: Bionic-Build,
OS_NAME: ubuntu,
OS_CODE_NAME: bionic,
ROS_DISTRO: melodic,
ROS_REPO: main,
DOCKER_IMAGE: "ros:melodic"}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: 'ros-industrial/industrial_ci@master'
env: ${{matrix.env}}

10 changes: 3 additions & 7 deletions package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,25 +4,21 @@
<version>0.0.0</version>
<description>The colorized_mesh_display package</description>

<author email="[email protected]">Jane Doe</author>
<maintainer email="[email protected]">mripperger</maintainer>
<author email="[email protected]">Michael Ripperger</author>
<maintainer email="[email protected]">Michael Ripperger</maintainer>

<license>Apache 2.0</license>

<buildtool_depend>catkin</buildtool_depend>
<build_depend>qtbase5-dev</build_depend>
<build_depend>message_generation</build_depend>

<depend>geometry_msgs</depend>
<depend>pcl_ros</depend>
<depend>rviz</depend>
<depend>shape_msgs</depend>
<depend>std_msgs</depend>
<depend>pcl_ros</depend>

<exec_depend>message_runtime</exec_depend>
<exec_depend>libqt5-core</exec_depend>
<exec_depend>libqt5-gui</exec_depend>
<exec_depend>libqt5-widgets</exec_depend>

<export>
<rviz plugin="${prefix}/plugin_description.xml"/>
Expand Down

0 comments on commit 7231fed

Please sign in to comment.