File tree Expand file tree Collapse file tree
.github/actions/docker-build-and-push-cuda Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2222 - name : Install jq and vcstool
2323 run : |
2424 sudo apt-get -y update
25- sudo apt-get -y install jq python3-pip
26- pip install --no-cache-dir vcstool
25+ sudo apt-get -y install curl gnupg lsb-release
26+
27+ # Add the ROS 2 GPG key and repository
28+ sudo curl -sSL https://raw.githubusercontent.com/ros/rosdistro/master/ros.key -o /usr/share/keyrings/ros-archive-keyring.gpg
29+ echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/ros-archive-keyring.gpg] http://packages.ros.org/ros2/ubuntu $(. /etc/os-release && echo $UBUNTU_CODENAME) main" | \
30+ sudo tee /etc/apt/sources.list.d/ros2.list > /dev/null
31+
32+ sudo apt-get update
33+ sudo apt-get install -y jq python3-pip python3-vcstool
2734 shell : bash
2835
2936 - name : Run vcs import
You can’t perform that action at this time.
0 commit comments