File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -10,6 +10,9 @@ apt-get install -y --no-install-recommends \
1010 libavcodec-dev libavformat-dev libswscale-dev \
1111 python3 python3-pip python3-venv libraw1394-11 libmpfr6 \
1212 libusb-1.0-0
13+ # Clean up unused packages
14+ apt-get clean
15+ rm -rf /var/lib/apt/lists/*
1316
1417python3 -m pip install pyzmq cbor2 --break-system-packages
1518
Original file line number Diff line number Diff line change 11name : Debian Builder
2- on : [workflow_dispatch]
2+ on : [push, workflow_dispatch]
33
44jobs :
55 debian_builder :
Original file line number Diff line number Diff line change 11#! /bin/bash
2+ # Add SAS apt sources
23curl -s --compressed " https://smartarmstack.github.io/smart_arm_stack_ROS2/KEY.gpg" | gpg --dearmor | sudo tee /etc/apt/trusted.gpg.d/smartarmstack_lgpl.gpg > /dev/null
34sudo curl -s --compressed -o /etc/apt/sources.list.d/smartarmstack_lgpl.list " https://smartarmstack.github.io/smart_arm_stack_ROS2/smartarmstack_lgpl.list"
5+ # Update apt
46sudo apt update
5- sudo apt-get install ros-jazzy-sas-*
7+ # Install sas
8+ sudo apt-get install ros-jazzy-sas-*
9+ # Remove unused apt info
10+ apt-get clean
11+ rm -rf /var/lib/apt/lists/*
You can’t perform that action at this time.
0 commit comments