Skip to content

Commit

Permalink
ROS Noetic CI (#12)
Browse files Browse the repository at this point in the history
* Added CI build for ROS Noetic

* Compile with c++14
  • Loading branch information
marip8 authored Nov 10, 2020
1 parent 898d6c0 commit 06baa00
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 3 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,18 +14,24 @@ jobs:
fail-fast: false
matrix:
env:
- {CI_NAME: Xenial-Build,
- {CI_NAME: xenial,
OS_NAME: ubuntu,
OS_CODE_NAME: xenial,
ROS_DISTRO: kinetic,
ROS_REPO: main,
DOCKER_IMAGE: "ros:kinetic"}
- {CI_NAME: Bionic-Build,
- {CI_NAME: bionic,
OS_NAME: ubuntu,
OS_CODE_NAME: bionic,
ROS_DISTRO: melodic,
ROS_REPO: main,
DOCKER_IMAGE: "ros:melodic"}
- {CI_NAME: focal,
OS_NAME: ubuntu,
OS_CODE_NAME: focal,
ROS_DISTRO: noetic,
ROS_REPO: main,
DOCKER_IMAGE: "ros:noetic"}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
Expand Down
4 changes: 3 additions & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
cmake_minimum_required(VERSION 2.8.3)
project(rviz_tool_cursor)

add_compile_options(-std=c++11)
set(CMAKE_CXX_STANDARD 14)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
set(CMAKE_CXX_EXTENSIONS OFF)

find_package(catkin REQUIRED COMPONENTS
rviz
Expand Down

0 comments on commit 06baa00

Please sign in to comment.