-
Notifications
You must be signed in to change notification settings - Fork 95
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Install the test assets to the share directory; otherwise the tests cannot locate the files to install * Check for the systemd config file, not upstart. Upstart check left but commented-out for legacy & reference * Add github workflows * Modify CI to make sure tests are run * Specify container * Roll back to official template (https://github.com/marketplace/actions/ros-2-ci-action), explicitly set skip-tests to false * Add CI for other supported ROS distros * Remove Foxy * Improve workspace fallback * Fix build status in the README * Set branches for CI (this repo also has ROS 1 branches we don't care about testing with the new CI)
- Loading branch information
1 parent
12340f4
commit 67ffc02
Showing
5 changed files
with
60 additions
and
7 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
name: robot_upstart_ci | ||
|
||
on: | ||
push: | ||
branches: [foxy-devel] | ||
pull_request: | ||
branches: [foxy-devel] | ||
|
||
jobs: | ||
jazzy_ci: | ||
name: Jazzy | ||
runs-on: ubuntu-24.04 | ||
steps: | ||
- uses: actions/checkout@v2.3.4 | ||
- uses: ros-tooling/setup-ros@v0.7 | ||
with: | ||
required-ros-distributions: jazzy | ||
- uses: ros-tooling/action-ros-ci@v0.3 | ||
id: action_ros_ci_step | ||
with: | ||
target-ros2-distro: jazzy | ||
import-token: ${{ secrets.GITHUB_TOKEN }} | ||
skip-tests: false | ||
package-name: | ||
robot_upstart | ||
|
||
humble_ci: | ||
name: Humble | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- uses: actions/checkout@v2.3.4 | ||
- uses: ros-tooling/setup-ros@v0.7 | ||
with: | ||
required-ros-distributions: humble | ||
- uses: ros-tooling/action-ros-ci@v0.3 | ||
id: action_ros_ci_step | ||
with: | ||
target-ros2-distro: humble | ||
import-token: ${{ secrets.GITHUB_TOKEN }} | ||
skip-tests: false | ||
package-name: | ||
robot_upstart |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
robot_upstart [![Build Status](https://travis-ci.org/clearpathrobotics/robot_upstart.svg?branch=jade-devel)](https://travis-ci.org/clearpathrobotics/robot_upstart) | ||
============= | ||
# robot_upstart [![robot_upstart_ci](https://github.com/clearpathrobotics/robot_upstart/actions/workflows/ci.yml/badge.svg?branch=foxy-devel)](https://github.com/clearpathrobotics/robot_upstart/actions/workflows/ci.yml) | ||
|
||
Clearpath Robotics presents a suite of scripts to assist with launching background ROS processes on Ubuntu Linux PCs. Please see the [generated documentation](http://docs.ros.org/latest-available/api/robot_upstart/html/) and [ROS Wiki](http://wiki.ros.org/robot_upstart). |
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
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
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