Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 21 additions & 5 deletions .github/workflows/industrial_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,30 @@ on:

jobs:
industrial_ci:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
env:
- { ROS_DISTRO: jazzy, ROS_REPO: main }
- { ROS_DISTRO: rolling, ROS_REPO: main, UPSTREAM_WORKSPACE: crane_plus-not-released.rolling.repos }
runs-on: ubuntu-latest
include:
- name: jazzy
env:
ROS_DISTRO: jazzy
ROS_REPO: main
- name: rolling
env:
ROS_DISTRO: rolling
ROS_REPO: main
UPSTREAM_WORKSPACE: crane_plus-not-released.rolling.repos

steps:
- uses: actions/checkout@v4
- uses: "ros-industrial/industrial_ci@master"

- name: Run industrial_ci
id: run_ci
uses: ros-industrial/industrial_ci@master
env: ${{ matrix.env }}
continue-on-error: ${{ matrix.env.ROS_DISTRO == 'rolling' }}

- name: status message
if: ${{ matrix.env.ROS_DISTRO == 'rolling' && steps.run_ci.outcome == 'failure' }}
run: echo "ROS ${MATRIX_ENV} のジョブは失敗しましたが、PRチェックには影響しません。"