-
Notifications
You must be signed in to change notification settings - Fork 7
41 lines (40 loc) · 1.17 KB
/
main.yaml
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
38
39
40
41
name: main
on:
pull_request:
branches:
- main
push:
branches:
- main
schedule:
- cron: '0 0 * * 6'
jobs:
build-and-test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-22.04]
fail-fast: false
steps:
- name: Setup ROS 2
uses: ros-tooling/[email protected]
with:
required-ros-distributions: humble
- name: Install nlohmann
run: sudo apt -y install nlohmann-json3-dev
- name: Install ceres dependencies
run: sudo apt -y install libunwind-dev libgoogle-glog-dev libatlas-base-dev libsuitesparse-dev libgflags-dev
- name: Install ceres
run: sudo apt -y install libceres-dev
- name: build and test
uses: ros-tooling/[email protected]
with:
package-name: arm bt_test hri motion perception robocup_bringup cs4home_core
target-ros2-distro: humble
colcon-defaults: |
{
"test": {
"parallel-workers" : 1
}
}
vcs-repo-file-url: https://raw.githubusercontent.com/CoreSenseEU/CoreSense4Home/main/robocup_bringup/thirdparty.repos