🐳 Bump ubuntu from noble-20251013 to noble-20260113 in /ros2/nightly/nightly #295
This file contains hidden or 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@v6 | |
| - name: Check and build ROS 2 image | |
| env: ${{matrix.env}} | |
| run: | | |
| cd $HUB_REPO/$HUB_RELEASE | |
| make build |