From d5f1eb617da465a219787ec77a4974071cbebeca Mon Sep 17 00:00:00 2001 From: Oleg Kalachev Date: Tue, 1 Jun 2021 04:03:20 +0300 Subject: [PATCH] Add Noetic building to CI --- .github/workflows/build.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 0709e465..2d409811 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -14,3 +14,10 @@ jobs: - name: Native Melodic build run: | docker run --rm -v $(pwd):/root/catkin_ws/src/clover ros:melodic-ros-base /root/catkin_ws/src/clover/builder/standalone-install.sh + build-noetic: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: Native Noetic build + run: | + docker run --rm -v $(pwd):/root/catkin_ws/src/clover ros:noetic-ros-base /root/catkin_ws/src/clover/builder/standalone-install.sh