Skip to content

Commit

Permalink
build_and_test action for both ROS 1 and ROS 2 code
Browse files Browse the repository at this point in the history
  • Loading branch information
fcladera committed Mar 14, 2024
1 parent 2aa814e commit 9cbcd44
Showing 1 changed file with 33 additions and 3 deletions.
36 changes: 33 additions & 3 deletions .github/workflows/build_and_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,14 @@ name: build-and-test

on:
push:
branches: [master]
branches: [master, devel/humble, devel/humble_pranav]
pull_request:
branches: [master]
branches: [master, devel/humble]

jobs:
build:

ros1-build:
if: github.ref == 'refs/heads/master'
strategy:
matrix:
ros_distro: [melodic, noetic]
Expand Down Expand Up @@ -40,3 +42,31 @@ jobs:
catkin build -j4 --no-status -DCMAKE_BUILD_TYPE=Release
. ${RUNNER_WORKSPACE}/catkin_ws/devel/setup.sh
catkin test
ros2-build:
if: github.ref == 'refs/heads/devel/humble_pranav'
strategy:
matrix:
ros_distro: [humble]

runs-on: ubuntu-latest
container: osrf/ros:${{ matrix.ros_distro }}-desktop
steps:
- uses: actions/checkout@v2

- name: Install dependencies
run: |
apt-get update
apt-get install -qy python3-colcon-common-extensions
rosdep update
rosdep install --from-paths . --ignore-src -y -r --rosdistro ${{ matrix.ros_distro }}
- name: Build workspace and run tests
run: |
. /opt/ros/${{ matrix.ros_distro }}/setup.sh
mkdir -p ${RUNNER_WORKSPACE}/colcon_ws/src
cd ${RUNNER_WORKSPACE}/colcon_ws/src
ln -s ${GITHUB_WORKSPACE}
colcon build --merge-install --cmake-args -DCMAKE_BUILD_TYPE=Release
. ${RUNNER_WORKSPACE}/colcon_ws/install/setup.sh
colcon test

0 comments on commit 9cbcd44

Please sign in to comment.