From 715a36d037e03e92e1210133e9a842332eebff65 Mon Sep 17 00:00:00 2001 From: Louise Poubel Date: Fri, 11 Mar 2022 11:51:39 -0800 Subject: [PATCH] Remove Bionic from future releases (Garden+) Signed-off-by: Louise Poubel --- .github/workflows/ci.yml | 9 --------- bitbucket-pipelines.yml | 18 ------------------ 2 files changed, 27 deletions(-) delete mode 100644 bitbucket-pipelines.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 472b23a..53663ff 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -3,15 +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@master focal-ci: runs-on: ubuntu-latest name: Ubuntu Focal CI diff --git a/bitbucket-pipelines.yml b/bitbucket-pipelines.yml deleted file mode 100644 index 9636a04..0000000 --- a/bitbucket-pipelines.yml +++ /dev/null @@ -1,18 +0,0 @@ -image: ubuntu:bionic - -pipelines: - default: - - step: - script: - - apt-get update - - apt -y install wget lsb-release gnupg - - sh -c 'echo "deb http://packages.osrfoundation.org/gazebo/ubuntu-stable `lsb_release -cs` main" > /etc/apt/sources.list.d/gazebo-stable.list' - - wget http://packages.osrfoundation.org/gazebo.key -O - | apt-key add - - - apt-get update - - apt-get -y install cmake build-essential ruby-ronn - # Ignition Tools - - mkdir build - - cd build - - cmake .. - - make -j4 - - make test ARGS="-VV"