Applied necessary changes to docs and docker files for Jazzy (#270) #693
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: colcon build & test | |
on: | |
push: | |
branches: | |
- jazzy | |
pull_request: | |
branches: | |
- jazzy | |
workflow_dispatch: | |
env: | |
ROS_DISTRO: jazzy | |
# Cancel previously running PR jobs | |
concurrency: | |
group: '${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}' | |
cancel-in-progress: true | |
jobs: | |
compile_and_test: | |
name: Compile and test | |
runs-on: ubuntu-latest | |
container: | |
image: ubuntu:24.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: ros-tooling/[email protected] | |
- uses: ros-tooling/[email protected] | |
id: action_ros_ci_step | |
with: | |
package-name: andino_base andino_bringup andino_control andino_description andino_firmware andino_hardware andino_slam andino_navigation | |
target-ros2-distro: ${{ env.ROS_DISTRO }} | |
import-token: ${{ secrets.GITHUB_TOKEN }} |