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
15 changes: 10 additions & 5 deletions .github/workflows/reusable-ros-tooling-source-build.yml
Original file line number Diff line number Diff line change
@@ -1,20 +1,21 @@
name: Reusable industrial_ci Workflow with Cache
# Reusable action to simplify dealing with ROS/ROS2 industrial_ci builds with cache
# author: Denis Štogl <[email protected]>
name: Reusable workflow for building a repo with all dependencies from source
# author:
# Denis Štogl <[email protected]>
# Christoph Froehlich <[email protected]>

on:
workflow_call:
inputs:
ros_distro:
description: 'ROS2 distribution name'
description: 'ROS 2 distribution name'
required: true
type: string
ref:
description: 'Reference on which the repo should be checkout. Usually is this name of a branch or a tag.'
required: true
type: string
ros2_repo_branch:
description: 'Branch in the ros2/ros2 repository from which ".repos" should be used.'
description: 'Branch in the ROS 2 repository from which ".repos" should be used.'
default: 'master'
required: false
type: string
Expand Down Expand Up @@ -89,6 +90,10 @@ jobs:
${{ steps.check_local_repos.outputs.repo_file }}
colcon-mixin-repository: https://raw.githubusercontent.com/colcon/colcon-mixin-repository/master/index.yaml
id: action-ros
- name: Debug rosdep
run: |
rosdep keys -ri --from-paths src
if : ${{ always() }}
- name: Download issue template for target failure # Has to be a local file
if: ${{ always() && steps.action-ros.outcome == 'failure' && github.event_name == 'schedule' }}
run:
Expand Down