Skip to content

Commit

Permalink
Rolling CI & rename humble (#13)
Browse files Browse the repository at this point in the history
  • Loading branch information
roncapat authored Nov 24, 2023
1 parent 7109f80 commit 6019142
Show file tree
Hide file tree
Showing 3 changed files with 44 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml → .github/workflows/humble.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
pull_request:
push:
branches:
- main
- humble

jobs:
Build:
Expand All @@ -25,7 +25,7 @@ jobs:
- name: Run Tests
uses: ros-tooling/action-ros-ci@0.3.5
with:
ref: main
ref: humble
target-ros2-distro: humble
import-token: ${{ secrets.GITHUB_TOKEN }}

Expand Down
40 changes: 40 additions & 0 deletions .github/workflows/rolling.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
name: Ubuntu 22.04 Rolling Build

on:
pull_request:
push:
branches:
- iron

jobs:
Build:
runs-on: self-hosted
container:
image: osrf/ros:rolling-desktop-full-jammy

steps:
- name: Update
run: apt update

- name: Install PIP
run: apt install -y python3-pip lcov

- name: Install colcon tools
run: python3 -m pip install colcon-lcov-result colcon-coveragepy-result

- name: Checkout
uses: actions/checkout@v2

- name: Run Tests
uses: ros-tooling/action-ros-ci@0.3.5
with:
target-ros2-distro: iron
import-token: ${{ secrets.GITHUB_TOKEN }}
vcs-repo-file-url: "${{ github.workspace }}/iron.repos"

- name: Upload Logs
uses: actions/upload-artifact@v1
with:
name: colcon-logs
path: ros_ws/log
if: always()
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
# ROS2 Native Adapters

[![Ubuntu 22.04 Humble Build](https://github.com/roncapat/ros2_native_adapters/actions/workflows/main.yml/badge.svg)](https://github.com/roncapat/ros2_native_adapters/actions/workflows/main.yml)
[![Ubuntu 22.04 Humble Build](https://github.com/roncapat/ros2_native_adapters/actions/workflows/humble.yml/badge.svg)](https://github.com/roncapat/ros2_native_adapters/actions/workflows/humble.yml)
[![Ubuntu 22.04 Iron Build](https://github.com/roncapat/ros2_native_adapters/actions/workflows/iron.yml/badge.svg)](https://github.com/roncapat/ros2_native_adapters/actions/workflows/iron.yml)
[![Ubuntu 22.04 Rolling Build](https://github.com/roncapat/ros2_native_adapters/actions/workflows/rolling.yml/badge.svg?branch=iron)](https://github.com/roncapat/ros2_native_adapters/actions/workflows/rolling.yml)

This package provides the following ROS2 type adaptations:

Expand Down

0 comments on commit 6019142

Please sign in to comment.