File tree 3 files changed +12
-4
lines changed
3 files changed +12
-4
lines changed Original file line number Diff line number Diff line change 17
17
- uses : actions/checkout@v4
18
18
- uses : ros-industrial/industrial_ci@master
19
19
env :
20
- DOCKER_IMAGE : ghcr.io/sloretz /ros:${{ inputs.ros_distro }}-ros-base
20
+ DOCKER_IMAGE : ghcr.io/ros-controls /ros:${{ inputs.ros_distro }}-ubuntu-testing
21
21
ROS_DISTRO : ${{ inputs.ros_distro }}
22
22
ROS_REPO : testing
23
23
ABICHECK_URL : github:${{ github.repository }}#${{ github.base_ref }}
Original file line number Diff line number Diff line change 15
15
coverage :
16
16
name : coverage build ${{ inputs.ros_distro }}
17
17
runs-on : ubuntu-latest
18
- container : ghcr.io/sloretz /ros:${{ inputs.ros_distro }}-ros-base
18
+ container : ghcr.io/ros-controls /ros:${{ inputs.ros_distro }}-ubuntu-testing
19
19
defaults :
20
20
run :
21
21
shell : bash
Original file line number Diff line number Diff line change @@ -104,15 +104,23 @@ jobs:
104
104
restore-keys : |
105
105
ccache-${{ env.CACHE_PREFIX }}-${{ github.sha }}
106
106
ccache-${{ env.CACHE_PREFIX }}
107
+ - name : Get docker image name
108
+ id : docker_image
109
+ run : |
110
+ if [ "${{ inputs.ros_repo }}" = "main" ]; then
111
+ echo "DOCKER_IMAGE=ghcr.io/ros-controls/ros:${{ inputs.ros_distro }}-ubuntu" >> $GITHUB_OUTPUT
112
+ else
113
+ echo "DOCKER_IMAGE=ghcr.io/ros-controls/ros:${{ inputs.ros_distro }}-ubuntu-testing" >> $GITHUB_OUTPUT
114
+ fi
107
115
- uses : ' ros-industrial/industrial_ci@master'
108
116
env :
109
117
UPSTREAM_WORKSPACE : ${{ inputs.upstream_workspace }}
110
118
TARGET_WORKSPACE : ${{ inputs.target_workspace }}
111
119
NOT_TEST_BUILD : ${{ inputs.not_test_build }}
112
120
DOWNSTREAM_WORKSPACE : ${{ inputs.downstream_workspace }}
113
121
NOT_TEST_DOWNSTREAM : ${{ inputs.not_test_downstream }}
114
- DOCKER_IMAGE : ghcr.io/sloretz/ros: ${{ inputs.ros_distro }}-ros-base
115
- ROS_REPO : ${{ inputs.ros_repo }}
122
+ DOCKER_IMAGE : ${{ env.DOCKER_IMAGE }}
123
+ ROS_REPO : ${{ steps.docker_image.outputs.DOCKER_IMAGE }}
116
124
OS_CODE_NAME : ${{ inputs.os_code_name }}
117
125
ROSDEP_SKIP_KEYS : ${{ inputs.rosdep_skip_keys }}
118
126
ADDITIONAL_DEBS : ${{ inputs.additional_debs }}
You can’t perform that action at this time.
0 commit comments