From 1d95302ae9f8b6e428aef007b0ba6f660c2692e6 Mon Sep 17 00:00:00 2001 From: Alex Moriarty Date: Mon, 26 Jun 2023 15:56:00 -0600 Subject: [PATCH] ci: remove abi compatibility jobs Removing these jobs for now until we have finished release Signed-off-by: Alex Moriarty --- .../workflows/humble-abi-compatibility.yml | 20 ------------------- .github/workflows/iron-abi-compatibility.yml | 20 ------------------- .../workflows/rolling-abi-compatibility.yml | 20 ------------------- 3 files changed, 60 deletions(-) delete mode 100644 .github/workflows/humble-abi-compatibility.yml delete mode 100644 .github/workflows/iron-abi-compatibility.yml delete mode 100644 .github/workflows/rolling-abi-compatibility.yml diff --git a/.github/workflows/humble-abi-compatibility.yml b/.github/workflows/humble-abi-compatibility.yml deleted file mode 100644 index 4df57dc..0000000 --- a/.github/workflows/humble-abi-compatibility.yml +++ /dev/null @@ -1,20 +0,0 @@ -name: Humble - ABI Compatibility Check -on: - workflow_dispatch: - branches: - - main - pull_request: - branches: - - main - -jobs: - abi_check: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - - uses: ros-industrial/industrial_ci@master - env: - ROS_DISTRO: humble - ROS_REPO: main - ABICHECK_URL: github:${{ github.repository }}#${{ github.base_ref }} - NOT_TEST_BUILD: true diff --git a/.github/workflows/iron-abi-compatibility.yml b/.github/workflows/iron-abi-compatibility.yml deleted file mode 100644 index 22dc31d..0000000 --- a/.github/workflows/iron-abi-compatibility.yml +++ /dev/null @@ -1,20 +0,0 @@ -name: Iron - ABI Compatibility Check -on: - workflow_dispatch: - branches: - - main - pull_request: - branches: - - main - -jobs: - abi_check: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - - uses: ros-industrial/industrial_ci@master - env: - ROS_DISTRO: iron - ROS_REPO: main - ABICHECK_URL: github:${{ github.repository }}#${{ github.base_ref }} - NOT_TEST_BUILD: true diff --git a/.github/workflows/rolling-abi-compatibility.yml b/.github/workflows/rolling-abi-compatibility.yml deleted file mode 100644 index 8d0778d..0000000 --- a/.github/workflows/rolling-abi-compatibility.yml +++ /dev/null @@ -1,20 +0,0 @@ -name: Rolling - ABI Compatibility Check -on: - workflow_dispatch: - branches: - - main - pull_request: - branches: - - main - -jobs: - abi_check: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - - uses: ros-industrial/industrial_ci@master - env: - ROS_DISTRO: rolling - ROS_REPO: main - ABICHECK_URL: github:${{ github.repository }}#${{ github.base_ref }} - NOT_TEST_BUILD: true