From 6e5b1584118beb3118413b34019c48eca73575b5 Mon Sep 17 00:00:00 2001 From: Alexander Mock Date: Fri, 19 Jan 2024 14:33:24 +0100 Subject: [PATCH] removed humble and melodic pipeline. noetic pipeline remains and is only triggered for noetic and master branch --- .github/workflows/humble.yml | 25 ------------------------- .github/workflows/melodic.yml | 25 ------------------------- 2 files changed, 50 deletions(-) delete mode 100644 .github/workflows/humble.yml delete mode 100644 .github/workflows/melodic.yml diff --git a/.github/workflows/humble.yml b/.github/workflows/humble.yml deleted file mode 100644 index 7e4a232..0000000 --- a/.github/workflows/humble.yml +++ /dev/null @@ -1,25 +0,0 @@ -name: Humble CI -on: - push: - branches: - - 'humble' - pull_request: - branches: - - 'humble' - workflow_dispatch: - branches: - - '*' -jobs: - industrial_ci: - strategy: - matrix: - env: - - {ROS_DISTRO: humble, ROS_REPO: testing} - - {ROS_DISTRO: humble, ROS_REPO: main} - runs-on: ubuntu-22.04 - steps: - - uses: actions/checkout@v2 - with: - submodules: recursive - - uses: 'ros-industrial/industrial_ci@master' - env: ${{matrix.env}} diff --git a/.github/workflows/melodic.yml b/.github/workflows/melodic.yml deleted file mode 100644 index 5c876e8..0000000 --- a/.github/workflows/melodic.yml +++ /dev/null @@ -1,25 +0,0 @@ -name: Melodic CI -on: - push: - branches: - - 'melodic' - pull_request: - branches: - - 'melodic' - workflow_dispatch: - branches: - - '*' -jobs: - industrial_ci: - strategy: - matrix: - env: - - {ROS_DISTRO: melodic, ROS_REPO: testing} - - {ROS_DISTRO: melodic, ROS_REPO: main} - runs-on: ubuntu-18.04 - steps: - - uses: actions/checkout@v2 - with: - submodules: recursive - - uses: 'ros-industrial/industrial_ci@master' - env: ${{matrix.env}}