Skip to content

Commit 473abf1

Browse files
author
Felix Exner
authored
GitHub actions (#150)
Use github actions for CI instead of Travis
1 parent daa792a commit 473abf1

File tree

4 files changed

+32
-26
lines changed

4 files changed

+32
-26
lines changed

.github/workflows/ci.yml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
name: Industrial CI pipeline
2+
on: [push, pull_request]
3+
4+
jobs:
5+
format_check:
6+
runs-on: ubuntu-latest
7+
8+
steps:
9+
- uses: actions/checkout@v2
10+
- uses: 'ros-industrial/industrial_ci@master'
11+
env:
12+
ROS_DISTRO: melodic
13+
CLANG_FORMAT_CHECK: file
14+
CLANG_FORMAT_VERSION: "6.0"
15+
16+
build:
17+
runs-on: ubuntu-latest
18+
strategy:
19+
matrix:
20+
env:
21+
- ROS_DISTRO: kinetic
22+
UPSTREAM_WORKSPACE: .ci.rosinstall
23+
ROS_REPO: main
24+
- ROS_DISTRO: melodic
25+
UPSTREAM_WORKSPACE: .ci.rosinstall
26+
ROS_REPO: main
27+
28+
steps:
29+
- uses: actions/checkout@v1
30+
- uses: 'ros-industrial/industrial_ci@master'
31+
env: ${{matrix.env}}

.travis.rosinstall

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

.travis.yml

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

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
[![Build Status](https://travis-ci.org/UniversalRobots/Universal_Robots_ROS_Driver.svg?branch=master)](https://travis-ci.org/UniversalRobots/Universal_Robots_ROS_Driver)
2-
1+
[![Build badge](https://github.com/UniversalRobots/Universal_Robots_ROS_Driver/workflows/Industrial%20CI%20pipeline/badge.svg?branch=master)](https://github.com/UniversalRobots/Universal_Robots_ROS_Driver/actions)
32

43
# Universal_Robots_ROS_Driver
54
Universal Robots have become a dominant supplier of lightweight, robotic manipulators for industry, as well as for scientific research and education. The Robot Operating System (ROS) has developed from a community-centered movement to a mature framework and quasi standard, providing a rich set of powerful tools for robot engineers and researchers, working in many different domains.

0 commit comments

Comments
 (0)