-
Notifications
You must be signed in to change notification settings - Fork 9
84 lines (77 loc) · 2.1 KB
/
linter.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
name: Clang linter
on:
push:
branches:
- master
- dev
paths-ignore:
- 'docs/**'
- 'resources/*'
- 'ui/*'
- 'files/*'
- 'configuration/*'
pull_request:
branches:
- master
- dev
paths-ignore:
- 'docs/**'
- 'resources/*'
- 'ui/*'
- 'files/*'
- 'configuration/*'
jobs:
build:
runs-on: ${{ matrix.operating-system }}
strategy:
matrix:
include:
- operating-system: ubuntu-22.04
ros_distro: humble
distro: jammy
env:
ROS_CI_DESKTOP: ${{ matrix.distro }}
CI_SOURCE_PATH: $(pwd)
ROS_DISTRO: ${{ matrix.ros_distro }}
steps:
- name: Setup ROS
uses: ros-tooling/[email protected]
with:
required-ros-distributions: ${{ matrix.ros_distro }}
- name: Install deps
run: |
sudo apt install dpkg
sudo apt install -y qtbase5-dev qtdeclarative5-dev
sudo apt install -y libcppunit-dev libcurl4-openssl-dev
sudo apt-get install python3-rosdep
sudo apt install ros-cmake-modules
sudo apt install ros-$ROS_DISTRO-std-msgs ros-$ROS_DISTRO-pluginlib
sudo apt install g++-12
source /opt/ros/$ROS_DISTRO/setup.bash
- name: Setup Workspace
run: |
source /opt/ros/$ROS_DISTRO/setup.bash
export CXX=clang++
export CC=clang
cmake --version
cd $GITHUB_WORKSPACE
mkdir -p ros2_ws/src/ontologenius
cd ros2_ws
colcon build --symlink-install
- name: Checkout
uses: actions/checkout@v4
with:
path: ros2_ws/src/ontologenius
- name: Build
run: |
cd $GITHUB_WORKSPACE/ros2_ws
source install/setup.bash
export ROS_LOCALHOST_ONLY=
export CXX=clang++
export CC=clang
colcon build --symlink-install
- name: Lint
run: |
cd $GITHUB_WORKSPACE/ros2_ws/src/ontologenius
ls
python3 .github/run_clang_tidy.py . ../../build/