-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Bump 2.3.6 #1133
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
Bump 2.3.6 #1133
Changes from all commits
c76863c
bd9be8b
725f7bc
05ff03a
042a4e4
3aa30e5
bceb2ee
e2bf4b0
5475e0d
44385a2
3869c61
6c1703f
da785b7
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -21,12 +21,34 @@ RUN apt-get update && \ | |
| ros-${ROS_DISTRO}-cartographer-ros \ | ||
| ros-${ROS_DISTRO}-navigation2 \ | ||
| ros-${ROS_DISTRO}-nav2-bringup \ | ||
| ros-${ROS_DISTRO}-nav2-route \ | ||
| ros-${ROS_DISTRO}-turtlebot3-msgs \ | ||
| ros-${ROS_DISTRO}-dynamixel-sdk \ | ||
| ros-${ROS_DISTRO}-xacro \ | ||
| ros-${ROS_DISTRO}-hls-lfcd-lds-driver \ | ||
| ros-${ROS_DISTRO}-ld08-driver \ | ||
| ros-${ROS_DISTRO}-coin-d4-driver \ | ||
| ros-${ROS_DISTRO}-camera-ros \ | ||
| ros-${ROS_DISTRO}-urdf \ | ||
| && rm -rf /var/lib/apt/lists/* | ||
|
|
||
| RUN apt-get update && \ | ||
| apt-get install -y --no-install-recommends \ | ||
| python3-pip \ | ||
| python3-jinja2 \ | ||
| ninja-build \ | ||
| libgnutls28-dev \ | ||
| openssl \ | ||
| libtiff-dev \ | ||
| pybind11-dev \ | ||
| qtbase5-dev \ | ||
| libqt5core5a \ | ||
| libqt5widgets5 \ | ||
| cmake \ | ||
| python3-yaml \ | ||
| python3-ply \ | ||
| libglib2.0-dev \ | ||
| libgstreamer-plugins-base1.0-dev \ | ||
| && rm -rf /var/lib/apt/lists/* | ||
|
|
||
| WORKDIR ${COLCON_WS} | ||
|
|
@@ -39,10 +61,21 @@ RUN bash -c "source /opt/ros/${ROS_DISTRO}/setup.bash && \ | |
| cd ${COLCON_WS} && \ | ||
| colcon build --symlink-install --cmake-args -DCMAKE_BUILD_TYPE=Release" | ||
|
|
||
| RUN python3 -m pip config set global.break-system-packages true | ||
| RUN pip3 install meson | ||
|
GyuH13 marked this conversation as resolved.
GyuH13 marked this conversation as resolved.
|
||
|
|
||
| WORKDIR /root | ||
| RUN git clone -b v0.5.2 --depth 1 https://github.com/raspberrypi/libcamera.git && \ | ||
| cd libcamera && \ | ||
| meson setup build --buildtype=release -Dpipelines=rpi/vc4,rpi/pisp -Dipas=rpi/vc4,rpi/pisp -Dv4l2=true -Dgstreamer=enabled -Dtest=false -Dlc-compliance=disabled -Dcam=disabled -Dqcam=disabled -Ddocumentation=disabled -Dpycamera=enabled && \ | ||
| ninja -C build install && \ | ||
| ldconfig | ||
|
GyuH13 marked this conversation as resolved.
Comment on lines
+68
to
+72
|
||
|
|
||
| RUN echo "source /opt/ros/${ROS_DISTRO}/setup.bash" >> ~/.bashrc && \ | ||
| echo "source ${COLCON_WS}/install/setup.bash" >> ~/.bashrc && \ | ||
| echo "alias cb='colcon build --symlink-install --cmake-args -DCMAKE_BUILD_TYPE=Release'" >> ~/.bashrc && \ | ||
| echo "export ROS_DOMAIN_ID=30 # TURTLEBOT3" >> ~/.bashrc && \ | ||
| echo 'export LD_LIBRARY_PATH=/usr/local/lib/aarch64-linux-gnu:$LD_LIBRARY_PATH' >> ~/.bashrc && \ | ||
|
GyuH13 marked this conversation as resolved.
|
||
| echo "# export TURTLEBOT3_MODEL= # burger, waffle, waffle_pi" >> ~/.bashrc && \ | ||
| echo "# export LDS_MODEL= # LDS-01, LDS-02, LDS-03" >> ~/.bashrc | ||
|
|
||
|
|
||
| Original file line number | Diff line number | Diff line change | ||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -28,6 +28,27 @@ RUN apt-get update && \ | |||||||||||
| ros-${ROS_DISTRO}-hls-lfcd-lds-driver \ | ||||||||||||
| ros-${ROS_DISTRO}-ld08-driver \ | ||||||||||||
| ros-${ROS_DISTRO}-coin-d4-driver \ | ||||||||||||
| ros-${ROS_DISTRO}-camera-ros \ | ||||||||||||
| ros-${ROS_DISTRO}-urdf \ | ||||||||||||
| && rm -rf /var/lib/apt/lists/* | ||||||||||||
|
|
||||||||||||
| RUN apt-get update && \ | ||||||||||||
| apt-get install -y --no-install-recommends \ | ||||||||||||
| python3-pip \ | ||||||||||||
| python3-jinja2 \ | ||||||||||||
| ninja-build \ | ||||||||||||
| libgnutls28-dev \ | ||||||||||||
| openssl \ | ||||||||||||
| libtiff-dev \ | ||||||||||||
| pybind11-dev \ | ||||||||||||
| qtbase5-dev \ | ||||||||||||
| libqt5core5a \ | ||||||||||||
| libqt5widgets5 \ | ||||||||||||
| cmake \ | ||||||||||||
| python3-yaml \ | ||||||||||||
| python3-ply \ | ||||||||||||
| libglib2.0-dev \ | ||||||||||||
| libgstreamer-plugins-base1.0-dev \ | ||||||||||||
| && rm -rf /var/lib/apt/lists/* | ||||||||||||
|
GyuH13 marked this conversation as resolved.
|
||||||||||||
|
|
||||||||||||
| WORKDIR ${COLCON_WS} | ||||||||||||
|
|
@@ -40,10 +61,21 @@ RUN bash -c "source /opt/ros/${ROS_DISTRO}/setup.bash && \ | |||||||||||
| cd ${COLCON_WS} && \ | ||||||||||||
| colcon build --symlink-install --cmake-args -DCMAKE_BUILD_TYPE=Release" | ||||||||||||
|
|
||||||||||||
| RUN python3 -m pip config set global.break-system-packages true | ||||||||||||
| RUN pip3 install meson | ||||||||||||
|
Comment on lines
+64
to
+65
|
||||||||||||
| RUN python3 -m pip config set global.break-system-packages true | |
| RUN pip3 install meson | |
| # RUN python3 -m pip config set global.break-system-packages true | |
| RUN pip3 install --user meson | |
| ENV PATH="$PATH:/root/.local/bin" |
Uh oh!
There was an error while loading. Please reload this page.