-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Seperate CI for focal and jammy. Added humble distro
Signed-off-by: Arne Nordmann <[email protected]>
- Loading branch information
Arne Nordmann
committed
Jun 5, 2022
1 parent
682ecb7
commit 4c4aba9
Showing
2 changed files
with
47 additions
and
6 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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
name: "CI: foxy, galactic, rolling" | ||
name: "CI: foxy, galactic on focal" | ||
|
||
on: | ||
push: | ||
|
@@ -16,15 +16,15 @@ jobs: | |
fail-fast: false | ||
matrix: | ||
os: [ ubuntu-20.04 ] | ||
ros_distribution: [ foxy, galactic, rolling ] | ||
ros_distribution: [ foxy, galactic ] | ||
steps: | ||
- uses: actions/checkout@v2.3.4 | ||
- uses: ros-tooling/setup-ros@v0.2 | ||
- uses: actions/checkout@v3 | ||
- uses: ros-tooling/setup-ros@v0.3 | ||
with: | ||
required-ros-distributions: ${{ matrix.ros_distribution }} | ||
- uses : ros-tooling/[email protected] | ||
with: | ||
package-name: "launch_system_modes system_modes system_modes_examples system_modes_msgs test_launch_system_modes " | ||
package-name: "launch_system_modes system_modes system_modes_examples system_modes_msgs test_launch_system_modes" | ||
target-ros2-distro: ${{ matrix.ros_distribution }} | ||
colcon-defaults: | | ||
{ | ||
|
@@ -36,6 +36,6 @@ jobs: | |
} | ||
} | ||
colcon-mixin-repository: https://raw.githubusercontent.com/colcon/colcon-mixin-repository/master/index.yaml | ||
- uses: codecov/codecov-action@v1.5.0 | ||
- uses: codecov/codecov-action@v3 | ||
with: | ||
file: ros_ws/lcov/total_coverage.info |
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,41 @@ | ||
name: "CI: humble-rolling on jammy" | ||
|
||
on: | ||
push: | ||
branches: [ master ] | ||
pull_request: | ||
branches: [ master ] | ||
schedule: | ||
# Run once per day to detect broken dependencies. | ||
- cron: '17 5 * * *' | ||
|
||
jobs: | ||
build: | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
os: [ ubuntu-22.04 ] | ||
ros_distribution: [ foxy, galactic ] | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: ros-tooling/[email protected] | ||
with: | ||
required-ros-distributions: ${{ matrix.ros_distribution }} | ||
- uses : ros-tooling/[email protected] | ||
with: | ||
package-name: "launch_system_modes system_modes system_modes_examples system_modes_msgs test_launch_system_modes" | ||
target-ros2-distro: ${{ matrix.ros_distribution }} | ||
colcon-defaults: | | ||
{ | ||
"build": { | ||
"mixin": ["coverage-gcc", "coverage-pytest"] | ||
}, | ||
"test": { | ||
"mixin": ["coverage-pytest"] | ||
} | ||
} | ||
colcon-mixin-repository: https://raw.githubusercontent.com/colcon/colcon-mixin-repository/master/index.yaml | ||
- uses: codecov/codecov-action@v3 | ||
with: | ||
file: ros_ws/lcov/total_coverage.info |