-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Workflows * Linting * README badges
- Loading branch information
Showing
9 changed files
with
365 additions
and
219 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,38 @@ | ||
name: Ubuntu 22.04 Iron Build | ||
|
||
on: | ||
pull_request: | ||
push: | ||
branches: | ||
- iron | ||
|
||
jobs: | ||
Build: | ||
runs-on: ubuntu-latest | ||
container: | ||
image: osrf/ros:iron-desktop-full-jammy | ||
|
||
steps: | ||
- name: Update | ||
run: apt update | ||
|
||
- name: Install PIP | ||
run: apt install -y python3-pip lcov | ||
|
||
- name: Install colcon tools | ||
run: python3 -m pip install colcon-lcov-result colcon-coveragepy-result | ||
|
||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
|
||
- name: Run Tests | ||
uses: ros-tooling/[email protected] | ||
with: | ||
target-ros2-distro: iron | ||
|
||
- name: Upload Logs | ||
uses: actions/upload-artifact@v1 | ||
with: | ||
name: colcon-logs | ||
path: ros_ws/log | ||
if: always() |
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,38 @@ | ||
name: Ubuntu 22.04 Rolling Build | ||
|
||
on: | ||
pull_request: | ||
push: | ||
branches: | ||
- iron | ||
|
||
jobs: | ||
Build: | ||
runs-on: ubuntu-latest | ||
container: | ||
image: osrf/ros:rolling-desktop-full-jammy | ||
|
||
steps: | ||
- name: Update | ||
run: apt update | ||
|
||
- name: Install PIP | ||
run: apt install -y python3-pip lcov | ||
|
||
- name: Install colcon tools | ||
run: python3 -m pip install colcon-lcov-result colcon-coveragepy-result | ||
|
||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
|
||
- name: Run Tests | ||
uses: ros-tooling/[email protected] | ||
with: | ||
target-ros2-distro: rolling | ||
|
||
- name: Upload Logs | ||
uses: actions/upload-artifact@v1 | ||
with: | ||
name: colcon-logs | ||
path: ros_ws/log | ||
if: always() |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,6 @@ | ||
## covariance_geometry_ros | ||
|
||
[![Ubuntu 22.04 Iron Build](https://github.com/giafranchini/covariance_geometry_ros/actions/workflows/iron.yaml/badge.svg)](https://github.com/giafranchini/covariance_geometry_ros/actions/workflows/iron.yaml) | ||
[![Ubuntu 22.04 Rolling Build](https://github.com/giafranchini/covariance_geometry_ros/actions/workflows/rolling.yaml/badge.svg)](https://github.com/giafranchini/covariance_geometry_ros/actions/workflows/rolling.yaml) | ||
|
||
A simple ROS2 wrapper for poses and covariances composition based on covariance_geometry library. |
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
Oops, something went wrong.