Skip to content

Commit cbdf983

Browse files
authored
Add github CI workflow and update maintainer (#151)
* Update package.xml * Remove travis config * Add github CI workflow
1 parent 6b987a8 commit cbdf983

File tree

3 files changed

+32
-42
lines changed

3 files changed

+32
-42
lines changed

.github/workflows/ci.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: CI
2+
3+
on:
4+
workflow_dispatch:
5+
push:
6+
branches:
7+
- develop
8+
pull_request:
9+
branches:
10+
- develop
11+
12+
jobs:
13+
industrial_ci:
14+
runs-on: ubuntu-22.04
15+
strategy:
16+
fail-fast: false
17+
matrix:
18+
ROS_DISTRO: [noetic]
19+
ROS_REPO: [testing, main]
20+
env:
21+
ROS_DISTRO: ${{ matrix.ROS_DISTRO }}
22+
ROS_REPO: ${{ matrix.ROS_REPO }}
23+
steps:
24+
- name: Checkout repo
25+
uses: actions/checkout@v4
26+
- name: Source tests
27+
uses: "ros-industrial/industrial_ci@master"

.travis.yml

Lines changed: 0 additions & 39 deletions
This file was deleted.

package.xml

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

7-
<maintainer email="[email protected]">Russell Toris</maintainer>
8-
<author email="[email protected]">Mitchell Wills</author>
8+
<maintainer email="[email protected]">Błażej Sowa</maintainer>
99

1010
<license>BSD</license>
1111

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

16+
<author email="[email protected]">Mitchell Wills</author>
17+
1618
<buildtool_depend>catkin</buildtool_depend>
1719

1820
<build_depend>roscpp</build_depend>

0 commit comments

Comments
 (0)