-
Notifications
You must be signed in to change notification settings - Fork 3.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' into feature/remove_enablePlannerDynamicSwitch
Conflicts: ros/src/computing/planning/mission/packages/lane_planner/launch/lane_select.launch ros/src/computing/planning/mission/packages/lane_planner/nodes/lane_select/lane_select_core.cpp
- Loading branch information
Showing
932 changed files
with
47,280 additions
and
66,077 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
.git* | ||
ros/build* | ||
ros/devel* | ||
ros/install* | ||
ros/log* | ||
ros/coverage_* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,17 @@ | ||
[submodule "ros/src/sensing/drivers/lidar/packages/robosense"] | ||
path = ros/src/sensing/drivers/lidar/packages/robosense | ||
url = https://github.com/CPFL/robosense | ||
branch = develop-curves-function | ||
[submodule "ros/src/msgs/lgsvl_msgs"] | ||
path = ros/src/msgs/lgsvl_msgs | ||
url = https://github.com/lgsvl/lgsvl_msgs.git | ||
[submodule "ros/src/sensing/drivers/lidar/packages/ouster"] | ||
path = ros/src/sensing/drivers/lidar/packages/ouster | ||
url = https://github.com/CPFL/ouster | ||
branch = autoware_branch | ||
[submodule "ros/src/simulation/gazebo_simulator/worlds/external/osrf_citysim"] | ||
path = ros/src/simulation/gazebo_simulator/worlds/external/osrf_citysim | ||
url = https://github.com/CPFL/osrf_citysim.git | ||
[submodule "ros/src/simulation/gazebo_simulator/worlds/external/car_demo"] | ||
path = ros/src/simulation/gazebo_simulator/worlds/external/car_demo | ||
url = https://github.com/CPFL/car_demo.git |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
ARG FROM_ARG | ||
ARG ROS_DISTRO | ||
FROM ${FROM_ARG} | ||
|
||
ENV USERNAME autoware | ||
|
||
# Build Autoware | ||
COPY --chown=autoware ./ /home/$USERNAME/Autoware | ||
RUN su -c "bash -c 'source /opt/ros/$ROS_DISTRO/setup.bash; \ | ||
cd /home/$USERNAME/Autoware/ros; \ | ||
./colcon_release'" $USERNAME | ||
RUN echo "source /home/$USERNAME/Autoware/ros/install/local_setup.bash" >> \ | ||
/home/$USERNAME/.bashrc | ||
|
||
COPY ./docker/generic/entrypoint.sh /tmp | ||
ENTRYPOINT ["/tmp/entrypoint.sh"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,95 @@ | ||
# | ||
# Install ROS packages used by Autoware. | ||
# | ||
ARG ROS_DISTRO | ||
FROM ros:$ROS_DISTRO | ||
|
||
# | ||
# Install tools and libraries required by Autoware | ||
# | ||
RUN apt-get update && apt-get install -y \ | ||
cmake-curses-gui \ | ||
cmake-qt-gui \ | ||
dbus-x11 \ | ||
dmz-cursor-theme \ | ||
fonts-dejavu \ | ||
gconf2 \ | ||
gnome-terminal \ | ||
gstreamer0.10-plugins-good \ | ||
language-pack-en \ | ||
libarmadillo-dev \ | ||
libcanberra-gtk-module \ | ||
libcanberra-gtk3-0 \ | ||
libcanberra-gtk3-module \ | ||
libdbus-glib-1-2 \ | ||
libgflags-dev \ | ||
libglew-dev \ | ||
libgoogle-glog-dev \ | ||
libgoogle-perftools-dev \ | ||
libgsl0-dev \ | ||
libmosquitto-dev \ | ||
libopencv-dev \ | ||
libopenni2-dev \ | ||
libpcap-dev \ | ||
libssh2-1-dev \ | ||
locales \ | ||
pulseaudio \ | ||
python-flask \ | ||
python-requests \ | ||
python3-colcon-common-extensions \ | ||
python3-pip \ | ||
python3-setuptools \ | ||
sudo \ | ||
tmux \ | ||
v4l-utils \ | ||
vim \ | ||
wget && \ | ||
pip3 install -U setuptools && \ | ||
rm -rf /var/lib/apt/lists/* | ||
|
||
# | ||
# Configure environmet | ||
# | ||
|
||
RUN update-locale LANG=en_US.UTF-8 LC_MESSAGES=POSIX | ||
|
||
# Add user | ||
ENV USERNAME autoware | ||
ARG USER_ID=1000 | ||
ARG GROUP_ID=15214 | ||
ENV PULSE_SERVER /run/pulse/native | ||
|
||
RUN groupadd --gid $GROUP_ID $USERNAME && \ | ||
useradd --gid $GROUP_ID -m $USERNAME && \ | ||
echo "$USERNAME:$USERNAME" | chpasswd && \ | ||
usermod --shell /bin/bash $USERNAME && \ | ||
usermod -aG sudo $USERNAME && \ | ||
usermod --uid $USER_ID $USERNAME && \ | ||
echo "$USERNAME ALL=(ALL) NOPASSWD:ALL" >> /etc/sudoers.d/$USERNAME && \ | ||
chmod 0440 /etc/sudoers.d/$USERNAME | ||
|
||
# Startup scripts | ||
ENV LANG="en_US.UTF-8" | ||
RUN echo "source /opt/ros/$ROS_DISTRO/setup.bash" >> /etc/profile.d/ros.sh && \ | ||
# Fix for QT and X server errors | ||
echo "export QT_X11_NO_MITSHM=1" >> /etc/profile.d/autoware.sh && \ | ||
# Set defaut language | ||
echo "export LANG=\"en_US.UTF-8\"" >> /etc/profile.d/autoware.sh | ||
|
||
# | ||
# Install ROS packages used by Autoware | ||
# | ||
COPY ./docker/generic/dependencies /tmp/dependencies | ||
RUN apt-get update && \ | ||
sed "s/\$ROS_DISTRO/$ROS_DISTRO/g" "/tmp/dependencies" | xargs apt-get install -y && \ | ||
rm -rf /var/lib/apt/lists/* | ||
|
||
RUN su -c "rosdep update" autoware | ||
|
||
# Configure terminal colors | ||
RUN su -c "gconftool-2 --set \"/apps/gnome-terminal/profiles/Default/use_theme_background\" --type bool false" autoware && \ | ||
su -c "gconftool-2 --set \"/apps/gnome-terminal/profiles/Default/use_theme_colors\" --type bool false" autoware && \ | ||
su -c "gconftool-2 --set \"/apps/gnome-terminal/profiles/Default/background_color\" --type string \"#000000\"" autoware | ||
|
||
COPY ./docker/generic/entrypoint.sh /tmp | ||
ENTRYPOINT ["/tmp/entrypoint.sh"] |
Oops, something went wrong.