-
Notifications
You must be signed in to change notification settings - Fork 1
38 lines (37 loc) · 1.15 KB
/
test.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
name: Build ROS Deb
run-name: ${{ github.actor }} is testing out building Debs from ROS package
on:
workflow_dispatch:
push:
jobs:
jammy-humble-amd64:
runs-on: ubuntu-22.04
steps:
- uses: ros-tooling/[email protected]
with:
use-ros2-testing: true
#- uses: jspricke/ros-deb-builder-action@main
# Use forked version of action that allows network
# access by patching sbuild after its installed but
# before it is built.
# See https://github.com/jspricke/ros-deb-builder-action/issues/38
- uses: aosmw/ros-deb-builder-action@feature/mw/enable_network
with:
DEB_DISTRO: jammy
DEB_ARCH: amd64
ROS_DISTRO: humble
#SBUILD_CONF: ENABLE_NETWORK
REPOS_FILE: .github/sources.repos
noble-jazzy-amd64:
runs-on: ubuntu-24.04
steps:
- uses: ros-tooling/[email protected]
with:
use-ros2-testing: true
- uses: jspricke/ros-deb-builder-action@main
with:
DEB_DISTRO: noble
DEB_ARCH: amd64
ROS_DISTRO: jazzy
SBUILD_CONF: $enable_network = 1;
REPOS_FILE: .github/sources.repos