-
Notifications
You must be signed in to change notification settings - Fork 0
37 lines (33 loc) · 973 Bytes
/
main.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
name: Humble CI
on:
push:
branches:
- main
jobs:
humble_source:
runs-on: ubuntu-22.04
strategy:
matrix:
package-name:
- raptor_api_interfaces
- haption_raptor_api
- test_calibration
- test_admittance
- test_impedance
- haptic_control
steps:
# Step 1: Set up ROS Humble
- name: Setup ROS Humble
uses: ros-tooling/[email protected]
with:
required-ros-distributions: humble
# Step 2: Install additional dependencies
- name: Install Dependencies
run: sudo apt-get update && sudo apt-get install -y libpciaccess-dev libomp-dev libgomp1-dev
# Step 4: Build and process each ROS package
- name: Build and Process ROS Package
uses: ros-tooling/[email protected]
with:
package-name: ${{ matrix.package-name }}
target-ros2-distro: humble
skip-tests: true