Skip to content

Commit

Permalink
feat!: Streamline naming scheme
Browse files Browse the repository at this point in the history
Co-authored-by: Philipp Caspers <[email protected]>
  • Loading branch information
AiyionPrime and philipp-caspers committed Jul 31, 2024
1 parent a54a932 commit 89f3bbb
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
uses: devcontainers/[email protected]
with:
cacheFrom: ghcr.io/vorausrobotik/voraus-ros-bridge-dev
runCmd: cargo ament-build --install-base install/voraus_bridge -- --release --verbose
runCmd: cargo ament-build --install-base install/voraus-ros-bridge -- --release --verbose
push: never
- name: Verify no build induced changes in Cargo.lock
run: git diff && git diff --quiet -- Cargo.lock
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ Run `cargo run --release`

## via ROS:

run `cargo ament-build --install-base install/voraus_bridge -- --release`.
run `cargo ament-build --install-base install/voraus-ros-bridge -- --release`.
Then `ros2 run voraus-ros-bridge voraus-ros-bridge`

### Custom message/service files
Expand Down
2 changes: 1 addition & 1 deletion package.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<package format="3">
<name>voraus_bridge</name>
<name>voraus-ros-bridge</name>
<version>0.1.0</version>
<description>Enables `voraus.core` integration within the ROS framework.</description>
<maintainer email="[email protected]">user</maintainer>
Expand Down
4 changes: 2 additions & 2 deletions tests/test_bridge.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ async fn e2e_opc_ua_var_to_ros_topic() {
println!("Starting ros bridge");
let mut bridge = Command::new("ros2")
.args(["run"])
.args(["voraus_ros_bridge"])
.args(["voraus_ros_bridge"])
.args(["voraus-ros-bridge"])
.args(["voraus-ros-bridge"])
.spawn()
.expect("Failed to run command");

Expand Down

0 comments on commit 89f3bbb

Please sign in to comment.