[CI] Add debian source build job (humble) #2
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: Humble debian Build | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- humble | |
pull_request: | |
branches: | |
- humble | |
schedule: | |
# Run every day to detect flakiness and broken dependencies | |
- cron: '03 1 * * *' | |
jobs: | |
humble_debian: | |
name: Humble debian build | |
runs-on: ubuntu-latest | |
env: | |
ROS_DISTRO: humble | |
container: ghcr.io/christophfroehlich/ros:humble-debian | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
path: src/ros2_control | |
- name: Build and test | |
shell: bash | |
run: | | |
source /opt/ros2_ws/install/setup.bash | |
vcs import --input https://raw.githubusercontent.com/${{ github.repository }}/${{ github.sha }}/ros2_control.${{ env.ROS_DISTRO }}.repos?token=${{ secrets.GITHUB_TOKEN }} src | |
colcon build --packages-skip rqt_controller_manager | |
colcon test --packages-skip rqt_controller_manager control_msgs ros2controlcli controller_manager_msgs | |
colcon test-result |