Skip to content

Commit d5226f1

Browse files
authored
Update references of main to gz-sensors10 (#549)
--------- Signed-off-by: Ian Chen <[email protected]>
1 parent 278b03e commit d5226f1

File tree

4 files changed

+17
-13
lines changed

4 files changed

+17
-13
lines changed

.github/workflows/bazel.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,13 @@
11
name: Bazel CI
22
on:
33
push:
4-
branches: [gz-sensors9, main]
4+
branches:
5+
- 'gz-sensors[1-9]?[0-9]'
6+
- 'main'
57
pull_request:
6-
branches: [gz-sensors9, main]
8+
branches:
9+
- 'gz-sensors[1-9]?[0-9]'
10+
- 'main'
711

812
concurrency:
913
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@
99

1010
Build | Status
1111
-- | --
12-
Test coverage | [![codecov](https://codecov.io/gh/gazebosim/gz-sensors/tree/main/graph/badge.svg)](https://codecov.io/gh/gazebosim/gz-sensors/tree/main)
13-
Ubuntu Noble | [![Build Status](https://build.osrfoundation.org/buildStatus/icon?job=gz_sensors-ci-main-noble-amd64)](https://build.osrfoundation.org/job/gz_sensors-ci-main-noble-amd64)
14-
Homebrew | [![Build Status](https://build.osrfoundation.org/buildStatus/icon?job=gz_sensors-ci-main-homebrew-amd64)](https://build.osrfoundation.org/job/gz_sensors-ci-main-homebrew-amd64)
15-
Windows | [![Build Status](https://build.osrfoundation.org/buildStatus/icon?job=gz_sensors-main-clowin)](https://build.osrfoundation.org/job/gz_sensors-main-clowin/)
12+
Test coverage | [![codecov](https://codecov.io/gh/gazebosim/gz-sensors/tree/gz-sensors9/graph/badge.svg)](https://codecov.io/gh/gazebosim/gz-sensors/tree/gz-sensors9)
13+
Ubuntu Noble | [![Build Status](https://build.osrfoundation.org/buildStatus/icon?job=gz_sensors-ci-gz-sensors9-noble-amd64)](https://build.osrfoundation.org/job/gz_sensors-ci-gz-sensors9-noble-amd64)
14+
Homebrew | [![Build Status](https://build.osrfoundation.org/buildStatus/icon?job=gz_sensors-ci-gz-sensors9-homebrew-amd64)](https://build.osrfoundation.org/job/gz_sensors-ci-gz-sensors9-homebrew-amd64)
15+
Windows | [![Build Status](https://build.osrfoundation.org/buildStatus/icon?job=gz_sensors-9-cnlwin)](https://build.osrfoundation.org/job/gz_sensors-9-cnlwin/)
1616

1717
Gazebo Sensors, a component of [Gazebo](https://gazebosim.org),
1818
provides numerous sensor models
@@ -67,11 +67,11 @@ models into sensor streams.
6767

6868
# Install
6969

70-
See the [installation tutorial](https://gazebosim.org/api/sensors/9/installation.html).
70+
See the [installation tutorial](https://gazebosim.org/api/sensors/10/installation.html).
7171

7272
# Usage
7373

74-
Please refer to the [examples directory](https://github.com/gazebosim/gz-sensors/tree/main/examples).
74+
Please refer to the [examples directory](https://github.com/gazebosim/gz-sensors/tree/gz-sensors10/examples).
7575

7676
A list of sensors and SDF examples can be found in the [SDF specification](http://sdformat.org/spec?ver=1.12&elem=sensor)
7777

tutorials/boundingbox_camera.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ You will see output like this:
216216
To visualize the output from different SDF file, you can include the model of the sensor in any SDF file then run it via gz sim and open the `Image Display` plugin and select the topic you specified in the `<topic>` tag.
217217

218218

219-
Taking a look at the [SDF](https://github.com/gazebosim/gz-sim/blob/main/examples/worlds/boundingbox_camera.sdf) file for this example.
219+
Taking a look at the [SDF](https://github.com/gazebosim/gz-sim/blob/gz-sensors10/examples/worlds/boundingbox_camera.sdf) file for this example.
220220

221221

222222
## Object Detection Dataset Generation

tutorials/custom_sensors.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,9 @@ Let's go over the creation of a custom
4747
the total distance travelled by a robot.
4848

4949
This example is located at
50-
[gz-sensors/examples/custom_sensor](https://github.com/gazebosim/gz-sensors/tree/main/examples/custom_sensor),
50+
[gz-sensors/examples/custom_sensor](https://github.com/gazebosim/gz-sensors/tree/gz-sensors10/examples/custom_sensor),
5151
and the integration with Gazebo is at
52-
[gz-sim/examples/plugins/custom_sensor_system](https://github.com/gazebosim/gz-sim/tree/main/examples/plugin/custom_sensor_system).
52+
[gz-sim/examples/plugins/custom_sensor_system](https://github.com/gazebosim/gz-sim/tree/gz-sensors10/examples/plugin/custom_sensor_system).
5353

5454
Wherever "odometer" is used, that can be substituted for any other custom sensor
5555
type. Seismometer? Breathalyzer? Just adapt the logic to your needs.
@@ -86,7 +86,7 @@ The sensor consists of a class, `Odometer`, which inherits from
8686
`gz::sensors::Sensor`.
8787

8888
Take a look at
89-
[gz-sensors/examples/custom_sensor](https://github.com/gazebosim/gz-sensors/tree/main/examples/custom_sensor)
89+
[gz-sensors/examples/custom_sensor](https://github.com/gazebosim/gz-sensors/tree/gz-sensors10/examples/custom_sensor)
9090
for the full code. Here are some important pointers:
9191

9292
* Be sure to link your sensor to Gazebo Sensors
@@ -105,7 +105,7 @@ plugin that instantiates the sensor and updates it periodically with data from
105105
simulation.
106106

107107
Take a look at
108-
[gz-sim/examples/plugins/custom_sensor_system](https://github.com/gazebosim/gz-sim/tree/main/examples/plugin/custom_sensor_system).
108+
[gz-sim/examples/plugins/custom_sensor_system](https://github.com/gazebosim/gz-sim/tree/gz-sensors10/examples/plugin/custom_sensor_system).
109109
for the full code. Here are some important pointers:
110110

111111
* Check for new entities that have `gz::sim::components::CustomSensor`

0 commit comments

Comments
 (0)