-
Notifications
You must be signed in to change notification settings - Fork 5
40 lines (40 loc) · 1.08 KB
/
build_kilted.yml
File metadata and controls
40 lines (40 loc) · 1.08 KB
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
name: Kilted
on:
push:
branches:
- 'main'
pull_request:
branches:
- '*'
jobs:
build:
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
config:
- {rosdistro: 'kilted', container: 'ros:kilted'}
container: ${{ matrix.config.container }}
steps:
- uses: actions/checkout@v4
with:
path: src/roadmap-explorer
- name: Install Dependencies with Rosdep
run: |
apt update
rosdep update
source /opt/ros/${{matrix.config.rosdistro}}/setup.bash
rosdep install --from-paths src --ignore-src -y
shell: bash
- name: Colcon Build (Release)
run: |
source /opt/ros/${{matrix.config.rosdistro}}/setup.bash
colcon build --cmake-args -DCMAKE_BUILD_TYPE=Release
shell: bash
# - name: Test
# run: |
# source /opt/ros/${{matrix.config.rosdistro}}/setup.bash
# source install/setup.bash
# colcon test --paths src/grid_map/* --event-handlers=console_cohesion+
# colcon test-result --all --verbose
# shell: bash