Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Github actions for colcon build (backport #430) #439

Merged
merged 6 commits into from
Feb 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
46 changes: 0 additions & 46 deletions .circleci/config.yml

This file was deleted.

49 changes: 49 additions & 0 deletions .github/workflows/colcon.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
name: Colcon Build Test
on:
push:
branches:
- 'rolling'
- 'iron'
- 'humble'
pull_request:
branches:
- '*'
jobs:
build-test:
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
config:
- {rosdistro: 'iron', container: 'ros:iron'}
container: ${{ matrix.config.container }}
steps:
- uses: actions/checkout@v4
with:
path: src/grid_map
- name: Pull in repos with vcs
run: |
apt-get update
vcs import --shallow --skip-existing --input grid_map/tools/ros2_dependencies.repos
shell: bash
working-directory: src
- 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 --skip-keys "slam_toolbox turtlebot3_gazebo gazebo_ros_pkgs"
shell: bash
- name: Colcon Build (Release)
run: |
source /opt/ros/${{matrix.config.rosdistro}}/setup.bash
colcon build --cmake-args -DCMAKE_BUILD_TYPE=Release --packages-up-to grid_map
shell: bash
- name: Test
run: |
source /opt/ros/${{matrix.config.rosdistro}}/setup.bash
source install/setup.bash
colcon test --return-code-on-test-failure --paths src/grid_map/* --event-handlers=console_cohesion+
colcon test-result --all --verbose
shell: bash