Skip to content

Commit 886aad2

Browse files
committed
fix: add build-essential and cmake installation to CI workflows
1 parent 1cb71b8 commit 886aad2

2 files changed

Lines changed: 5 additions & 1 deletion

File tree

.github/workflows/copilot-setup-steps.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
- name: install workspace dependencies
3535
run: |
3636
sudo apt-get update
37-
sudo apt-get install -y ros-humble-ros-base
37+
sudo apt-get install -y build-essential cmake ros-humble-ros-base
3838
source /opt/ros/humble/setup.bash
3939
rosdep update --rosdistro humble
4040
rosdep install --from-paths ${GITHUB_WORKSPACE}/src --ignore-src -r -y

.github/workflows/ros-ci.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,10 @@ jobs:
5353
path: src/livox_ros_driver2
5454
- name: setup ROS environment
5555
uses: ros-tooling/setup-ros@v0.7
56+
- name: install build dependencies
57+
run: |
58+
apt-get update
59+
apt-get install -y build-essential cmake
5660
- name: install Livox SDK2
5761
run: |
5862
REPO_DIR="/tmp/livox_sdk2_repo"

0 commit comments

Comments
 (0)