-
Notifications
You must be signed in to change notification settings - Fork 854
50 lines (37 loc) · 1.29 KB
/
bloom.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
48
49
50
name: bloom
on: [push, pull_request]
jobs:
build_linux:
name: "Ubuntu (${{ matrix.ros_distribution }})"
runs-on: ubuntu-latest
strategy:
matrix:
include:
- docker_image: ubuntu:22.04
ros_distribution: humble
- docker_image: ubuntu:24.04
ros_distribution: jazzy
container:
image: ${{ matrix.docker_image }}
env:
DEBIAN_FRONTEND: noninteractive
steps:
- name: install core dependencies
run: |
apt update
apt install -y --no-install-recommends git ca-certificates
- uses: actions/checkout@v4
- uses: ros-tooling/[email protected]
- name: install build tool dependencies
run: |
apt install -y --no-install-recommends devscripts equivs python3-bloom
- name: bloom
run: |
rosdep update
bloom-generate rosdebian --ros-distro ${{ matrix.ros_distribution }}
mk-build-deps
apt install -y --no-install-recommends ./ros-${{ matrix.ros_distribution }}-*-build-deps_*_all.deb
dpkg-buildpackage -b
- name: install bloomed packages
run: |
apt install -y --no-install-recommends ../ros-${{ matrix.ros_distribution }}-*_*.deb ../ros-${{ matrix.ros_distribution }}-*-dbgsym_*.ddeb