From 3ba606a87a9007f6a5d24aa8f82ea05daba67c29 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?B=C5=82a=C5=BCej=20Sowa?= Date: Thu, 7 Nov 2024 16:42:06 +0000 Subject: [PATCH] Split jazzy and rolling development --- .github/workflows/ci-jazzy.yml | 4 ++-- .github/workflows/ci-rolling.yml | 30 ------------------------------ 2 files changed, 2 insertions(+), 32 deletions(-) delete mode 100644 .github/workflows/ci-rolling.yml diff --git a/.github/workflows/ci-jazzy.yml b/.github/workflows/ci-jazzy.yml index b57525d..35f4184 100644 --- a/.github/workflows/ci-jazzy.yml +++ b/.github/workflows/ci-jazzy.yml @@ -4,10 +4,10 @@ on: workflow_dispatch: push: branches: - - ros2 + - jazzy pull_request: branches: - - ros2 + - jazzy jobs: harmonic_ci: diff --git a/.github/workflows/ci-rolling.yml b/.github/workflows/ci-rolling.yml deleted file mode 100644 index 3cb70f5..0000000 --- a/.github/workflows/ci-rolling.yml +++ /dev/null @@ -1,30 +0,0 @@ -name: CI-Rolling - -on: - workflow_dispatch: - push: - branches: - - ros2 - pull_request: - branches: - - ros2 - -jobs: - harmonic_ci: - runs-on: ubuntu-22.04 - container: - image: ubuntu:noble - strategy: - fail-fast: false - matrix: - ROS_REPO: [testing, main] - steps: - - name: Setup ROS environment - uses: ros-tooling/setup-ros@v0.7 - with: - use-ros2-testing: ${{ matrix.ROS_REPO == 'testing' }} - - name: Run ROS CI - uses: ros-tooling/action-ros-ci@0.3.8 - with: - target-ros2-distro: rolling - import-token: ${{ secrets.GITHUB_TOKEN }}