Skip to content

Ashraf/zerocopy nitors v2 #1185

Ashraf/zerocopy nitors v2

Ashraf/zerocopy nitors v2 #1185

Workflow file for this run

# This adds "pre-release" builds for Github Actions. These:
# - check if the package builds, installs without issues
# - if unit/system tests are defined, runs them
# If these pass, we cover the general requirements of ROS-based repositories.
#
# These builds run on Github machines, but in the same environment and using the same flow as actual ROS
# distro build farm releases, hence "pre-release".
#
# NOTE: This workflow is informational only — do not add to required branch protection checks.
# It may fail due to outdated librealsense2 on the ROS package servers.
# The main CI workflow (main.yml) is the authoritative build check.
#
# This config uses industrial_ci (https://github.com/ros-industrial/industrial_ci.git).
# For troubleshooting, see readme (https://github.com/ros-industrial/industrial_ci/blob/master/README.rst)
name: pre-release
# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the ros2-development branch
push:
branches:
- ros2-development
pull_request:
branches:
- ros2-development
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
permissions: read-all
jobs:
build:
name: Build pre-release tests for ROS2 ${{ matrix.ros_distro }} and ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
ros_distro: [kilted, jazzy, humble]
include:
- ros_distro: 'kilted'
os: ubuntu-24.04
- ros_distro: 'jazzy'
os: ubuntu-24.04
- ros_distro: 'humble'
os: ubuntu-22.04
env:
ROS_DISTRO: ${{ matrix.ros_distro }}
PRERELEASE: true
BASEDIR: ${{ github.workspace }}/.work
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 #v4
- name: industrial_ci
uses: ros-industrial/industrial_ci@0f4bd2d1b926eac95fd6bc5bd1fcb3051a6e927d #master as of 2026-03-31