mirror of
https://github.com/swri-robotics/mapviz.git
synced 2025-09-15 17:48:34 +08:00
* Support ROS Noetic This makes tweaks necessary for mapviz to build and run on Ubuntu 20.04 / ROS Noetic. It also drops support for Ubuntu 14.04 / ROS Indigo. Signed-off-by: P. J. Reed <preed@swri.org>
21 lines
562 B
YAML
21 lines
562 B
YAML
name: CI
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
industrial_ci:
|
|
strategy:
|
|
matrix:
|
|
env:
|
|
- {ROS_DISTRO: kinetic, ROS_REPO: testing}
|
|
- {ROS_DISTRO: kinetic, ROS_REPO: main}
|
|
- {ROS_DISTRO: melodic, ROS_REPO: testing}
|
|
- {ROS_DISTRO: melodic, ROS_REPO: main}
|
|
- {ROS_DISTRO: noetic, ROS_REPO: testing}
|
|
# - {ROS_DISTRO: noetic, ROS_REPO: main}
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
- uses: 'ros-industrial/industrial_ci@master'
|
|
env: ${{matrix.env}}
|