We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 64a8dfd commit bf67bd1Copy full SHA for bf67bd1
.github/workflows/ci.yaml
@@ -42,14 +42,19 @@ jobs:
42
restore-keys: |
43
ccache-cmake-${{ matrix.ros_distro }}-${{ matrix.preset }}-${{ github.sha }}
44
ccache-cmake-${{ matrix.ros_distro }}-${{ matrix.preset }}
45
- - name: Install dependencies
+ - name: Install system dependencies
46
run: |
47
sudo apt update
48
sudo apt install -y lld ccache
49
- name: Source ROS
50
51
. /opt/ros/${{ matrix.ros_distro }}/setup.sh
52
echo "$(env)" >> $GITHUB_ENV
53
+ - name: Install ROS dependencies
54
+ run: |
55
+ sudo apt update
56
+ rosdep update
57
+ rosdep install --from-paths src --ignore-src -r -y
58
- name: Install Clang
59
if: matrix.compiler.name == 'Clang'
60
run: sudo apt update && sudo apt install clang
0 commit comments