Skip to content

Commit 100d5c9

Browse files
authored
ci.yml: use noble, disable jammy (#516)
* tutorials: change heading depth * disable codecov Signed-off-by: Steve Peters <[email protected]>
1 parent d4dfd61 commit 100d5c9

File tree

3 files changed

+5
-17
lines changed

3 files changed

+5
-17
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -9,20 +9,6 @@ on:
99
- 'main'
1010

1111
jobs:
12-
jammy-ci:
13-
runs-on: ubuntu-latest
14-
name: Ubuntu Jammy CI
15-
steps:
16-
- name: Checkout
17-
uses: actions/checkout@v4
18-
- name: Compile and test
19-
id: ci
20-
uses: gazebo-tooling/action-gz-ci@jammy
21-
with:
22-
codecov-enabled: true
23-
cppcheck-enabled: true
24-
cpplint-enabled: true
25-
doxygen-enabled: true
2612
noble-ci:
2713
runs-on: ubuntu-latest
2814
name: Ubuntu Noble CI
@@ -33,5 +19,7 @@ jobs:
3319
id: ci
3420
uses: gazebo-tooling/action-gz-ci@noble
3521
with:
22+
# codecov-enabled: true
3623
cppcheck-enabled: true
3724
cpplint-enabled: true
25+
doxygen-enabled: true

tutorials/boundingbox_camera.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ gz sim boundingbox_camera.sdf
241241

242242
you will find that the dataset is saved in the given path
243243

244-
#### Dataset Demo
244+
### Dataset Demo
245245

246246
![dataset_generation](files/boundingbox_camera/object_detection_dataset.gif)
247247

tutorials/segmentation_camera.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ As we can see, we define a sensor with the following SDF elements:
9696
* `<visualize>`: Whether the sensor should be visualized in the GUI (indicated by true) or not (indicated by false). This is currently unused by Gazebo.
9797
* `<topic>`: The name of the topic which will be used to publish the sensor data.
9898

99-
#### Label map & Colored map
99+
### Label map & Colored map
100100
The segmentation sensor creates 2 maps (or images):
101101

102102
- The `label map`: For semantic segmentation, each pixel contains the object's label. For panoptic segmentation, each pixel contains the label and object's instance count.
@@ -271,7 +271,7 @@ To save the output of the sensor as segmentation dataset samples, we add the `<s
271271
In the example world we just ran (`segmentation_camera.sdf`), you'll notice that the panoptic camera is saving data to `segmentation_data/instance_camera`, while the semenatic camera is saving data to
272272
`segmentation_data/semantic_camera` (these are relative paths).
273273

274-
#### Dataset Demo
274+
### Dataset Demo
275275

276276
Up to this point, we have left simulation paused.
277277
Go ahead and start simulation by pressing the play button at the bottom-left part of the GUI.

0 commit comments

Comments
 (0)