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

Fetch from main #71

Merged
merged 42 commits into from
Nov 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
42 commits
Select commit Hold shift + click to select a range
e65371a
Added missing documentations
AnonymDavid Nov 6, 2024
22f4d91
Added rosdep to scripts, removed deps from launcher
AnonymDavid Nov 6, 2024
ef17a5f
Removed symlink-install from scripts
AnonymDavid Nov 6, 2024
366bb7f
Updated mpc_camera_driver subrepo
AnonymDavid Nov 7, 2024
d882b9d
Moved behavior max speed to behaviorPlanner
AnonymDavid Nov 7, 2024
a1d8573
Added behavior publish to UI
AnonymDavid Nov 7, 2024
1a4e36f
Merge pull request #63 from jkk-research/60-crp-fix-mpc-camera-driver…
AnonymDavid Nov 7, 2024
ff0ba01
Removed maximum_speed from scenario
AnonymDavid Nov 7, 2024
a11815f
Merge pull request #62 from jkk-research/61-behavior-if-integration
AnonymDavid Nov 7, 2024
40153d5
Merge pull request #55 from jkk-research/53-crp-vil-documentations
AnonymDavid Nov 7, 2024
52acf81
Created core launch; buld_all uses build_core
AnonymDavid Nov 7, 2024
f31fb80
Lexus laucher uses core launcher
AnonymDavid Nov 7, 2024
6f9e6df
Add map_loader pacakge for lanelet2 visualization
mesmatyi Nov 8, 2024
071c18e
Add gitignore
mesmatyi Nov 8, 2024
071ee67
Remove unloaded files
mesmatyi Nov 8, 2024
a24728f
Merge pull request #59 from jkk-research/58-crp-fix-build-scripts
AnonymDavid Nov 8, 2024
43022e5
Add map loader fixes for build sucess
mesmatyi Nov 8, 2024
d21462e
Add CI first try
mesmatyi Nov 11, 2024
25e9a53
Copy
mesmatyi Nov 11, 2024
ffb414a
Just list
mesmatyi Nov 11, 2024
0467c7e
Copy back
mesmatyi Nov 11, 2024
a26a8a6
copy with normal names
mesmatyi Nov 11, 2024
8b806b6
Add pacmod install command
mesmatyi Nov 11, 2024
b096f77
Add submodule update
mesmatyi Nov 11, 2024
5578431
Add mods
mesmatyi Nov 11, 2024
34fb749
Add -y
mesmatyi Nov 11, 2024
78cd032
Add -yd
mesmatyi Nov 11, 2024
701a159
Simple build command
mesmatyi Nov 11, 2024
9d23895
Mod build test
mesmatyi Nov 11, 2024
98bcc5f
Shell as bash
mesmatyi Nov 11, 2024
f0b2690
Add shell to build command
mesmatyi Nov 11, 2024
30b5404
add pacmod install
mesmatyi Nov 11, 2024
04eb189
Add lat_ldm submodule
mesmatyi Nov 11, 2024
9ac2aac
Check for build fail
mesmatyi Nov 11, 2024
d3334b3
Move for sucess
mesmatyi Nov 11, 2024
1f15d28
Github Checkout v4
mesmatyi Nov 11, 2024
d6fd3ae
Remove dev branch from targets
mesmatyi Nov 11, 2024
0990e8e
Moded maploader to external
mesmatyi Nov 11, 2024
c3d7250
Remove viz msgs
mesmatyi Nov 11, 2024
ef9030a
Moved to commit
mesmatyi Nov 11, 2024
a6c36fa
Merge pull request #69 from jkk-research/67-crptg1-ci-setup
mesmatyi Nov 14, 2024
0e498bf
Merge pull request #65 from jkk-research/24-crp-remove-external-depen…
mesmatyi Nov 14, 2024
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
32 changes: 32 additions & 0 deletions .github/workflows/build_test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Build test

on:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
build:
runs-on: ubuntu-22.04
container: ros:humble-ros-base-jammy
steps:
- uses: actions/checkout@v4
- name: create a ros2 workspace
run: mkdir -p ros2_ws/src
- name: Off secrets
run: git config --global --add safe.directory '*'
- name: Pull selectes submoules
run: git submodule update --init --recursive external/autoware_msgs/ external/tier4_autoware_msgs/ crp_APL/planners/plan_lat_lane_follow_ldm/src/functionCode/
- name: copy the package to the workspace
run: cp -r crp_APL crp_CIL/ crp_VIL/ doc/ external/ scripts/ ros2_ws/src
- name: pacmod3 install
run: apt install apt-transport-https && sudo sh -c 'echo "deb [trusted=yes] https://s3.amazonaws.com/autonomoustuff-repo/ $(lsb_release -sc) main" > /etc/apt/sources.list.d/autonomoustuff-public.list' && apt update && apt install -y ros-humble-pacmod3
- name: install dependencies
run: cd ros2_ws && source /opt/ros/humble/setup.bash && rosdep update && rosdep install --from-paths src --ignore-src -r -y
shell: bash
- name: build the workspace
run: cd ros2_ws && source /opt/ros/humble/setup.bash && colcon build
shell: bash
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
logs/
build/
install/
install/

.vscode/
3 changes: 1 addition & 2 deletions crp_APL/crp_msgs/msg/Scenario.msg
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,4 @@ std_msgs/Header header
autoware_perception_msgs/PredictedObjects local_moving_objects
autoware_perception_msgs/PredictedObjects local_obstacles
crp_msgs/PathWithTrafficRules[] paths
nav_msgs/OccupancyGrid free_space
float32 maximum_speed
nav_msgs/OccupancyGrid free_space
1 change: 1 addition & 0 deletions crp_APL/ctrl_vehicle_control/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ endif()
# find dependencies
find_package(ament_cmake REQUIRED)
find_package(rclcpp REQUIRED)
find_package(rclpy REQUIRED)
find_package(std_msgs REQUIRED)
find_package(autoware_control_msgs REQUIRED)
find_package(pacmod3_msgs REQUIRED)
Expand Down
Empty file.
Loading