-
Notifications
You must be signed in to change notification settings - Fork 5
47 lines (45 loc) · 1.29 KB
/
nightly.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
name: Nightly
on:
schedule:
# Run once per day to detect broken dependencies.
- cron: '33 6 * * *'
workflow_dispatch:
inputs:
name:
description: "Manual trigger"
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
- docker_image: ubuntu:jammy
ros_distribution: rolling
- docker_image: ubuntu:jammy
ros_distribution: iron
- docker_image: ubuntu:jammy
ros_distribution: humble
- docker_image: ubuntu:24.04
ros_distribution: jazzy
container:
image: ${{ matrix.docker_image }}
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: "micro_ros_utilities"
target-ros2-distro: ${{ matrix.ros_distribution }}
colcon-defaults: |
{
"build": {
"mixin": [ "coverage-gcc" ]
}
}
colcon-mixin-repository: https://raw.githubusercontent.com/colcon/colcon-mixin-repository/master/index.yaml
- uses: codecov/codecov-action@v1
with:
file: ros_ws/lcov/total_coverage.info