Skip to content

Commit 95cee7d

Browse files
authored
Add CI with GitHub actions (#130)
Especially since we maintain compatibility across multiple ROS versions, which new contributors might not expect, this should help prevent accidental build-breaking.
1 parent 12f977f commit 95cee7d

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.github/workflows/CI.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: ROS2 CI
2+
on: [push, pull_request]
3+
jobs:
4+
build:
5+
strategy:
6+
matrix:
7+
os: [ubuntu-18.04, macOS-latest, windows-latest]
8+
rosdistro: [dashing, eloquent, source]
9+
exclude: # issue in [email protected]
10+
- os: ubuntu-18.04
11+
rosdistro: source
12+
runs-on: ${{ matrix.os }}
13+
steps:
14+
- uses: ros-tooling/[email protected]
15+
with:
16+
required-ros-distributions: ${{ matrix.rosdistro }}
17+
- uses: ros-tooling/[email protected]
18+
with:
19+
package-name: rmw_cyclonedds_cpp
20+

0 commit comments

Comments
 (0)