🐳 Bump ubuntu from noble-20241009 to noble-20241011 in /ros2/nightly/nightly #193
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: CI ROS 2 images | |
on: | |
pull_request: | |
paths: | |
- '.ci/**' | |
- '.github/workflows/ros2_ci.yaml' | |
- 'ros2/nightly/**' | |
- 'ros2/source/**' | |
- 'ros2/testing/**' | |
push: | |
branches-ignore: | |
- 'master' | |
paths: | |
- '.ci/**' | |
- '.github/workflows/ros2_ci.yaml' | |
- 'ros2/nightly/**' | |
- 'ros2/source/**' | |
- 'ros2/testing/**' | |
jobs: | |
build_images: | |
strategy: | |
fail-fast: false | |
matrix: | |
env: | |
- {HUB_REPO: ros2, HUB_RELEASE: testing} | |
- {HUB_REPO: ros2, HUB_RELEASE: source} | |
- {HUB_REPO: ros2, HUB_RELEASE: nightly} | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Check and build ROS 2 image | |
env: ${{matrix.env}} | |
run: | | |
cd $HUB_REPO/$HUB_RELEASE | |
make build |