Skip to content

Merge pull request #388 from prototriangle/base-16-patch #722

Merge pull request #388 from prototriangle/base-16-patch

Merge pull request #388 from prototriangle/base-16-patch #722

Workflow file for this run

name: Industrial CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
workflow_dispatch:
jobs:
industrial_ci:
name: ROS ${{ matrix.ROS_DISTRO }} (${{ matrix.ROS_REPO }})
runs-on: ubuntu-24.04
strategy:
fail-fast: false
matrix:
include:
- ROS_DISTRO: rolling
ROS_REPO: testing
- ROS_DISTRO: jazzy
ROS_REPO: testing
- ROS_DISTRO: kilted
ROS_REPO: testing
- ROS_DISTRO: lyrical
ROS_REPO: testing
env:
CCACHE_DIR: "${{ github.workspace }}/.ccache"
steps:
- uses: actions/checkout@v6
- uses: actions/cache@v4
with:
path: ${{ env.CCACHE_DIR }}
key: ccache-${{ matrix.ROS_DISTRO }}-${{ matrix.ROS_REPO }}-${{github.run_id}}
restore-keys: |
ccache-${{ matrix.ROS_DISTRO }}-${{ matrix.ROS_REPO }}-
- uses: 'ros-industrial/industrial_ci@master'
if: ${{ github.event_name != 'pull_request' || matrix.ROS_DISTRO == 'rolling' }}
env:
BEFORE_INSTALL_TARGET_DEPENDENCIES: 'sudo apt-get update'
AFTER_BUILD_TARGET_WORKSPACE: 'set +u && COLCON_TRACE=0 AMENT_TRACE_SETUP_FILES=0 source /root/target_ws/install/setup.bash && set -u'
ROS_DISTRO: ${{ matrix.ROS_DISTRO }}
ROS_REPO: ${{ matrix.ROS_REPO }}
PRERELEASE: false