Skip to content
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
23 changes: 0 additions & 23 deletions .github/workflows/build-humble.yml

This file was deleted.

23 changes: 0 additions & 23 deletions .github/workflows/build-jazzy.yml

This file was deleted.

23 changes: 0 additions & 23 deletions .github/workflows/build-kilted.yml

This file was deleted.

23 changes: 0 additions & 23 deletions .github/workflows/build-lyrical.yml

This file was deleted.

23 changes: 0 additions & 23 deletions .github/workflows/build-rolling.yml

This file was deleted.

25 changes: 25 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: CI
on:
workflow_dispatch:
inputs:
ros_distro:
description: 'Distro to build'
type: choice
options: [all, jazzy, kilted, lyrical, rolling]
default: all
pull_request:
types: [opened, synchronize, reopened, ready_for_review]
push:
branches: [main]
schedule:
# Run every morning at 01:00 to detect flakiness and broken dependencies
- cron: '0 1 * * *'
timezone: "Europe/Zurich"

jobs:
ci:
uses: Duatic/ci-workflows/.github/workflows/ci_orchestrator.yml@v1
with:
ros_distro: ${{ inputs.ros_distro }}
badge_gist_id: fc9d126a4ab745f8a8d37f9b6b6c83a9
secrets: inherit
21 changes: 0 additions & 21 deletions .github/workflows/pre-commit.yml

This file was deleted.

72 changes: 0 additions & 72 deletions .github/workflows/reusable_ici.yml

This file was deleted.

5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,10 @@

A modern c++20 logging solution which can either log to a ROS2 backend or be used standalone

[![Humble](https://github.com/Duatic/duatic_message_logger/actions/workflows/build-humble.yml/badge.svg?branch=main)](https://github.com/Duatic/duatic_message_logger/actions/workflows/build-humble.yml) [![Jazzy](https://github.com/Duatic/duatic_message_logger/actions/workflows/build-jazzy.yml/badge.svg?branch=main)](https://github.com/Duatic/duatic_message_logger/actions/workflows/build-jazzy.yml) [![Kilted](https://github.com/Duatic/duatic_message_logger/actions/workflows/build-kilted.yml/badge.svg?branch=main)](https://github.com/Duatic/duatic_message_logger/actions/workflows/build-kilted.yml) [![Lyrical](https://github.com/Duatic/duatic_message_logger/actions/workflows/build-lyrical.yml/badge.svg?branch=main)](https://github.com/Duatic/duatic_message_logger/actions/workflows/build-lyrical.yml) [![Rolling](https://github.com/Duatic/duatic_message_logger/actions/workflows/build-rolling.yml/badge.svg?branch=main)](https://github.com/Duatic/duatic_message_logger/actions/workflows/build-rolling.yml)
[![Jazzy](https://img.shields.io/endpoint?url=https://gist.githubusercontent.com/mbloechli/fc9d126a4ab745f8a8d37f9b6b6c83a9/raw/duatic_message_logger-jazzy.json)](https://github.com/Duatic/duatic_message_logger/actions/workflows/ci.yml)
[![Kilted](https://img.shields.io/endpoint?url=https://gist.githubusercontent.com/mbloechli/fc9d126a4ab745f8a8d37f9b6b6c83a9/raw/duatic_message_logger-kilted.json)](https://github.com/Duatic/duatic_message_logger/actions/workflows/ci.yml)
[![Lyrical](https://img.shields.io/endpoint?url=https://gist.githubusercontent.com/mbloechli/fc9d126a4ab745f8a8d37f9b6b6c83a9/raw/duatic_message_logger-lyrical.json)](https://github.com/Duatic/duatic_message_logger/actions/workflows/ci.yml)
[![Rolling](https://img.shields.io/endpoint?url=https://gist.githubusercontent.com/mbloechli/fc9d126a4ab745f8a8d37f9b6b6c83a9/raw/duatic_message_logger-rolling.json)](https://github.com/Duatic/duatic_message_logger/actions/workflows/ci.yml)


It provides a compat header with the old `MELO` style logging macros.
Expand Down
Loading