Skip to content

Commit

Permalink
Add possibility to specify a DOWNSTREAM_WORKSPACE with ici (#2)
Browse files Browse the repository at this point in the history
* Add possibility to specify a DOWNSTREAM_WORKSPACE with ici

This would help raising awareness of breaking things downstream before actually releasing.

* Add a default value for the downstream workspace
  • Loading branch information
fmauch authored Feb 16, 2024
1 parent ab5a916 commit 2f069f3
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/reusable-industrial-ci-with-cache.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,11 @@ on:
description: 'UPSTREAM_WORKSPACE variable for industrial_ci. Usually path to local .repos file.'
required: true
type: string
downstream_workspace:
description: 'DOWNSTREAM_WORKSPACE variable for industrial_ci. If set, downstream packages will be built and tested against this repo'
required: false
default: ''
type: string
ros_distro:
description: 'ROS_DISTRO variable for industrial_ci'
required: true
Expand Down Expand Up @@ -83,6 +88,7 @@ jobs:
- uses: 'ros-industrial/industrial_ci@master'
env:
UPSTREAM_WORKSPACE: ${{ inputs.upstream_workspace }}
DOWNSTREAM_WORKSPACE: ${{ inputs.downstream_workspace }}
ROS_DISTRO: ${{ inputs.ros_distro }}
ROS_REPO: ${{ inputs.ros_repo }}
OS_CODE_NAME: ${{ inputs.os_code_name }}
Expand Down

0 comments on commit 2f069f3

Please sign in to comment.