-
Notifications
You must be signed in to change notification settings - Fork 60
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge commit 'ada77d59ffd6545105e40e88e4ad50050062a3d6' into feature/…
…synchronized_action
- Loading branch information
Showing
141 changed files
with
1,341 additions
and
267 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
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
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,53 @@ | ||
ARG ROS_DISTRO="humble" | ||
|
||
# cspell: ignore impactaky deno BUILDPLATFORM TARGETARCH | ||
|
||
FROM --platform=${BUILDPLATFORM} impactaky/mc-ubuntu22.04-${TARGETARCH}-host:2.1.0 AS mimic-host | ||
FROM ros:${ROS_DISTRO} as build-stage | ||
|
||
SHELL ["/bin/bash", "-c"] | ||
ENV DEBIAN_FRONTEND=noninteractive | ||
ENV DEBCONF_NOWARNINGS=yes | ||
|
||
COPY --from=mimic-host / /mimic-cross | ||
RUN /mimic-cross/mimic-cross.deno/setup.sh | ||
|
||
RUN --mount=type=cache,id=apt-cache-arm64,target=/var/cache/apt,sharing=locked \ | ||
--mount=type=cache,id=apt-lib-arm64,target=/var/lib/apt,sharing=locked \ | ||
sudo apt-get update && sudo apt-get -y install python3-pip python3-rospkg python3-rosdep software-properties-common ccache | ||
# cspell: ignore kisak | ||
RUN --mount=type=cache,id=apt-cache-arm64,target=/var/cache/apt,sharing=locked \ | ||
--mount=type=cache,id=apt-lib-arm64,target=/var/lib/apt,sharing=locked \ | ||
add-apt-repository ppa:kisak/kisak-mesa -y | ||
RUN --mount=type=cache,id=apt-cache-arm64,target=/var/cache/apt,sharing=locked \ | ||
--mount=type=cache,id=apt-lib-arm64,target=/var/lib/apt,sharing=locked \ | ||
apt-get update && apt-get install libegl-mesa0 -y | ||
|
||
RUN rm -f /etc/apt/apt.conf.d/docker-clean && \ | ||
echo 'Binary::apt::APT::Keep-Downloaded-Packages "true";' > /etc/apt/apt.conf.d/keep-cache | ||
|
||
WORKDIR /home/ubuntu/Desktop/scenario_simulator_ws/src/scenario_simulator | ||
COPY . $WORKDIR | ||
|
||
WORKDIR /home/ubuntu/Desktop/scenario_simulator_ws/ | ||
RUN mkdir -p /home/ubuntu/Desktop/scenario_simulator_ws/src/scenario_simulator/external | ||
WORKDIR /home/ubuntu/Desktop/scenario_simulator_ws/src/scenario_simulator | ||
RUN vcs import external < dependency_${ROS_DISTRO}.repos | ||
WORKDIR /home/ubuntu/Desktop/scenario_simulator_ws/src | ||
RUN --mount=type=cache,id=apt-cache-arm64,target=/var/cache/apt,sharing=locked \ | ||
--mount=type=cache,id=apt-lib-arm64,target=/var/lib/apt,sharing=locked \ | ||
source /opt/ros/${ROS_DISTRO}/setup.bash \ | ||
&& apt-get update \ | ||
&& rosdep install -iy --from-paths . --rosdistro ${ROS_DISTRO} | ||
|
||
WORKDIR /home/ubuntu/Desktop/scenario_simulator_ws | ||
|
||
RUN source /opt/ros/${ROS_DISTRO}/setup.bash && \ | ||
colcon build --symlink-install \ | ||
--cmake-args \ | ||
-DCMAKE_BUILD_TYPE=Release \ | ||
-DBUILD_CPP_MOCK_SCENARIOS=ON | ||
COPY ./docker-entrypoint.sh / | ||
RUN chmod a+x /docker-entrypoint.sh | ||
|
||
ENTRYPOINT ["/docker-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
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 |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?> | ||
<package format="3"> | ||
<name>arithmetic</name> | ||
<version>1.10.0</version> | ||
<version>1.11.3</version> | ||
<description>arithmetic library for scenario_simulator_v2</description> | ||
<maintainer email="[email protected]">Tatsuya Yamasaki</maintainer> | ||
<license>Apache License 2.0</license> | ||
|
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 |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?> | ||
<package format="3"> | ||
<name>geometry</name> | ||
<version>1.10.0</version> | ||
<version>1.11.3</version> | ||
<description>geometry math library for scenario_simulator_v2 application</description> | ||
<maintainer email="[email protected]">Masaya Kataoka</maintainer> | ||
<license>Apache License 2.0</license> | ||
|
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 |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?> | ||
<package format="3"> | ||
<name>scenario_simulator_exception</name> | ||
<version>1.10.0</version> | ||
<version>1.11.3</version> | ||
<description>Exception types for scenario simulator</description> | ||
<maintainer email="[email protected]">Tatsuya Yamasaki</maintainer> | ||
<license>Apache License 2.0</license> | ||
|
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 |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?> | ||
<package format="3"> | ||
<name>simple_junit</name> | ||
<version>1.10.0</version> | ||
<version>1.11.3</version> | ||
<description>Lightweight JUnit library for ROS 2</description> | ||
<maintainer email="[email protected]">Masaya Kataoka</maintainer> | ||
<maintainer email="[email protected]">Tatsuya Yamasaki</maintainer> | ||
|
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 |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?> | ||
<package format="3"> | ||
<name>status_monitor</name> | ||
<version>1.10.0</version> | ||
<version>1.11.3</version> | ||
<description>none</description> | ||
<maintainer email="[email protected]">Tatsuya Yamasaki</maintainer> | ||
<license>Apache License 2.0</license> | ||
|
Oops, something went wrong.