diff --git a/.github/workflows/industrial_ci.yml b/.github/workflows/industrial_ci.yml index c18d313..2fdad86 100644 --- a/.github/workflows/industrial_ci.yml +++ b/.github/workflows/industrial_ci.yml @@ -15,13 +15,16 @@ on: jobs: industrial_ci: strategy: + fail-fast: false matrix: - ROS_DISTRO: [jazzy] - ROS_REPO: [main] + env: + - { ROS_DISTRO: rolling, ROS_REPO: main} + - { ROS_DISTRO: jazzy, ROS_REPO: main} + env: + AFTER_SETUP_TARGET_WORKSPACE: 'apt update && apt install -y git' + runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - uses: "ros-industrial/industrial_ci@master" - env: - ROS_DISTRO: ${{ matrix.ROS_DISTRO }} - ROS_REPO: ${{ matrix.ROS_REPO }} + env: ${{ matrix.env }}