Skip to content

Commit

Permalink
Split CI in humble and iron
Browse files Browse the repository at this point in the history
  • Loading branch information
bjsowa committed Apr 27, 2024
1 parent efb1dc2 commit 922fcc8
Show file tree
Hide file tree
Showing 2 changed files with 52 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: CI
name: CI-Humble

on:
workflow_dispatch:
Expand Down
51 changes: 51 additions & 0 deletions .github/workflows/ci-iron.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
name: CI-Iron

on:
workflow_dispatch:
push:
branches:
- iron
pull_request:
branches:
- iron

jobs:
fortress_ci:
runs-on: ubuntu-22.04
strategy:
matrix:
ROS_REPO: [testing, main]
steps:
- name: Setup ROS environment
uses: ros-tooling/[email protected]
with:
use-ros2-testing: ${{ matrix.ROS_REPO == 'testing' }}
- name: Run ROS CI
uses: ros-tooling/[email protected]
with:
target-ros2-distro: iron
import-token: ${{ secrets.GITHUB_TOKEN }}

garden_ci:
runs-on: ubuntu-22.04
strategy:
matrix:
ROS_REPO: [testing, main]
env:
GZ_VERSION: garden
steps:
- name: Setup ROS environment
uses: ros-tooling/[email protected]
with:
use-ros2-testing: ${{ matrix.ROS_REPO == 'testing' }}
- name: Install Gazebo
run: |
sudo sh -c 'echo "deb http://packages.osrfoundation.org/gazebo/ubuntu-stable `lsb_release -cs` main" > /etc/apt/sources.list.d/gazebo-stable.list'
wget https://packages.osrfoundation.org/gazebo.key -O - | sudo apt-key add -
sudo apt-get update
sudo apt-get install -y libgz-sim7-dev
- name: Run ROS CI
uses: ros-tooling/[email protected]
with:
target-ros2-distro: iron
import-token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 922fcc8

Please sign in to comment.