Skip to content

Commit f61bc6a

Browse files
authored
add jazzy CI (#29)
Signed-off-by: ijnek <[email protected]>
1 parent 4662df4 commit f61bc6a

File tree

3 files changed

+32
-4
lines changed

3 files changed

+32
-4
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: Build and Test (jazzy)
2+
3+
on:
4+
# Triggers the workflow on push
5+
push:
6+
branches: [ jazzy ]
7+
8+
# Triggers the workflow on pull requests
9+
pull_request:
10+
branches: [ jazzy ]
11+
12+
# Allows you to run this workflow manually from the Actions tab
13+
workflow_dispatch:
14+
15+
jobs:
16+
build:
17+
runs-on: ubuntu-latest
18+
container:
19+
image: ubuntu:noble
20+
21+
steps:
22+
- uses: ros-tooling/[email protected]
23+
with:
24+
use-ros2-testing: true
25+
- uses: ros-tooling/[email protected]
26+
with:
27+
target-ros2-distro: jazzy

.github/workflows/build_and_test_rolling.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ name: Build and Test (rolling)
33
on:
44
# Triggers the workflow on push
55
push:
6-
branches: [ ros2 ]
6+
branches: [ rolling ]
77

88
# Triggers the workflow on pull requests
99
pull_request:
10-
branches: [ ros2 ]
10+
branches: [ rolling ]
1111

1212
# Allows you to run this workflow manually from the Actions tab
1313
workflow_dispatch:
@@ -16,7 +16,7 @@ jobs:
1616
build:
1717
runs-on: ubuntu-latest
1818
container:
19-
image: ubuntu:jammy
19+
image: ubuntu:noble
2020

2121
steps:
2222
- uses: ros-tooling/[email protected]

README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22

33
[![Build and Test (humble)](../../actions/workflows/build_and_test_humble.yaml/badge.svg?branch=humble)](../../actions/workflows/build_and_test_humble.yaml?query=branch:humble)
44
[![Build and Test (iron)](../../actions/workflows/build_and_test_iron.yaml/badge.svg?branch=iron)](../../actions/workflows/build_and_test_iron.yaml?query=branch:iron)
5-
[![Build and Test (rolling)](../../actions/workflows/build_and_test_rolling.yaml/badge.svg?branch=ros2)](../../actions/workflows/build_and_test_rolling.yaml?query=branch:ros2)
5+
[![Build and Test (jazzy)](../../actions/workflows/build_and_test_jazzy.yaml/badge.svg?branch=jazzy)](../../actions/workflows/build_and_test_jazzy.yaml?query=branch:jazzy)
6+
[![Build and Test (rolling)](../../actions/workflows/build_and_test_rolling.yaml/badge.svg?branch=rolling)](../../actions/workflows/build_and_test_rolling.yaml?query=branch:rolling)
67

78
Basic ROS2 wrapper for the zbar (http://zbar.sourceforge.net/) barcode reader library. Reads image stream from `image` topic, and outputs detected barcodes to `barcode` topic. Works with 1D and 2D barcodes.
89

0 commit comments

Comments
 (0)