Skip to content

Commit

Permalink
[ROS1] Add GitHub Actions CI (#38)
Browse files Browse the repository at this point in the history
* [CI] Add GitHub Actions CI, addresses #33

* Remove Travis-CI from README
  • Loading branch information
wxmerkt authored Oct 13, 2022
1 parent 7cee02c commit 6e53c11
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 2 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/industrial_ci_action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: CI
on: [push, pull_request]

jobs:
CI:
strategy:
matrix:
env:
- {ROS_DISTRO: melodic}
- {ROS_DISTRO: noetic}
env:
CCACHE_DIR: /github/home/.ccache # Enable ccache
PRERELEASE: true
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
# This step will fetch/store the directory used by ccache before/after the ci run
- uses: actions/cache@v2
with:
path: ${{ env.CCACHE_DIR }}
key: ccache-${{ matrix.env.ROS_DISTRO }}-${{ matrix.env.ROS_REPO }}
# Run industrial_ci
- uses: 'ros-industrial/industrial_ci@master'
env: ${{ matrix.env }}
2 changes: 0 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,3 @@ twist_mux
Twist multiplexer with support for [geometry_msgs/Twist](http://docs.ros.org/api/geometry_msgs/html/msg/Twist.html) topics and [std_msgs/Bool](http://docs.ros.org/api/std_msgs/html/msg/Bool.html) locks with priorities.

See [documentation](http://wiki.ros.org/twist_mux).

[![Build Status](https://travis-ci.org/ros-teleop/twist_mux.png?branch=jade-devel)](https://travis-ci.org/ros-teleop/twist_mux)

0 comments on commit 6e53c11

Please sign in to comment.