Skip to content

Commit f21131e

Browse files
author
Simon Schmeisser
authored
Merge branch 'ros-industrial:indigo-devel' into kr10r900-2
2 parents defff9d + e9c37c7 commit f21131e

File tree

4 files changed

+100
-26
lines changed

4 files changed

+100
-26
lines changed

.github/workflows/ci_bionic.yml

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
name: CI - Ubuntu Bionic
2+
3+
on:
4+
# direct pushes to protected branches are not supported
5+
pull_request:
6+
# run every day, at 6am UTC
7+
schedule:
8+
- cron: '0 6 * * *'
9+
# allow manually starting this workflow
10+
workflow_dispatch:
11+
12+
jobs:
13+
industrial_ci:
14+
name: ROS Melodic (${{ matrix.ros_repo }})
15+
runs-on: ubuntu-20.04
16+
17+
strategy:
18+
fail-fast: false
19+
matrix:
20+
ros_distro: [ melodic ]
21+
ros_repo: [ main, testing ]
22+
23+
env:
24+
CCACHE_DIR: "${{ github.workspace }}/.ccache"
25+
CATKIN_LINT: true
26+
CATKIN_LINT_ARGS: --ignore launch_depend --ignore uninstalled_include_path --ignore critical_var_append
27+
28+
steps:
29+
- name: Fetch repository
30+
uses: actions/checkout@v2
31+
32+
- name: ccache cache
33+
uses: actions/cache@v2
34+
with:
35+
path: ${{ env.CCACHE_DIR }}
36+
# we always want the ccache cache to be persisted, as we cannot easily
37+
# determine whether dependencies have changed, and ccache will manage
38+
# updating the cache for us. Adding 'run_id' to the key will force an
39+
# upload at the end of the job.
40+
key: ccache-${{ matrix.ros_distro }}-${{ matrix.ros_repo }}-${{github.run_id}}
41+
restore-keys: |
42+
ccache-${{ matrix.ros_distro }}-${{ matrix.ros_repo }}
43+
44+
- name: Run industrial_ci
45+
uses: ros-industrial/industrial_ci@master
46+
env:
47+
ROS_DISTRO: ${{ matrix.ros_distro }}
48+
ROS_REPO: ${{ matrix.ros_repo }}

.github/workflows/ci_xenial.yml

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
name: CI - Ubuntu Xenial
2+
3+
on:
4+
# direct pushes to protected branches are not supported
5+
pull_request:
6+
# run every day, at 6am UTC
7+
schedule:
8+
- cron: '0 6 * * *'
9+
# allow manually starting this workflow
10+
workflow_dispatch:
11+
12+
jobs:
13+
industrial_ci:
14+
name: ROS Kinetic (${{ matrix.ros_repo }})
15+
runs-on: ubuntu-20.04
16+
17+
strategy:
18+
fail-fast: false
19+
matrix:
20+
ros_distro: [ kinetic ]
21+
ros_repo: [ main, testing ]
22+
23+
env:
24+
CCACHE_DIR: "${{ github.workspace }}/.ccache"
25+
CATKIN_LINT: true
26+
CATKIN_LINT_ARGS: --ignore launch_depend --ignore uninstalled_include_path --ignore critical_var_append
27+
28+
steps:
29+
- name: Fetch repository
30+
uses: actions/checkout@v2
31+
32+
- name: ccache cache
33+
uses: actions/cache@v2
34+
with:
35+
path: ${{ env.CCACHE_DIR }}
36+
# we always want the ccache cache to be persisted, as we cannot easily
37+
# determine whether dependencies have changed, and ccache will manage
38+
# updating the cache for us. Adding 'run_id' to the key will force an
39+
# upload at the end of the job.
40+
key: ccache-${{ matrix.ros_distro }}-${{ matrix.ros_repo }}-${{github.run_id}}
41+
restore-keys: |
42+
ccache-${{ matrix.ros_distro }}-${{ matrix.ros_repo }}
43+
44+
- name: Run industrial_ci
45+
uses: ros-industrial/industrial_ci@master
46+
env:
47+
ROS_DISTRO: ${{ matrix.ros_distro }}
48+
ROS_REPO: ${{ matrix.ros_repo }}

.travis.yml

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

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
11
# Kuka experimental
22

33
[![Build Status](http://build.ros.org/job/Kdev__kuka_experimental__ubuntu_xenial_amd64/badge/icon)](http://build.ros.org/job/Kdev__kuka_experimental__ubuntu_xenial_amd64)
4+
[![Build Status: Ubuntu Xenial (Actions)](https://github.com/ros-industrial/kuka_experimental/workflows/CI%20-%20Ubuntu%20Xenial/badge.svg?branch=indigo-devel)](https://github.com/ros-industrial/kuka_experimental/actions?query=workflow%3A%22CI+-+Ubuntu+Xenial%22)
5+
[![Build Status: Ubuntu Bionic (Actions)](https://github.com/ros-industrial/kuka_experimental/workflows/CI%20-%20Ubuntu%20Bionic/badge.svg?branch=indigo-devel)](https://github.com/ros-industrial/kuka_experimental/actions?query=workflow%3A%22CI+-+Ubuntu+Bionic%22)
46

5-
[![support level: community](https://img.shields.io/badge/support%20level-community-lightgray.png)](http://rosindustrial.org/news/2016/10/7/better-supporting-a-growing-ros-industrial-software-platform)
7+
8+
[![support level: community](https://img.shields.io/badge/support%20level-community-lightgray.svg)](http://rosindustrial.org/news/2016/10/7/better-supporting-a-growing-ros-industrial-software-platform)
69

710
Experimental packages for Kuka manipulators within [ROS-Industrial][].
811
See the [ROS wiki][] page for more information.

0 commit comments

Comments
 (0)