-
Notifications
You must be signed in to change notification settings - Fork 35
45 lines (42 loc) · 1.26 KB
/
ci.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
42
43
44
45
name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
CI:
runs-on: ubuntu-latest
steps:
- name: Prepare
run: |
mkdir -p ${{github.workspace}}/src
- uses: actions/checkout@v2
with:
path: src/iiwa_ros2
- name: Build
uses: addnab/docker-run-action@v3
with:
image: ros:humble
options: -v ${{github.workspace}}/:/ros/
run: |
cd /ros
apt update && apt upgrade
. /opt/ros/humble/setup.sh
vcs import < src/iiwa_ros2/iiwa_ros2.repos
rosdep install --ignore-src --from-paths . -y -r
colcon build --cmake-args -DCMAKE_BUILD_TYPE=Release
- name: Test
uses: addnab/docker-run-action@v3
with:
image: ros:humble
options: -v ${{github.workspace}}/:/ros/
run: |
cd /ros
apt update && apt upgrade
. /opt/ros/humble/setup.sh
vcs import < src/iiwa_ros2/iiwa_ros2.repos
rosdep install --ignore-src --from-paths . -y -r
colcon build --cmake-args -DCMAKE_BUILD_TYPE=Release
colcon test --packages-skip gazebo_ros2_control
colcon test-result