-
Notifications
You must be signed in to change notification settings - Fork 0
47 lines (39 loc) · 1.03 KB
/
cmake-single-platform.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
name: Build and Test ROS Package
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build-and-test:
runs-on: ubuntu-latest
container:
image: osrf/ros:noetic-desktop-full
steps:
- name: Checkout Code
uses: actions/checkout@v3
- name: Setup ROS Environment and Install Dependencies
run: |
sudo apt update
sudo apt install -y python3-rosdep python3-pip
rosdep update
rosdep install --from-paths src --ignore-src -r -y
sudo apt-get install -y libyaml-cpp-dev
shell: bash
- name: Build ROS Package
run: |
mkdir -p catkin_ws/src
# Find and copy all items except the catkin_ws directory
find . -maxdepth 1 ! -name 'catkin_ws' -exec cp -R {} catkin_ws/src/ \;
cd catkin_ws
. /opt/ros/noetic/setup.bash
catkin_make
shell: bash
- name: Run Tests
run: |
. /opt/ros/noetic/setup.bash
cd catkin_ws
catkin_make run_tests && catkin_test_results
shell: bash