Skip to content

Commit

Permalink
Add github CI workflow and update maintainer (#151)
Browse files Browse the repository at this point in the history
* Update package.xml

* Remove travis config

* Add github CI workflow
  • Loading branch information
bjsowa authored Oct 1, 2024
1 parent 6b987a8 commit cbdf983
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 42 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: CI

on:
workflow_dispatch:
push:
branches:
- develop
pull_request:
branches:
- develop

jobs:
industrial_ci:
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
ROS_DISTRO: [noetic]
ROS_REPO: [testing, main]
env:
ROS_DISTRO: ${{ matrix.ROS_DISTRO }}
ROS_REPO: ${{ matrix.ROS_REPO }}
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Source tests
uses: "ros-industrial/industrial_ci@master"
39 changes: 0 additions & 39 deletions .travis.yml

This file was deleted.

8 changes: 5 additions & 3 deletions package.xml
Original file line number Diff line number Diff line change
@@ -1,18 +1,20 @@
<?xml version="1.0"?>
<package format="2">
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?>
<package format="3">
<name>web_video_server</name>
<version>0.2.2</version>
<description>HTTP Streaming of ROS Image Topics in Multiple Formats</description>

<maintainer email="rctoris@wpi.edu">Russell Toris</maintainer>
<author email="mwills@wpi.edu">Mitchell Wills</author>
<maintainer email="blazej@fictionlab.pl">Błażej Sowa</maintainer>

<license>BSD</license>

<url type="website">http://ros.org/wiki/web_video_server</url>
<url type="bugtracker">https://github.com/RobotWebTools/web_video_server/issues</url>
<url type="repository">https://github.com/RobotWebTools/web_video_server</url>

<author email="mwills@wpi.edu">Mitchell Wills</author>

<buildtool_depend>catkin</buildtool_depend>

<build_depend>roscpp</build_depend>
Expand Down

0 comments on commit cbdf983

Please sign in to comment.