Skip to content

Commit 77793c1

Browse files
authored
Merge pull request #307 from fmessmer/ci/gha
[ROS2] migrate ci to gha
2 parents 26e1215 + 843de8f commit 77793c1

File tree

4 files changed

+42
-31
lines changed

4 files changed

+42
-31
lines changed
File renamed without changes.

.github/workflows/main.yml

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
name: GHA CI
2+
3+
on:
4+
push:
5+
pull_request:
6+
schedule:
7+
- cron: "0 0 * * 0" # every Sunday at midnight
8+
workflow_dispatch:
9+
10+
jobs:
11+
industrial_ci:
12+
name: GHA CI
13+
runs-on: ubuntu-latest
14+
timeout-minutes: 60
15+
16+
env:
17+
ADDITIONAL_DEBS: 'apt-utils dialog git'
18+
AFTER_SCRIPT: 'rosenv sh .ci.xacro_test.sh'
19+
CATKIN_LINT: pedantic
20+
CATKIN_LINT_ARGS: '--ignore description_boilerplate'
21+
CMAKE_ARGS: -DCMAKE_BUILD_TYPE=Release
22+
PYLINT_ARGS: '--output-format=parseable --errors-only'
23+
PYLINT_CHECK: true
24+
ROS_REPO: main
25+
26+
strategy:
27+
matrix:
28+
include:
29+
- { ROS_DISTRO: noetic }
30+
31+
steps:
32+
- uses: actions/checkout@v4
33+
with:
34+
submodules: true
35+
lfs: true
36+
ssh-known-hosts: ''
37+
38+
- uses: ros-industrial/industrial_ci@master
39+
with:
40+
config: ${{toJSON(matrix)}}

.travis.yml

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

README.md

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,6 @@
11
cob_common
22
===========
33

4-
## Travis - Continuous Integration
4+
## GitHub Actions - Continuous Integration
55

6-
Status: [![Build Status](https://app.travis-ci.com/ipa320/cob_common.svg?branch=foxy)](https://app.travis-ci.com/ipa320/cob_common)
7-
8-
9-
This is a repository for Care-O-bot URDF macros and common message/service descriptions.
10-
11-
Installation instructions and tutorials can be found at http://www.care-o-bot.org.
6+
CI-Status ```foxy```: [![GHA CI](https://github.com/4am-robotics/cob_common/actions/workflows/main.yml/badge.svg?branch=foxy)](https://github.com/4am-robotics/cob_common/actions/workflows/main.yml?query=branch%3Afoxy)

0 commit comments

Comments
 (0)