Skip to content
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

fix: reflected url fix #66

Merged
merged 2 commits into from
Jan 9, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ansible/roles/cgroups/files/user-resources.conf
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
Type=simple
User=root
Group=root
ExecStartPost=/bin/bash -c "echo 400000 > /sys/fs/cgroup/cpu,cpuacct/user.slice/cpu.rt_runtime_us"
ExecStartPost=/bin/bash -c "echo 400000 > /sys/fs/cgroup/cpu,cpuacct/user.slice/cpu.rt_runtime_us"

Check warning on line 5 in ansible/roles/cgroups/files/user-resources.conf

View workflow job for this annotation

GitHub Actions / spell-check-differential

Unknown word (cpuacct)
4 changes: 2 additions & 2 deletions ansible/roles/ros2/tasks/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,11 +46,11 @@
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

Forbidden word (ROS2)
ansible.builtin.get_url:
url: https://raw.githubusercontent.com/dusty-nv/jetson-containers/L4T-R35.3.1/scripts/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

Forbidden word (ROS2)
ansible.builtin.file:
dest: "{{ ros2_build_script }}"
mode: u+x
Expand All @@ -63,8 +63,8 @@
- name: Install PCL deps
ansible.builtin.apt:
name:
- libflann-dev

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

View workflow job for this annotation

GitHub Actions / spell-check-differential

Unknown word (libflann)
- libvtk7-dev

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

View workflow job for this annotation

GitHub Actions / spell-check-differential

Unknown word (libvtk)
install_recommends: false
update_cache: true
become: true
Expand All @@ -80,7 +80,7 @@
state: directory
- name: Download and extract boost 1.74.0 source
ansible.builtin.unarchive:
src: https://boostorg.jfrog.io/artifactory/main/release/1.74.0/source/boost_1_74_0.tar.gz
src: https://archives.boost.io/release/1.74.0/source/boost_1_74_0.tar.gz
dest: "{{ boost_directory }}"
remote_src: yes
- name: Bootstrap Boost
Expand Down Expand Up @@ -177,7 +177,7 @@
path: "{{ ros_root_dir }}/install"
register: ros_install_dir_exist

- name: Build ROS2 Humble

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

View workflow job for this annotation

GitHub Actions / spell-check-differential

Forbidden word (ROS2)
block:
- name: Add the ROS deb repo to the apt sources list
block:
Expand Down Expand Up @@ -205,8 +205,8 @@
- build-essential
- cmake
- git
- libbullet-dev

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

View workflow job for this annotation

GitHub Actions / spell-check-differential

Unknown word (libbullet)
- libpython3-dev

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

View workflow job for this annotation

GitHub Actions / spell-check-differential

Unknown word (libpython)
- python3-flake8
- python3-pip
- python3-numpy
Expand All @@ -214,8 +214,8 @@
- python3-rosdep
- python3-setuptools
- python3-vcstool
- python3-rosinstall-generator

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

View workflow job for this annotation

GitHub Actions / spell-check-differential

Unknown word (rosinstall)
- libasio-dev

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

View workflow job for this annotation

GitHub Actions / spell-check-differential

Unknown word (libasio)
- libtinyxml2-dev
- libcunit1-dev
- libpugixml-dev
Expand Down Expand Up @@ -248,7 +248,7 @@
become: true
- name: Install EmPy with specific version
ansible.builtin.pip:
name:
name:
- empy==3.3.4
extra_args: "--no-cache-dir"
become: true
Expand Down
Loading