From 390cc24fd3568972e4b6036322e97deccf254e3b Mon Sep 17 00:00:00 2001 From: Louise Poubel Date: Fri, 11 Mar 2022 11:23:43 -0800 Subject: [PATCH 1/2] Remove Bionic from future releases (Garden+) Signed-off-by: Louise Poubel --- .github/workflows/ci.yml | 13 ++----------- README.md | 2 +- tutorials/install.md | 6 +++--- 3 files changed, 6 insertions(+), 15 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e36175c3..da0b5b6f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -3,17 +3,6 @@ name: Ubuntu CI on: [push, pull_request] jobs: - bionic-ci: - runs-on: ubuntu-latest - name: Ubuntu Bionic CI - steps: - - name: Checkout - uses: actions/checkout@v2 - - name: Compile and test - id: ci - uses: ignition-tooling/action-ignition-ci@bionic - with: - codecov-enabled: true focal-ci: runs-on: ubuntu-latest name: Ubuntu Focal CI @@ -23,3 +12,5 @@ jobs: - name: Compile and test id: ci uses: ignition-tooling/action-ignition-ci@focal + with: + codecov-enabled: true diff --git a/README.md b/README.md index 0a85144e..b46fca2f 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ Build | Status -- | -- Test coverage | [![codecov](https://codecov.io/gh/ignitionrobotics/ign-launch/branch/ign-launch5/graph/badge.svg)](https://codecov.io/gh/ignitionrobotics/ign-launch) -Ubuntu Bionic | [![Build Status](https://build.osrfoundation.org/buildStatus/icon?job=ignition_launch-ci-ign-launch5-bionic-amd64)](https://build.osrfoundation.org/job/ignition_launch-ci-ign-launch5-bionic-amd64) +Ubuntu Focal | [![Build Status](https://build.osrfoundation.org/buildStatus/icon?job=ignition_launch-ci-ign-launch5-focal-amd64)](https://build.osrfoundation.org/job/ignition_launch-ci-ign-launch5-focal-amd64) Homebrew | [![Build Status](https://build.osrfoundation.org/buildStatus/icon?job=ignition_launch-ci-ign-launch5-homebrew-amd64)](https://build.osrfoundation.org/job/ignition_launch-ci-ign-launch5-homebrew-amd64) Windows | [![Build Status](https://build.osrfoundation.org/job/ign_launch-ign-5-win/badge/icon)](https://build.osrfoundation.org/job/ign_launch-ign-5-win/) diff --git a/tutorials/install.md b/tutorials/install.md index 798701f3..098155d5 100644 --- a/tutorials/install.md +++ b/tutorials/install.md @@ -19,7 +19,7 @@ We recommend following the [Binary Install](#binary-install) instructions to get The [Source Install](#source-install) instructions should be used if you need the very latest software improvements, you need to modify the code, or you plan to make a contribution. -## Ubuntu 18.04 or above +## Ubuntu 20.04 or above On Ubuntu systems, `apt` can be used to install `ignition-launch`: @@ -49,14 +49,14 @@ which version you need. # Source Install -## Ubuntu 18.04 or above +## Ubuntu 20.04 or above Source installation can be performed in UNIX systems by first installing the necessary prerequisites followed by building from source. ### Prerequisites -**[Ubuntu Bionic](http://releases.ubuntu.com/18.04/)** +**[Ubuntu Focal](http://releases.ubuntu.com/20.04/)** or higher 1. Install third-party libraries: From 0bcb3e6e89deb5e1522eed6ab45b73a9e73fe513 Mon Sep 17 00:00:00 2001 From: Louise Poubel Date: Fri, 11 Mar 2022 14:21:35 -0800 Subject: [PATCH 2/2] enable static checkers Signed-off-by: Louise Poubel --- .github/workflows/ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index da0b5b6f..bf593694 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,3 +14,5 @@ jobs: uses: ignition-tooling/action-ignition-ci@focal with: codecov-enabled: true + cppcheck-enabled: true + cpplint-enabled: true