Continuous Integration Testing #479
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: clearpath_robot_ci | |
on: | |
push: | |
pull_request: | |
schedule: | |
- cron: "0 0 * * *" # every day at midnight | |
jobs: | |
clearpath_robot_ci: | |
name: Humble | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: ros-tooling/[email protected] | |
with: | |
required-ros-distributions: humble | |
- name: clearpath-package-server | |
run: | | |
cat /home/runner/work/clearpath_robot/clearpath_robot/ros.key | |
sudo apt install wget | |
wget https://packages.clearpathrobotics.com/public.key -O - | sudo apt-key add - | |
sudo sh -c 'echo "deb https://packages.clearpathrobotics.com/stable/ubuntu $(lsb_release -cs) main" > /etc/apt/sources.list.d/clearpath-latest.list' | |
sudo apt-get update | |
- uses: ros-tooling/[email protected] | |
id: action_ros_ci_step | |
with: | |
target-ros2-distro: humble | |
package-name: | | |
clearpath_diagnostics | |
clearpath_generator_robot | |
clearpath_robot | |
clearpath_sensors | |
vcs-repo-file-url: dependencies.repos |