Skip to content

Commit a9b9f5d

Browse files
authored
ci: updated the setup procedure for Build with Autoware (#224)
* fix: follow Autoware PR #6646 (src dir creation) * remove manual install for ros-humble-pacmod3-msgs
1 parent 405d95d commit a9b9f5d

File tree

1 file changed

+2
-7
lines changed

1 file changed

+2
-7
lines changed

docker/build_autoware.dockerfile

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -38,17 +38,12 @@ RUN git clone https://github.com/autowarefoundation/autoware.git && \
3838
git checkout "$AUTOWARE_VERSION" && \
3939
apt install python3.10-venv -y && \
4040
./setup-dev-env.sh -y --no-nvidia --no-cuda-drivers && \
41-
mkdir src && \
42-
vcs import src < autoware.repos && \
41+
mkdir -p src && \
42+
vcs import src < repositories/autoware.repos && \
4343
vcs export --exact src && \
4444
. /opt/ros/"$ROS_DISTRO"/setup.sh && \
4545
rosdep update && \
46-
apt-get install -y ros-humble-pacmod3-msgs=1.0.0-0jammy && \
47-
apt-get remove -y python3-gpg && \
4846
rosdep install -y --from-paths src --ignore-src --rosdistro "$ROS_DISTRO"
49-
# workarounds:
50-
# install ros-humble-pacmod3-msgs manually because rosdep tries to install ros-galactic-pacmod3-msgs
51-
# remove gpg because build error happens in ad_api_visualizers for some reasons...
5247

5348
# workaround: remove agnocast because CARET doesn't support Agnocast yet and Agnocast is not used by default
5449
RUN rm -rf autoware/src/middleware/external/agnocast

0 commit comments

Comments
 (0)