Skip to content

Commit

Permalink
chore(ansible): update to L4T-R35.4.1
Browse files Browse the repository at this point in the history
Signed-off-by: Amadeusz Szymko <amadeusz.szymko.2@tier4.jp>
  • Loading branch information
amadeuszsz committed Jun 19, 2024
1 parent 81e2763 commit 460cf78
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
2 changes: 1 addition & 1 deletion ansible/roles/ros2/defaults/main.yaml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
ros_root_dir: /opt/ros/humble
ros_pkg: ros_base
ros_package: ros_base
11 changes: 5 additions & 6 deletions ansible/roles/ros2/tasks/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,23 +32,23 @@
ros2_build_script: "{{ jetson_script_dir }}/ros2_build.sh"
- name: Download OpenCV deps script
ansible.builtin.get_url:
url: https://github.com/dusty-nv/jetson-containers/L4T-R35.3.1/scripts/opencv_install_deps.sh
url: https://github.com/dusty-nv/jetson-containers/L4T-R35.4.1/packages/opencv/opencv_builder/opencv_install_deps.sh
dest: "{{ opencv_install_deps_script }}"
- name: Make OpenCV deps script executable
ansible.builtin.file:
dest: "{{ opencv_install_deps_script }}"
mode: u+x
- name: Download OpenCV install script
ansible.builtin.get_url:
url: https://github.com/dusty-nv/jetson-containers/L4T-R35.3.1/scripts/opencv_install.sh
url: https://github.com/dusty-nv/jetson-containers/L4T-R35.4.1/packages/opencv/opencv_install.sh
dest: "{{ opencv_install_script }}"
- name: Make OpenCV install script executable
ansible.builtin.file:
dest: "{{ opencv_install_script }}"
mode: u+x
- name: Download ROS2 Humble install script

Check warning on line 49 in ansible/roles/ros2/tasks/main.yaml

View workflow job for this annotation

GitHub Actions / spell-check-differential

Unknown word (ROS2)
ansible.builtin.get_url:
url: https://github.com/dusty-nv/jetson-containers/L4T-R35.3.1/scripts/ros2_build.sh
url: https://github.com/dusty-nv/jetson-containers/L4T-R35.4.1/packages/ros/ros2_build.sh
dest: "{{ ros2_build_script }}"
- name: Make ROS2 Humble install script executable

Check warning on line 53 in ansible/roles/ros2/tasks/main.yaml

View workflow job for this annotation

GitHub Actions / spell-check-differential

Unknown word (ROS2)
ansible.builtin.file:
Expand Down Expand Up @@ -194,7 +194,6 @@
ansible.builtin.pip:
name:
- colcon-common-extensions
- catkin-pkg-modules
- argcomplete
- flake8-blind-except
- flake8-builtins
Expand Down Expand Up @@ -227,7 +226,7 @@
become: true
- name: Download ROS packages
ansible.builtin.shell:
cmd: "rosinstall_generator --deps --rosdistro {{ ros_distro }} {{ ros_pkg }} launch_xml launch_yaml launch_testing launch_testing_ament_cmake demo_nodes_cpp demo_nodes_py example_interfaces camera_calibration_parsers camera_info_manager cv_bridge v4l2_camera vision_opencv vision_msgs image_geometry image_pipeline image_transport compressed_image_transport compressed_depth_image_transport pcl_msgs perception_pcl logging_demo udp_msgs angles diagnostics tf_transformations mrt_cmake_modules gtest_vendor grid_map filters nav2_msgs tf2-eigen ament_cmake_clang_format > {{ ros_root_dir }}/ros2.{{ ros_distro }}.{{ ros_pkg }}.rosinstall"
cmd: "rosinstall_generator --deps --rosdistro {{ ros_distro }} {{ ros_package }} launch_xml launch_yaml launch_testing launch_testing_ament_cmake demo_nodes_cpp demo_nodes_py example_interfaces camera_calibration_parsers camera_info_manager cv_bridge v4l2_camera vision_opencv vision_msgs image_geometry image_pipeline image_transport compressed_image_transport compressed_depth_image_transport pcl_msgs perception_pcl logging_demo udp_msgs angles diagnostics tf_transformations mrt_cmake_modules gtest_vendor grid_map filters nav2_msgs tf2-eigen ament_cmake_clang_format > {{ ros_root_dir }}/ros2.{{ ros_distro }}.{{ ros_package }}.rosinstall"
become: true
- name: Import packages to source directory
ansible.builtin.shell:
Expand All @@ -252,7 +251,7 @@
block:
- name: Remove .rosinstall file
ansible.builtin.file:
path: ros2.{{ ros_distro }}.{{ ros_pkg }}.rosinstall
path: ros2.{{ ros_distro }}.{{ ros_package }}.rosinstall
state: absent
- name: Remove source directory
ansible.builtin.file:
Expand Down

0 comments on commit 460cf78

Please sign in to comment.