Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): remove autoware.repos #58

Merged
merged 1 commit into from
Aug 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .github/workflows/build-and-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,5 +40,4 @@ jobs:
with:
package-name: ${{ steps.list_packages.outputs.packages }}
target-ros2-distro: ${{ matrix.rosdistro }}
vcs-repo-file-url: autoware.repos
import-token: ${{ secrets.GITHUB_TOKEN }}
3 changes: 0 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,6 @@ COLCON_IGNORE
# VSCode
.vscode

# Clang
compile_flags.txt

.cache
html
latex
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,10 @@ AWViz-ROS features a ROS viewer for [Autoware](https://autoware.org) powered by
git clone [email protected]:ktro2828/awviz-ros && cd awviz-ros

# import external dependencies
mkdir src && vcs import src < autoware.repos
rosdep update
rosdep install -y --from-paths . --ignore-src --rosdistro $ROS_DISTRO

# build awviz
# build awviz packages
colon build --symlink-install --cmake-args -DCMAKE_BUILD_TYPE=Release
source install/setup.bash
```
Expand Down
5 changes: 0 additions & 5 deletions autoware.repos

This file was deleted.

3 changes: 2 additions & 1 deletion awviz/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,12 @@ endif()

# -------- find dependencies --------
find_package(ament_cmake_auto REQUIRED)
find_package(rerun_sdk REQUIRED)
ament_auto_find_build_dependencies()

# -------- add executable --------
add_executable(${PROJECT_NAME} src/main.cpp)
target_link_libraries(${PROJECT_NAME} awviz_common::awviz_common)
target_link_libraries(${PROJECT_NAME} awviz_common::awviz_common rerun_sdk)

# -------- install executable --------
install(TARGETS ${PROJECT_NAME}
Expand Down
1 change: 0 additions & 1 deletion awviz/package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@

<depend>rclcpp</depend>
<depend>awviz_common</depend>
<depend>rerun_sdk</depend>

<test_depend>ament_lint_auto</test_depend>
<test_depend>ament_lint_common</test_depend>
Expand Down
1 change: 1 addition & 0 deletions awviz_plugin/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ endif()

# -------- find dependencies --------
find_package(ament_cmake_auto REQUIRED)
find_package(rerun_sdk REQUIRED)
ament_auto_find_build_dependencies()

# -------- link targets --------
Expand Down
2 changes: 1 addition & 1 deletion awviz_plugin/package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
<depend>awviz_common</depend>
<depend>cv_bridge</depend>
<depend>pluginlib</depend>
<depend>rerun_sdk</depend>
<depend>sensor_msgs</depend>
<depend>rclcpp</depend>
<depend>autoware_perception_msgs</depend>

<test_depend>ament_lint_auto</test_depend>
Expand Down
Loading