Skip to content

Commit 4303294

Browse files
Use the new images
1 parent 273395e commit 4303294

File tree

3 files changed

+12
-4
lines changed

3 files changed

+12
-4
lines changed

.github/workflows/reusable-abi-check.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- uses: actions/checkout@v4
1818
- uses: ros-industrial/industrial_ci@master
1919
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
2121
ROS_DISTRO: ${{ inputs.ros_distro }}
2222
ROS_REPO: testing
2323
ABICHECK_URL: github:${{ github.repository }}#${{ github.base_ref }}

.github/workflows/reusable-build-coverage.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
coverage:
1616
name: coverage build ${{ inputs.ros_distro }}
1717
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
1919
defaults:
2020
run:
2121
shell: bash

.github/workflows/reusable-industrial-ci-with-cache.yml

+10-2
Original file line numberDiff line numberDiff line change
@@ -104,15 +104,23 @@ jobs:
104104
restore-keys: |
105105
ccache-${{ env.CACHE_PREFIX }}-${{ github.sha }}
106106
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
107115
- uses: 'ros-industrial/industrial_ci@master'
108116
env:
109117
UPSTREAM_WORKSPACE: ${{ inputs.upstream_workspace }}
110118
TARGET_WORKSPACE: ${{ inputs.target_workspace }}
111119
NOT_TEST_BUILD: ${{ inputs.not_test_build }}
112120
DOWNSTREAM_WORKSPACE: ${{ inputs.downstream_workspace }}
113121
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 }}
116124
OS_CODE_NAME: ${{ inputs.os_code_name }}
117125
ROSDEP_SKIP_KEYS: ${{ inputs.rosdep_skip_keys }}
118126
ADDITIONAL_DEBS: ${{ inputs.additional_debs }}

0 commit comments

Comments
 (0)