Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Modify CI to track ros testing repo #256

Merged
Merged
20 changes: 7 additions & 13 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,18 +13,12 @@ jobs:
strategy:
fail-fast: false
matrix:
distro: ['iron', 'jazzy', 'rolling']
container:
image: ros:${{ matrix.distro }}-ros-base
ROS_DISTRO: ['iron', 'jazzy', 'rolling']
ROS_REPO: ['main', 'testing']
timeout-minutes: 30
steps:
- name: Deps
run: |
apt update && apt install -y curl
- uses: actions/checkout@v4
- name: rosdep
run: |
rosdep update
rosdep install --from-paths . -yir
- name: build
run: /ros_entrypoint.sh colcon build
- uses: actions/checkout@v4
- uses: 'ros-industrial/industrial_ci@master'
env:
ROS_DISTRO: ${{ matrix.ROS_DISTRO }}
ROS_REPO: ${{ matrix.ROS_REPO }}