Add iron CI #168
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: ci | |
on: | |
pull_request: | |
branches: | |
- develop | |
jobs: | |
job1: | |
name: Build | |
runs-on: ubuntu-22.04 | |
container: ros:humble-ros-core | |
steps: | |
- name: Install Git | |
run: | | |
apt-get update | |
apt-get install -y git | |
shell: bash | |
- uses: actions/checkout@v2 | |
with: | |
submodules: true | |
- name: Copy repository | |
run: | | |
mkdir -p ~/ros2_ws/src/lidarslam_ros2 | |
cp -rf . ~/ros2_ws/src/lidarslam_ros2 | |
shell: bash | |
- name: Install dependencies | |
run: | | |
apt-get install -y python3-rosdep | |
rosdep init | |
rosdep update | |
cd ~/ros2_ws/src | |
rosdep install -r -y --from-paths . --ignore-src | |
shell: bash | |
- name: Build packages | |
run: | | |
source /opt/ros/humble/setup.bash | |
apt-get install -y python3-colcon-common-extensions | |
cd ~/ros2_ws | |
colcon build | |
source ~/ros2_ws/install/setup.bash | |
shell: bash | |
iron: | |
name: Build for Iron | |
runs-on: ubuntu-22.04 | |
container: ros:iron-ros-core | |
steps: | |
- name: Install Git | |
run: | | |
apt-get update | |
apt-get install -y git | |
shell: bash | |
- uses: actions/checkout@v2 | |
with: | |
submodules: true | |
- name: Copy repository | |
run: | | |
mkdir -p ~/ros2_ws/src/lidarslam_ros2 | |
cp -rf . ~/ros2_ws/src/lidarslam_ros2 | |
shell: bash | |
- name: Install dependencies | |
run: | | |
apt-get install -y python3-rosdep | |
rosdep init | |
rosdep update | |
cd ~/ros2_ws/src | |
rosdep install -r -y --from-paths . --ignore-src | |
shell: bash | |
- name: Build packages | |
run: | | |
source /opt/ros/iron/setup.bash | |
apt-get install -y python3-colcon-common-extensions | |
cd ~/ros2_ws | |
colcon build | |
source ~/ros2_ws/install/setup.bash | |
shell: bash |