-
Notifications
You must be signed in to change notification settings - Fork 3
40 lines (32 loc) · 862 Bytes
/
iron.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
name: Ubuntu 22.04 Iron Build
on:
pull_request:
push:
branches:
- iron
jobs:
Build:
runs-on: self-hosted
container:
image: osrf/ros:iron-desktop-full-jammy
steps:
- name: Update
run: apt-get update
- name: Install PIP
run: apt-get 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@v4
- name: Run Tests
uses: ros-tooling/[email protected]
with:
target-ros2-distro: iron
import-token: ${{ secrets.GITHUB_TOKEN }}
vcs-repo-file-url: "${{ github.workspace }}/iron.repos"
- name: Upload Logs
uses: actions/upload-artifact@v4
with:
name: colcon-logs
path: ros_ws/log
if: failure()